:root {
  --neutral-50: #fafafa;
  --neutral-100: #f5f5f5;
  --neutral-200: #e5e5e5;
  --neutral-300: #d4d4d4;
  --neutral-400: #a3a3a3;
  --neutral-500: #737373;
  --neutral-600: #525252;
  --neutral-700: #404040;
  --neutral-800: #262626;
  --neutral-900: #171717;
  
  --accent: #0066FF;
  --accent-dark: #0052CC;
  --accent-light: #3385FF;
  
  --text-primary: #262626;
  --text-secondary: #525252;
  --text-muted: #737373;
  
  --bg-primary: #ffffff;
  --bg-secondary: #fafafa;
  --bg-tertiary: #f5f5f5;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.03), 0 1px 3px 0 rgba(0, 0, 0, 0.02);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.06), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
  
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dark-mode {
  --neutral-50: #171717;
  --neutral-100: #262626;
  --neutral-200: #404040;
  --neutral-300: #525252;
  --neutral-400: #737373;
  --neutral-500: #a3a3a3;
  --neutral-600: #d4d4d4;
  --neutral-700: #e5e5e5;
  --neutral-800: #f5f5f5;
  --neutral-900: #fafafa;
  
  --accent: #3385FF;
  --accent-dark: #0066FF;
  --accent-light: #66A3FF;
  
  --text-primary: #f5f5f5;
  --text-secondary: #d4d4d4;
  --text-muted: #a3a3a3;
  
  --bg-primary: #171717;
  --bg-secondary: #262626;
  --bg-tertiary: #404040;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3), 0 1px 3px 0 rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -2px rgba(0, 0, 0, 0.3);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.6), 0 10px 10px -5px rgba(0, 0, 0, 0.4);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Instrument Sans', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--bg-primary);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--neutral-200);
  z-index: 1000;
  transition: var(--transition);
}

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

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 20px;
  transition: var(--transition);
}

.logo:hover {
  color: var(--accent);
}

.logo img {
  width: 36px;
  height: 36px;
}

nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 15px;
  transition: var(--transition);
  position: relative;
}

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

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

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

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--bg-tertiary);
  border-radius: var(--radius-sm);
}

.lang-btn {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 14px;
  transition: var(--transition);
}

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

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

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

.dark-mode-toggle {
  background: var(--bg-tertiary);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition);
}

.dark-mode-toggle:hover {
  background: var(--neutral-200);
  color: var(--accent);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--text-primary);
  cursor: pointer;
}

.hero {
  padding: 140px 0 80px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.hero-content .accent-text {
  color: var(--accent);
}

.hero-content p {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 540px;
}

.cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

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

.btn-primary:hover {
  background: var(--accent-dark);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--bg-tertiary);
  color: var(--text-primary);
  border: 1px solid var(--neutral-200);
}

.btn-secondary:hover {
  background: var(--neutral-200);
  border-color: var(--neutral-300);
}

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

.hero-image {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-image-main {
  width: 65%;
  height: 70%;
  right: 0;
  top: 10%;
  transform: rotate(2deg);
  z-index: 2;
}

.hero-image-secondary {
  width: 50%;
  height: 55%;
  left: 0;
  bottom: 5%;
  transform: rotate(-3deg);
  z-index: 1;
}

section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  display: inline-block;
  padding: 6px 16px;
  background: var(--bg-tertiary);
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.section-header h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.feature-card {
  padding: 32px;
  background: var(--bg-secondary);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

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

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--accent);
  color: white;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-md);
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.7;
}

.workshop-details {
  background: var(--bg-secondary);
}

.details-grid {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 64px;
  align-items: start;
}

.details-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.details-list {
  list-style: none;
  margin-bottom: 32px;
}

.details-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--neutral-200);
  color: var(--text-secondary);
  display: flex;
  align-items: start;
  gap: 12px;
}

.details-list li:last-child {
  border-bottom: none;
}

.details-list i {
  color: var(--accent);
  margin-top: 4px;
  flex-shrink: 0;
}

.details-sidebar {
  position: sticky;
  top: 120px;
  background: var(--bg-primary);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--neutral-200);
  box-shadow: var(--shadow-md);
}

.details-sidebar h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.info-item {
  display: flex;
  align-items: start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--neutral-200);
}

.info-item:last-child {
  border-bottom: none;
}

.info-item i {
  color: var(--accent);
  margin-top: 2px;
  flex-shrink: 0;
}

.info-item-content {
  flex: 1;
}

.info-item-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-item-value {
  color: var(--text-primary);
  font-weight: 500;
}

.resources-section {
  background: var(--bg-primary);
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.resource-card {
  background: var(--bg-secondary);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
  cursor: pointer;
}

.resource-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.resource-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: white;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}

.resource-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.resource-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 15px;
  margin-bottom: 16px;
}

.resource-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  transition: var(--transition);
}

.resource-link:hover {
  gap: 10px;
}

.map-section {
  background: var(--bg-secondary);
}

.map-content {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 48px;
  align-items: center;
}

.map-text h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.map-text p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.location-list {
  list-style: none;
}

.location-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  color: var(--text-secondary);
}

.location-list i {
  color: var(--accent);
}

.map-visual {
  background: var(--bg-primary);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.map-visual i {
  font-size: 80px;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 20px;
}

.map-visual p {
  color: var(--text-muted);
  font-size: 15px;
}

.cta-section {
  background: linear-gradient(135deg, var(--neutral-900), var(--neutral-800));
  color: white;
  border-radius: var(--radius-xl);
  padding: 80px 48px;
  text-align: center;
  margin: 0 24px;
}

.cta-section h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.cta-section p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn-primary {
  background: var(--accent);
}

.cta-section .btn-primary:hover {
  background: var(--accent-light);
}

footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--neutral-200);
  padding: 64px 0 32px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

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

