


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

:root {
  --green: #228b44;
  --green-dark: #155a2d;
  --green-light: #e8f5ed;
  --green-mid: #2da858;
  --white: #ffffff;
  --off-white: #f7f8f6;
  --gray-100: #f0f1ef;
  --gray-200: #e2e4e0;
  --gray-400: #9aa096;
  --gray-600: #5c6359;
  --gray-800: #333b30;
  --black: #1a1f18;
  --radius: 10px;
  --font: 'Inter', system-ui, sans-serif;
  --transition: 0.25s ease;
}

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

body {
  font-family: var(--font);
  color: var(--black);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}


.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.btn-ghost {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}

.btn-ghost:hover {
  background: var(--green-light);
}

.btn-full {
  width: 100%;
  justify-content: center;
}


.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}


.splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.splash-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.splash-logo-container {
  width: 80%;
  max-width: 300px;
  animation: pulse 2s infinite ease-in-out;
}

.splash-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
}

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

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

body.no-scroll {
  overflow: hidden;
}


#header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0.6rem 2rem;
  gap: 1rem;
}


.logo-img {
  height: 94px;
  
  width: auto;
  object-fit: contain;
  transition: transform var(--transition);
}

.nav-logo:hover .logo-img {
  transform: scale(1.05);
}


.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-800);
  padding: 0.45rem 0.85rem;
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
}

.nav-links a:hover {
  background: var(--green-light);
  color: var(--green-dark);
}


.nav-item-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
}

.dropdown-trigger i.fa-chevron-down {
  font-size: 0.7rem;
  transition: transform var(--transition);
}


.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 0.6rem 0;
  z-index: 1000;
  margin-top: 0.5rem;
}


.dropdown-content::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 0;
  width: 100%;
  height: 15px;
}

.dropdown-content a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-800);
  border-radius: 0;
  white-space: nowrap;
}

.dropdown-content a:hover {
  background: var(--green-light);
  color: var(--green-dark);
}


@media (min-width: 769px) {
  .nav-item-dropdown.active .dropdown-content {
    display: block;
    animation: fadeInDown 0.2s ease-out;
  }

  .nav-item-dropdown.active .dropdown-trigger i.fa-chevron-down {
    transform: rotate(180deg);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--green) !important;
  color: var(--white) !important;
  padding: 0.45rem 1rem !important;
  border-radius: 6px !important;
  margin-left: 0.5rem;
}

.nav-phone:hover {
  background: var(--green-dark) !important;
}


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

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gray-800);
  border-radius: 2px;
}


.nav-close-btn {
  display: none;
}


.hero {
  position: relative;
  color: var(--white);
  padding: 0;
  min-height: 75vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}


.hero-slideshow-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slideshow-bg .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slideshow-bg .slide.active {
  opacity: 1;
}


.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(13, 50, 25, 0.82) 0%,
      rgba(13, 50, 25, 0.55) 50%,
      rgba(13, 50, 25, 0.2) 100%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.25rem;
  max-width: 640px;
  
  opacity: 0;
  transform: translateY(40px);
  animation: elegantSlideUp 1s ease-out 0.2s forwards;
}

@keyframes elegantSlideUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 2.25rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-actions .btn-ghost {
  color: var(--white);
  border-color: var(--white);
}

.hero-actions .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}


.slideshow-dots-hero {
  display: flex;
  gap: 7px;
  margin-top: 0.5rem;
}

.slideshow-dots-hero .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.slideshow-dots-hero .dot.active {
  background: var(--white);
  transform: scale(1.3);
}


.hero-slideshow {
  display: none;
}

.slideshow-dots {
  display: none;
}



.hero-stamp {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.07);
}

.stamp-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.stamp-logo {
  height: 80px;
  width: auto;
  object-fit: contain;
  filter: brightness(10) saturate(0);
  opacity: 0.75;
}

.stamp-inner span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.3;
}


.section-leistungen {
  padding: 5rem 0;
  background: var(--white);
}

.section-intro {
  margin-bottom: 3rem;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--black);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.section-sub {
  font-size: 1rem;
  color: var(--gray-600);
  max-width: 560px;
}

.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
}

