﻿:root {
  --primary: #1b4332;
  --primary-dark: #0f291e;
  --primary-light: #2d6a4f;
  --accent: #52b788;
  --accent-soft: #74c69d;
  --accent-gold: #c59b27;
  --bg-page: #f8faf9;
  --bg-surface: #ffffff;
  --bg-alt: #f0f4f2;
  --text-main: #1c2826;
  --text-muted: #52605b;
  --text-light: #ffffff;
  --border-color: #d8e2dc;
  --font-sans: 'Noto Sans JP', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 6px 18px rgba(27, 67, 50, 0.08);
  --shadow-lg: 0 12px 32px rgba(27, 67, 50, 0.12);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --transition: all 0.25s ease-in-out;
}

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

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a:hover {
  color: var(--primary);
  text-decoration: underline;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

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

.brand-logo {
  display: flex;
  align-items: center;
}

.brand-logo img {
  height: 42px;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
}

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

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-main);
  padding: 8px 0;
  position: relative;
}

.nav-link:hover {
  color: var(--primary);
  text-decoration: none;
}

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

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

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

.nav-toggle .bar {
  width: 26px;
  height: 2.5px;
  background-color: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  font-size: 0.95rem;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-light);
  box-shadow: var(--shadow-sm);
}

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

.btn-outline {
  border-color: var(--primary);
  color: var(--primary);
  background-color: transparent;
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--text-light);
  text-decoration: none;
}

.btn-header {
  padding: 8px 18px;
  background-color: var(--primary);
  color: var(--text-light);
  font-size: 0.9rem;
}

.btn-header:hover {
  background-color: var(--primary-light);
  color: var(--text-light);
  text-decoration: none;
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.05rem;
}

/* Sections */
.section {
  padding: 96px 0;
}

.section.bg-alt {
  background-color: var(--bg-alt);
}

.section-header {
  max-width: 800px;
  margin: 0 auto 56px auto;
}

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

.sub-heading {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--primary);
  text-transform: uppercase;
  background-color: rgba(45, 106, 79, 0.1);
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* Hero */
.hero-section {
  padding: 80px 0 100px 0;
  background: linear-gradient(135deg, #f7faf8 0%, #e8f0ec 100%);
  border-bottom: 1px solid var(--border-color);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  background: #ffffff;
  padding: 6px 14px;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(45, 106, 79, 0.15);
  margin-bottom: 20px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(82, 183, 136, 0.7);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(82, 183, 136, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(82, 183, 136, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(82, 183, 136, 0); }
}

.hero-title {
  font-size: 2.75rem;
  font-weight: 900;
  line-height: 1.25;
  color: var(--primary-dark);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-title .highlight {
  color: var(--primary-light);
  border-bottom: 4px solid var(--accent);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.trust-strip {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-dark);
}

.trust-icon {
  color: var(--accent);
  flex-shrink: 0;
}

.hero-img-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background-color: #ffffff;
}

.hero-img-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.floating-stat-box {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--primary);
}

.stat-number {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.benefit-card {
  background: var(--bg-surface);
  padding: 36px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

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

.benefit-icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: rgba(45, 106, 79, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.benefit-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 12px;
  line-height: 1.4;
}

.benefit-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-img-wrap {
  height: 220px;
  overflow: hidden;
  background-color: #e9ecef;
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.service-placeholder-graphic {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #d8f3dc, #b7e4c7);
}

.service-body {
  padding: 32px;
  flex-grow: 1;
}

.service-category {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}

.service-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 14px;
}

.service-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* Process Steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step-card {
  background: var(--bg-surface);
  padding: 32px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  position: relative;
}

.step-badge {
  display: inline-block;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  background-color: var(--primary);
  color: #ffffff;
  font-weight: 800;
  border-radius: 50%;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.step-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.step-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: var(--bg-surface);
  padding: 36px 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-rating {
  color: var(--accent-gold);
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.testimonial-quote {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-main);
  margin-bottom: 24px;
  font-style: normal;
}

.client-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
}

.client-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.client-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.client-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* FAQ */
.faq-list {
  max-width: 850px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border-color);
  background: var(--bg-surface);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: none;
  border: none;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question:hover {
  background-color: rgba(45, 106, 79, 0.03);
}

.faq-icon {
  font-size: 1.5rem;
  line-height: 1;
  color: var(--primary-light);
  transition: transform 0.25s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 24px 24px 24px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  border-top: 1px solid #f0f0f0;
  padding-top: 16px;
}

.faq-item.active .faq-answer {
  display: block;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.about-lead {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.about-body {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 24px;
}

.about-company-box {
  background: var(--bg-surface);
  padding: 24px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  font-size: 0.9rem;
}

.company-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}

.company-row:last-child {
  border-bottom: none;
}

.c-label {
  font-weight: 700;
  color: var(--primary);
}

.c-val {
  color: var(--text-main);
  word-break: break-word;
}

.about-img-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* Lead Form */
.section-contact {
  background: linear-gradient(135deg, #1b4332 0%, #0f291e 100%);
  color: var(--text-light);
}

.section-contact .sub-heading {
  background: rgba(255, 255, 255, 0.15);
  color: #95d5b2;
}

.section-contact .section-title {
  color: #ffffff;
}

.section-contact .section-desc {
  color: #d8e2dc;
}

.form-container {
  max-width: 780px;
}

.form-card {
  background: #ffffff;
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  color: var(--text-main);
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-row-2 > .form-group {
  flex: 1;
}

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

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.required {
  color: #e63946;
}

.form-input, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 0.95rem;
  font-family: inherit;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  background-color: #fafbfc;
}

.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.15);
}

.error-msg {
  display: none;
  font-size: 0.8rem;
  color: #e63946;
  margin-top: 6px;
}

.has-error .form-input, .has-error .form-textarea {
  border-color: #e63946;
  background-color: #fff8f8;
}

.has-error .error-msg {
  display: block;
}

.consent-group {
  margin: 24px 0;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.checkbox-label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border-color);
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 2px;
  display: inline-block;
  position: relative;
  transition: var(--transition);
}

.checkbox-label input:checked ~ .checkbox-custom {
  background-color: var(--primary);
  border-color: var(--primary);
}

.checkbox-label input:checked ~ .checkbox-custom::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.btn-submit {
  width: 100%;
  padding: 16px;
  font-size: 1.1rem;
}

.form-result {
  text-align: center;
  padding: 40px 20px;
}

.result-icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  margin: 0 auto 16px auto;
  font-size: 2rem;
  font-weight: bold;
}

.success-message .result-icon {
  background-color: #d8f3dc;
  color: var(--primary);
}

.error-message .result-icon {
  background-color: #ffe3e3;
  color: #e63946;
}

.result-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.result-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.form-security-note {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  font-size: 0.82rem;
  color: #718096;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid #f0f0f0;
}

/* Footer */
.site-footer {
  background-color: #0d1e17;
  color: #cbd5e1;
  padding: 72px 0 32px 0;
  font-size: 0.9rem;
}

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

.footer-logo img {
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.8;
  color: #94a3b8;
}

.footer-heading {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background-color: var(--accent);
}

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

.footer-info-list li {
  margin-bottom: 12px;
  line-height: 1.6;
  font-size: 0.86rem;
}

.footer-info-list strong {
  color: #e2e8f0;
}

.footer-info-list a {
  color: var(--accent-soft);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
}

.footer-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
}

