@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Noto+Sans+JP:wght@300;400;500;700&display=swap');

:root {
  --color-white: #FFFFFF;
  --color-off-white: #F8F9FA;
  --color-warm-gray: #F0F1F3;
  --color-muted-azure: #4A90A4;
  --color-soft-teal: #7CB8B0;
  --color-charcoal: #2D3436;
  --color-slate: #636E72;
  --color-silver: #CED4DA;
  --color-platinum: #E9ECEF;
  
  --font-primary: 'Noto Sans JP', sans-serif;
  --font-mono: 'DM Mono', monospace;
  
  --shadow-card: 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.12);
  
  --transition-base: 0.3s ease;
  --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-weight: 400;
  color: var(--color-charcoal);
  background-color: var(--color-white);
  line-height: 1.7;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

strong, p, b {
  color: inherit;
}

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

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

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

.section {
  padding: 100px 0;
}

h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

h3 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
}

.text-slate {
  color: var(--color-slate);
}

.text-azure {
  color: var(--color-muted-azure);
}

.bg-off-white {
  background-color: var(--color-off-white);
}

.bg-warm-gray {
  background-color: var(--color-warm-gray);
}

.bg-azure {
  background: linear-gradient(135deg, var(--color-muted-azure), var(--color-soft-teal));
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  z-index: 1000;
  transition: height var(--transition-base);
}

.header.scrolled {
  height: 60px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

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

.logo-section {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-muted-azure);
  white-space: nowrap;
}

.logo-sub {
  font-size: 12px;
  color: var(--color-slate);
  font-weight: 400;
  display: none;
}

@media (min-width: 768px) {
  .logo-sub {
    display: block;
  }
}

.nav-menu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 32px;
}

@media (min-width: 1024px) {
  .nav-menu {
    display: flex;
  }
}

.nav-menu a {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-charcoal);
  position: relative;
  padding: 8px 0;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-muted-azure);
  transition: width var(--transition-base);
}

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

.nav-menu a:hover {
  color: var(--color-muted-azure);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-muted-azure);
  color: var(--color-white);
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  transition: all var(--transition-base);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.cta-button:hover {
  background: #3d7a8c;
  transform: translateY(-2px);
}

.cta-button:active {
  transform: scale(0.98);
}

.cta-button svg {
  transition: transform var(--transition-base);
}

.cta-button:hover svg {
  transform: translateX(4px);
}

.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-charcoal);
  transition: all var(--transition-base);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  transform: translateY(-100%);
  transition: transform var(--transition-smooth);
  z-index: 1001;
}

.mobile-menu.active {
  transform: translateY(0);
}

.mobile-menu a {
  font-size: 24px;
  font-weight: 500;
  color: var(--color-charcoal);
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 32px;
  color: var(--color-charcoal);
}

.hero {
  min-height: 100vh;
  padding-top: 72px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-off-white) 0%, var(--color-warm-gray) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 100px,
    rgba(74, 144, 164, 0.03) 100px,
    rgba(74, 144, 164, 0.03) 101px
  );
  pointer-events: none;
}

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

@media (min-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
  }
}

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

.hero-title {
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease forwards;
}

.hero-title span {
  color: var(--color-muted-azure);
}

.hero-description {
  font-size: 18px;
  color: var(--color-slate);
  margin-bottom: 32px;
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  animation: fadeInUp 0.8s ease 0.4s forwards;
  opacity: 0;
}

.hero-visual {
  display: none;
  position: relative;
}

@media (min-width: 992px) {
  .hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.hero-illustration {
  width: 100%;
  max-width: 500px;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

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

.hero-features {
  display: flex;
  gap: 24px;
  margin-top: 48px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s forwards;
  opacity: 0;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--color-slate);
}

.hero-feature-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  border-radius: 8px;
  color: var(--color-muted-azure);
}

.page-hero {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, var(--color-off-white) 0%, var(--color-warm-gray) 100%);
  text-align: center;
}

.breadcrumbs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 14px;
  color: var(--color-slate);
}

.breadcrumbs a {
  color: var(--color-slate);
}

.breadcrumbs a:hover {
  color: var(--color-muted-azure);
}

.breadcrumbs span {
  color: var(--color-charcoal);
}

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

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  color: var(--color-slate);
  max-width: 600px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-muted-azure);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: var(--color-white);
  border-radius: 12px;
  padding: 32px;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
  border: 1px solid var(--color-platinum);
}

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