.leistung-item {
  display: flex;
  gap: 1.1rem;
  padding: 2rem 1.75rem;
  grid-column: span 2;
  border-right: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  transition: background var(--transition);
}

.leistung-item-wide {
  grid-column: span 3;
}

.leistung-item:hover {
  background: var(--green-light);
}


.leistungen-grid .leistung-item:nth-child(3),
.leistungen-grid .leistung-item:last-child {
  border-right: none;
}

.leistung-item-wide {
  border-bottom: none;
}

.li-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--green-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  transition: background var(--transition);
}

.leistung-item:hover .li-icon {
  background: var(--green);
}

.li-icon i {
  font-size: 1.5rem;
  color: var(--green);
  transition: color var(--transition);
}

.leistung-item:hover .li-icon i {
  color: var(--white);
}

.li-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--green);
  transition: stroke var(--transition);
}

.leistung-item:hover .li-icon svg {
  stroke: var(--white);
}

.li-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.li-body p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 0.85rem;
}

.li-body a {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green);
  transition: color var(--transition);
}

.li-body a:hover {
  color: var(--green-dark);
}


.section-about {
  padding: 5rem 0;
  background: var(--off-white);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.about-lead {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gray-800);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.about-body {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.about-list-box {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.alb-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--gray-800);
}

.alb-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
}


.section-contact {
  padding: 5rem 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}

.contact-intro {
  font-size: 1rem;
  color: var(--gray-600);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.contact-direct {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-direct-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: border-color var(--transition), background var(--transition);
}

a.contact-direct-item:hover {
  border-color: var(--green);
  background: var(--green-light);
}

.cdi-icon {
  width: 40px;
  height: 40px;
  background: var(--green-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cdi-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--green);
}

.cdi-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-400);
}

.cdi-value {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--black);
  margin-top: 2px;
}


.contact-form {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

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

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 6px;
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--black);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(34, 139, 68, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

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

.form-success {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--green-light);
  color: var(--green-dark);
  border: 1px solid #b4dfc3;
  border-radius: 6px;
  padding: 0.9rem 1.1rem;
  margin-top: 0.75rem;
  font-weight: 600;
  font-size: 0.88rem;
}

.form-success svg {
  width: 18px;
  height: 18px;
  stroke: var(--green);
  flex-shrink: 0;
}


.footer {
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  align-items: start;
}

.footer-brand {
  flex: 0 0 auto;
  margin-bottom: 2rem;
}

.footer-logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  display: block;
}

.footer-logo-text {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  display: block;
  line-height: 1.1;
  text-decoration: none;
  margin-bottom: 0.8rem;
}

.footer-logo-text .mh {
  color: var(--white);
}

.footer-logo-text .innenausbau {
  color: var(--green);
}

.footer-brand-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  max-width: 320px;
}

.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul li,
.footer-col ul a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition);
}

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

.footer-bottom {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
}