.copyright {
  font-size: 0.85rem;
  color: #64748b;
}

.back-to-top {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #cbd5e1;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.82rem;
  transition: var(--transition);
}

.back-to-top:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 41, 30, 0.98);
  color: #ffffff;
  padding: 20px 24px;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  border-top: 1px solid var(--accent);
}

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner-text {
  font-size: 0.88rem;
  line-height: 1.6;
  flex: 1;
  min-width: 300px;
}

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

.cookie-banner-actions {
  display: flex;
  gap: 12px;
}

.btn-cookie-accept {
  background-color: var(--accent);
  color: #0f291e;
  border: none;
  padding: 10px 20px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.btn-cookie-accept:hover {
  background-color: #74c69d;
}

.btn-cookie-decline {
  background: transparent;
  color: #cbd5e1;
  border: 1px solid #cbd5e1;
  padding: 10px 18px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.btn-cookie-decline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

/* Legal Pages Styling */
.legal-page-header {
  padding: 60px 0 40px 0;
  background: linear-gradient(135deg, #1b4332 0%, #0f291e 100%);
  color: #ffffff;
  text-align: center;
}

.legal-page-header h1 {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.legal-meta {
  font-size: 0.9rem;
  color: #95d5b2;
}

.legal-body {
  padding: 64px 0;
  background: #ffffff;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  font-size: 0.98rem;
  line-height: 1.9;
  color: #334155;
}

.legal-content h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin: 40px 0 16px 0;
  padding-bottom: 8px;
  border-bottom: 2px solid #e2e8f0;
}

.legal-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin: 24px 0 12px 0;
}

.legal-content p {
  margin-bottom: 18px;
}

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

.legal-content li {
  margin-bottom: 8px;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.92rem;
}

.legal-table th, .legal-table td {
  padding: 12px 16px;
  border: 1px solid #e2e8f0;
  text-align: left;
}

.legal-table th {
  background-color: #f1f5f9;
  font-weight: 700;
  color: var(--primary-dark);
}

/* Responsive */
@media (max-width: 992px) {
  .hero-grid, .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .benefits-grid, .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
  .site-nav {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
    padding: 24px;
    display: none;
    box-shadow: var(--shadow-md);
  }
  .site-nav.open {
    display: block;
  }
  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .btn-header {
    width: 100%;
    text-align: center;
  }
  .benefits-grid, .services-grid, .testimonials-grid, .process-steps {
    grid-template-columns: 1fr;
  }
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  .form-card {
    padding: 28px 20px;
  }
  .cookie-banner-content {
    flex-direction: column;
    align-items: flex-start;
  }
  .cookie-banner-actions {
    width: 100%;
  }
  .btn-cookie-accept, .btn-cookie-decline {
    flex: 1;
    text-align: center;
  }
}