.service-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(74, 144, 164, 0.1), rgba(124, 184, 176, 0.1));
  border-radius: 12px;
  margin-bottom: 20px;
  color: var(--color-muted-azure);
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.service-card p {
  color: var(--color-slate);
  font-size: 15px;
  margin-bottom: 16px;
}

.service-price {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--color-silver);
  margin-bottom: 16px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-muted-azure);
  font-size: 14px;
  font-weight: 500;
}

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

.about-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 992px) {
  .about-section {
    grid-template-columns: 1fr 1fr;
  }
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  filter: brightness(0.95);
}

.about-content h2 {
  margin-bottom: 24px;
}

.about-content h2::before {
  content: '';
  display: block;
  width: 4px;
  height: 40px;
  background: var(--color-muted-azure);
  margin-bottom: 16px;
}

.about-content p {
  color: var(--color-slate);
  margin-bottom: 16px;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--color-platinum);
}

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

.stat-number {
  font-family: var(--font-mono);
  font-size: 40px;
  font-weight: 500;
  color: var(--color-muted-azure);
  display: block;
}

.stat-label {
  font-size: 14px;
  color: var(--color-slate);
}

.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

@media (min-width: 768px) {
  .process-timeline {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  flex: 1;
}

@media (min-width: 768px) {
  .process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 32px;
    left: calc(50% + 40px);
    width: calc(100% - 80px);
    height: 2px;
    background: var(--color-silver);
  }
}

.process-number {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  border: 2px solid var(--color-muted-azure);
  border-radius: 50%;
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 500;
  color: var(--color-muted-azure);
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.process-step:nth-child(1) .process-number { background: var(--color-muted-azure); color: var(--color-white); }
.process-step:nth-child(2) .process-number { background: var(--color-soft-teal); border-color: var(--color-soft-teal); color: var(--color-white); }
.process-step:nth-child(3) .process-number { background: var(--color-muted-azure); color: var(--color-white); }
.process-step:nth-child(4) .process-number { background: var(--color-soft-teal); border-color: var(--color-soft-teal); color: var(--color-white); }
.process-step:nth-child(5) .process-number { background: var(--color-muted-azure); color: var(--color-white); }

.process-title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--color-charcoal);
}

.process-desc {
  font-size: 14px;
  color: var(--color-slate);
  max-width: 150px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.benefit-card {
  background: var(--color-white);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  border: 1px solid var(--color-platinum);
  transition: all var(--transition-base);
}

.benefit-card:hover {
  border-color: var(--color-soft-teal);
  transform: translateY(-4px);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--color-soft-teal);
}

.benefit-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 14px;
  color: var(--color-slate);
}

.stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--color-muted-azure), var(--color-soft-teal));
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-value {
  font-family: var(--font-mono);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 500;
  color: var(--color-white);
  display: block;
  margin-bottom: 8px;
}

.stat-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (min-width: 992px) {
  .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

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

.team-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 16px;
  transition: transform var(--transition-base);
  filter: grayscale(20%);
}

.team-card:hover .team-photo {
  transform: scale(1.02);
  filter: grayscale(0%);
}

.team-name {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 4px;
}

.team-position {
  font-size: 14px;
  color: var(--color-slate);
}

.team-experience {
  font-size: 13px;
  color: var(--color-muted-azure);
  margin-top: 4px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-platinum);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-charcoal);
}

.faq-question:hover {
  color: var(--color-muted-azure);
}

.faq-icon {
  font-size: 24px;
  color: var(--color-muted-azure);
  transition: transform var(--transition-base);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-smooth);
}