@media (max-width: 1024px) {
  .leistungen-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .leistung-item:nth-child(3n) {
    border-right: 1px solid var(--gray-200);
  }

  .leistung-item:nth-child(2n) {
    border-right: none;
  }

  .leistung-item:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .leistung-item:nth-last-child(3) {
    border-bottom: 1px solid var(--gray-200);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-badge-col {
    display: none;
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding: 0.6rem 1.25rem;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 6rem;
    gap: 1rem;
    background: rgba(21, 90, 45, 0.98);
    backdrop-filter: blur(12px);
    z-index: 999;
    overflow-y: auto;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1.2rem;
    padding: 0.75rem 2rem;
    color: var(--white) !important;
    background: none !important;
  }

  .nav-close-btn {
    display: block;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: white;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
  }

  
  .nav-item-dropdown {
    width: 100%;
    text-align: center;
  }

  .nav-item-dropdown .dropdown-trigger {
    justify-content: center;
    width: 100%;
    padding: 0.75rem 2rem;
    font-size: 1.2rem;
    color: var(--white) !important;
  }

  .nav-item-dropdown .dropdown-content {
    position: static;
    display: none;
    
    background: rgba(255, 255, 255, 0.05);
    border: none;
    box-shadow: none;
    min-width: 100%;
    margin-top: 0;
    padding: 0;
  }

  .nav-item-dropdown.active .dropdown-content {
    display: block;
  }

  .nav-item-dropdown.active .dropdown-trigger i.fa-chevron-down {
    transform: rotate(180deg);
  }

  .dropdown-content a {
    font-size: 1rem !important;
    padding: 0.6rem 2rem !important;
    opacity: 0.8;
  }

  .logo-img {
    height: 56px;
  }

  .hero {
    padding: 3.5rem 0 3rem;
  }

  .hero-inner {
    padding: 0 1.25rem;
    grid-template-columns: 1fr;
  }

  .hero-slideshow {
    width: 100%;
  }

  .slideshow-inner {
    height: 220px;
  }


  .leistungen-grid {
    grid-template-columns: 1fr;
  }

  .leistung-item {
    grid-column: span 1 !important;
    border-right: none !important;
    border-bottom: 1px solid var(--gray-200) !important;
  }

  .leistung-item:nth-last-child(1) {
    border-bottom: none !important;
  }

  .section-leistungen,
  .section-about,
  .section-contact {
    padding: 3.5rem 0;
  }

  .contact-form {
    padding: 1.75rem 1.25rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    flex-direction: column;
    gap: 2rem;
  }

  .container {
    padding: 0 1.25rem;
  }
}




.breadcrumb-bar {
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
  padding: 0.65rem 0;
}

.breadcrumb-bar .container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--gray-600);
}

.breadcrumb-bar a {
  color: var(--green);
  font-weight: 600;
  transition: color var(--transition);
}

.breadcrumb-bar a:hover {
  color: var(--green-dark);
}

.breadcrumb-bar span {
  color: var(--gray-400);
}


.page-hero {
  background: var(--green-dark);
  color: var(--white);
  padding: 3.5rem 0;
}

.page-hero .container {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.ph-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ph-icon svg {
  width: 32px;
  height: 32px;
  stroke: rgba(255, 255, 255, 0.85);
}

.ph-icon i {
  font-size: 1.8rem;
  color: rgba(255, 255, 255, 0.85);
}

.page-hero h1 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}

.page-hero p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}


.page-content {
  padding: 4rem 0 5rem;
}

.page-content-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 4rem;
  align-items: start;
}

.pc-main h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 0.75rem;
  margin-top: 2.5rem;
  letter-spacing: -0.01em;
}

.pc-main h2:first-child {
  margin-top: 0;
}

.pc-main p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 1rem;
}


.content-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.content-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--gray-800);
  padding: 0.5rem 0.75rem;
  background: var(--green-light);
  border-radius: 6px;
  border-left: 3px solid var(--green);
}

.content-list li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}


.steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--off-white);
}

.step-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
}

.step strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.2rem;
}

.step p {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.55;
  margin: 0;
}


.pc-sidebar {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-cta {
  background: var(--green-dark);
  color: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
}

.sidebar-cta h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.sidebar-cta p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.sidebar-cta .btn-ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.8);
}

.sidebar-cta .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.sidebar-links {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.sidebar-links h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 1rem;
}

.sidebar-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.sidebar-links ul li a {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-800);
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
}

.sidebar-links ul li a:hover {
  background: var(--green-light);
  color: var(--green-dark);
}


@media (max-width: 900px) {
  .page-content-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .pc-sidebar {
    position: static;
  }
}


.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--gray-200);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.08);
  padding: 1.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  z-index: 10000;
  opacity: 0;
  transform: translateY(100%);
  animation: slideUpCookie 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

@keyframes slideUpCookie {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cookie-content {
  flex: 1;
  max-width: 800px;
}

.cookie-content p {
  font-size: 0.92rem;
  color: var(--gray-800);
  margin-bottom: 0.4rem;
  font-weight: 500;
  line-height: 1.5;
}

.cookie-content a {
  font-size: 0.85rem;
  color: var(--green);
  text-decoration: underline;
  font-weight: 600;
  transition: color var(--transition);
}

.cookie-content a:hover {
  color: var(--green-dark);
}

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

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    padding: 1.5rem;
    text-align: center;
    gap: 1.25rem;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
    gap: 0.75rem;
  }

  .cookie-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .page-hero .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}