.footer-contact li {
  display: flex;
  align-items: start;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--text-secondary);
  font-size: 15px;
}

.footer-contact i {
  color: var(--accent);
  margin-top: 2px;
}

.footer-links h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
}

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

.footer-links a {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 15px;
  transition: var(--transition);
}

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

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--neutral-200);
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
}

.contact-page {
  padding: 140px 0 80px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info h1 {
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-details {
  list-style: none;
}

.contact-details li {
  display: flex;
  align-items: start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--neutral-200);
}

.contact-details li:last-child {
  border-bottom: none;
}

.contact-details i {
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: white;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-details-content h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.contact-details-content p {
  color: var(--text-secondary);
  margin: 0;
  font-size: 15px;
}

.contact-form-wrapper {
  background: var(--bg-secondary);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--neutral-200);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 8px;
  font-size: 15px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--neutral-300);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 15px;
  color: var(--text-primary);
  background: var(--bg-primary);
  transition: var(--transition);
}

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

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

.iti, #phone {
  width: 100%;
}

.privacy-check {
  display: flex;
  align-items: start;
  gap: 10px;
  margin-bottom: 24px;
}

.privacy-check input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.privacy-check label {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.privacy-check a {
  color: var(--accent);
  text-decoration: none;
}

.privacy-check a:hover {
  text-decoration: underline;
}

.form-group .btn-primary {
  width: 100%;
  justify-content: center;
}

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

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

.legal-page {
  padding: 140px 0 80px;
}

.legal-content {
  max-width: 860px;
  margin: 0 auto;
}

.legal-content h1 {
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.legal-date {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 40px;
}

.legal-content h2 {
  font-size: 28px;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 48px;
  margin-bottom: 20px;
}

.legal-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-content p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.legal-content ul {
  margin-bottom: 20px;
  padding-left: 24px;
}

.legal-content li {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 10px;
}

.thanks-page {
  padding: 140px 0 80px;
  text-align: center;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.thanks-content {
  max-width: 640px;
  margin: 0 auto;
}

.thanks-icon {
  width: 80px;
  height: 80px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 32px;
  box-shadow: var(--shadow-lg);
}

.thanks-content h1 {
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.thanks-content p {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-primary);
  border-top: 1px solid var(--neutral-200);
  box-shadow: var(--shadow-xl);
  padding: 24px;
  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: 32px;
}

.cookie-text {
  flex: 1;
}

.cookie-text p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 8px;
}

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

.cookie-text a:hover {
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-buttons .btn {
  padding: 10px 20px;
  font-size: 14px;
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}

.community-card {
  background: var(--bg-secondary);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.community-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.community-card-image {
  height: 240px;
  overflow: hidden;
}

.community-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.community-card-content {
  padding: 28px;
}

.community-card-content h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.community-card-content p {
  color: var(--text-secondary);
  line-height: 1.7;
}

.professionals-intro {
  max-width: 860px;
  margin: 0 auto 64px;
  text-align: center;
}

.professionals-intro p {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.service-card {
  background: var(--bg-secondary);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-number {
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: white;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-secondary);
  line-height: 1.7;
}

.methodology-section {
  background: var(--bg-secondary);
  padding: 80px 0;
}

.methodology-steps {
  max-width: 960px;
  margin: 0 auto;
}

.method-step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 32px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--neutral-200);
}

.method-step:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.method-step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: white;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
  box-shadow: var(--shadow-md);
}

.method-step-content h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.method-step-content p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 16px;
}

@media (max-width: 1024px) {
  .hero-grid,
  .details-grid,
  .map-content,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .hero-images {
    height: 400px;
  }
  
  .details-sidebar {
    position: static;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
  
  .community-grid {
    grid-template-columns: 1fr;
  }
  
  .method-step {
    grid-template-columns: 80px 1fr;
    gap: 24px;
  }
  
  .method-step-number {
    width: 64px;
    height: 64px;
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .header-content {
    padding: 16px 20px;
  }
  
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-primary);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 24px 24px;
    box-shadow: var(--shadow-xl);
    transition: right 0.3s ease;
    gap: 0;
  }
  
  nav.active {
    right: 0;
  }
  
  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }
  
  .nav-links li {
    width: 100%;
  }
  
  .nav-links a {
    display: block;
    padding: 16px 0;
    width: 100%;
    border-bottom: 1px solid var(--neutral-200);
  }
  
  .nav-actions {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin-top: 24px;
    gap: 16px;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .hero {
    padding: 100px 0 60px;
  }
  
  .hero-images {
    height: 320px;
  }
  
  .hero-image-main {
    width: 70%;
    height: 65%;
  }
  
  .hero-image-secondary {
    width: 55%;
    height: 50%;
  }
  
  section {
    padding: 60px 0;
  }
  
  .section-header {
    margin-bottom: 48px;
  }
  
  .cta-section {
    padding: 60px 32px;
    margin: 0 16px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .contact-form-wrapper {
    padding: 28px;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-buttons .btn {
    width: 100%;
    justify-content: center;
  }
  
  .method-step {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .method-step-number {
    width: 56px;
    height: 56px;
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .container,
  .container-narrow {
    padding: 0 16px;
  }
  
  .cta-group {
    flex-direction: column;
  }
  
  .cta-group .btn {
    width: 100%;
    justify-content: center;
  }
  
  .features-grid,
  .resources-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }
}