.faq-answer-content {
  padding-bottom: 24px;
  color: var(--color-slate);
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.reviews-slider {
  position: relative;
  overflow: hidden;
}

.review-card {
  background: var(--color-white);
  border-radius: 12px;
  padding: 32px;
  box-shadow: var(--shadow-card);
  margin: 8px;
}

.review-content {
  font-style: italic;
  color: var(--color-slate);
  margin-bottom: 20px;
  line-height: 1.8;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.review-name {
  font-weight: 500;
}

.review-meta {
  font-size: 13px;
  color: var(--color-slate);
}

.review-tag {
  display: inline-block;
  font-size: 12px;
  background: rgba(74, 144, 164, 0.1);
  color: var(--color-muted-azure);
  padding: 4px 12px;
  border-radius: 4px;
  margin-top: 4px;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 992px) {
  .contact-section {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info h3 {
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(74, 144, 164, 0.1);
  border-radius: 8px;
  color: var(--color-muted-azure);
  flex-shrink: 0;
}

.contact-details {
  flex: 1;
}

.contact-label {
  font-size: 13px;
  color: var(--color-slate);
  margin-bottom: 4px;
}

.contact-value {
  font-size: 16px;
  font-weight: 500;
}

.contact-map {
  width: 100%;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--color-warm-gray);
}

.contact-form {
  background: var(--color-white);
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--shadow-card);
}

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

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--color-charcoal);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--color-silver);
  border-radius: 8px;
  font-size: 16px;
  font-family: var(--font-primary);
  transition: border-color var(--transition-base);
  background: var(--color-white);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-muted-azure);
}

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

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--color-muted-azure);
  color: var(--color-white);
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-base);
}

.form-submit:hover {
  background: #3d7a8c;
}

.footer {
  background: var(--color-charcoal);
  color: var(--color-white);
  padding: 60px 0 30px;
}

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

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 16px;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.8;
}

.footer-title {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
  color: var(--color-white);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: color var(--transition-base);
}

.footer-links a:hover {
  color: var(--color-white);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

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

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 500px;
  background: var(--color-white);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  z-index: 10000;
  display: block;
}

@media (min-width: 768px) {
  .cookie-banner {
    left: auto;
  }
}

.cookie-title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--color-charcoal);
}

.cookie-text {
  font-size: 14px;
  color: var(--color-slate);
  margin-bottom: 20px;
  line-height: 1.6;
}

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

.cookie-btn {
  flex: 1;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-base);
  border: none;
}

.cookie-btn-accept {
  background: var(--color-muted-azure);
  color: var(--color-white);
}

.cookie-btn-accept:hover {
  background: #3d7a8c;
}

.cookie-btn-decline {
  background: var(--color-warm-gray);
  color: var(--color-charcoal);
}

.cookie-btn-decline:hover {
  background: var(--color-silver);
}

.cookie-hidden {
  display: none !important;
}

.thank-you-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 60px;
}

.thank-you-content {
  max-width: 600px;
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(74, 144, 164, 0.1);
  border-radius: 50%;
  margin: 0 auto 24px;
  color: var(--color-muted-azure);
  font-size: 40px;
}

.thank-you-title {
  margin-bottom: 16px;
}

.thank-you-text {
  color: var(--color-slate);
  margin-bottom: 32px;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0;
}

.legal-content h1 {
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--color-platinum);
}

.legal-content h2 {
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-content p,
.legal-content li {
  color: var(--color-slate);
  line-height: 1.8;
  margin-bottom: 16px;
}

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

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card {
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
}

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

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 24px;
}

.blog-date {
  font-size: 13px;
  color: var(--color-slate);
  margin-bottom: 8px;
}

.blog-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-excerpt {
  font-size: 14px;
  color: var(--color-slate);
  margin-bottom: 16px;
}

.blog-link {
  color: var(--color-muted-azure);
  font-size: 14px;
  font-weight: 500;
}

.article-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 24px;
}

.article-header {
  margin-bottom: 40px;
}

.article-date {
  font-size: 14px;
  color: var(--color-slate);
  margin-bottom: 12px;
}

.article-title {
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.3;
}

.article-body {
  line-height: 1.8;
  color: var(--color-slate);
}

.article-body h2 {
  font-size: 24px;
  color: var(--color-charcoal);
  margin-top: 40px;
  margin-bottom: 16px;
}

.article-body p {
  margin-bottom: 20px;
}

.article-body ul {
  padding-left: 24px;
  margin-bottom: 20px;
}

.article-body li {
  margin-bottom: 8px;
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .header .cta-button {
    display: none;
  }
  
  .hero {
    min-height: auto;
    padding: 120px 0 60px;
  }
  
  .hero-features {
    flex-direction: column;
    gap: 16px;
  }
  
  .about-stats {
    flex-direction: column;
    gap: 24px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .process-timeline {
    flex-direction: column;
    gap: 24px;
  }
  
  .process-step::after {
    display: none;
  }
  
  .footer-grid {
    text-align: center;
  }
  
  .footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}