:root {
  --cream: #faf6f0;
  --cream-dark: #f2ebe0;
  --cream-mid: #ede4d6;
  --warm-white: #fefcf8;
  --sand: #e8dcc8;
  --bark: #c4a882;
  --terracotta: #c4714a;
  --terracotta-light: #d4845d;
  --terracotta-dark: #a85e3a;
  --amber: #d4932a;
  --sage: #6b8f6b;
  --sage-light: #8aab8a;
  --sage-dark: #4d6b4d;
  --charcoal: #2c2416;
  --charcoal-mid: #3d3426;
  --brown-mid: #6b5a3e;
  --text-main: #2c2416;
  --text-body: #4a3f2e;
  --text-muted: #7a6a52;
  --text-light: #a89070;
  --border-light: rgba(196,168,130,0.25);
  --border-mid: rgba(196,168,130,0.45);
  --shadow-sm: 0 1px 3px rgba(44,36,22,0.06), 0 1px 2px rgba(44,36,22,0.04);
  --shadow-md: 0 4px 12px rgba(44,36,22,0.08), 0 2px 6px rgba(44,36,22,0.05);
  --shadow-lg: 0 8px 32px rgba(44,36,22,0.10), 0 4px 12px rgba(44,36,22,0.06);
  --shadow-xl: 0 16px 48px rgba(44,36,22,0.12), 0 6px 18px rgba(44,36,22,0.07);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --sp-1: 0.5rem;
  --sp-2: 1rem;
  --sp-3: 1.5rem;
  --sp-4: 2rem;
  --sp-6: 3rem;
  --sp-8: 4rem;
  --sp-12: 6rem;
  --sp-16: 8rem;
  --hdr-h: 80px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--text-body);
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

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

a { color: var(--terracotta); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--terracotta-dark); }

h1, h2, h3, h4, h5 {
  font-family: 'Gabarito', sans-serif;
  color: var(--text-main);
  line-height: 1.2;
  font-weight: 700;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--sp-4);
}

.sec {
  padding: var(--sp-12) 0;
}

.sec-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  background: rgba(196,113,74,0.1);
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  margin-bottom: var(--sp-2);
}

.sec-ttl {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  margin-bottom: var(--sp-4);
  color: var(--text-main);
}

.mt-1 { margin-top: var(--sp-3); }


.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-md);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  min-height: 44px;
}

.btn-primary {
  background: var(--terracotta);
  color: #fff;
  box-shadow: 0 2px 8px rgba(196,113,74,0.3), 0 1px 3px rgba(196,113,74,0.2);
}
.btn-primary:hover {
  background: var(--terracotta-dark);
  color: #fff;
  box-shadow: 0 4px 16px rgba(196,113,74,0.4), 0 2px 6px rgba(196,113,74,0.25);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-main);
  border: 1.5px solid var(--border-mid);
}
.btn-ghost:hover {
  background: var(--cream-dark);
  color: var(--text-main);
  border-color: var(--bark);
}

.btn-ghost-light {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,0.22);
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}

.btn-urgent {
  background: var(--amber);
  color: #fff;
  box-shadow: 0 2px 8px rgba(212,147,42,0.3);
}
.btn-urgent:hover {
  background: #b87d22;
  color: #fff;
  transform: translateY(-1px);
}


.hdr {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250,246,240,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

.hdr.scrolled {
  background: rgba(250,246,240,0.97);
  box-shadow: var(--shadow-md);
}

.hdr-inner {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: 1.1rem var(--sp-4);
  max-width: 1280px;
  margin: 0 auto;
  transition: padding 0.3s ease;
}

.hdr.scrolled .hdr-inner {
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
}

.hdr-logo { display: flex; align-items: center; text-decoration: none; }

.hdr-logo-img {
  height: 36px;
  width: auto;
  transition: height 0.3s ease;
}

.hdr.scrolled .hdr-logo-img { height: 28px; }

.hdr-nav {
  display: none;
  align-items: center;
  gap: var(--sp-1);
  margin-left: auto;
}

.hdr-nav-lnk {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-body);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  text-decoration: none;
}

.hdr-nav-lnk:hover,
.hdr-nav-lnk.active {
  color: var(--terracotta);
  background: rgba(196,113,74,0.08);
}

.hdr-cta {
  display: none;
  align-items: center;
  gap: var(--sp-1);
  margin-left: var(--sp-2);
}

.hdr-burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  min-width: 44px;
  min-height: 44px;
}

.hdr-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: var(--transition);
}

.hdr-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hdr-burger.open span:nth-child(2) { opacity: 0; }
.hdr-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hdr-mobile {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1);
  background: var(--cream);
  border-top: 1px solid var(--border-light);
}

.hdr-mobile.open { max-height: 480px; }

.hdr-mob-lnk {
  display: block;
  padding: 0.85rem var(--sp-4);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-body);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

.hdr-mob-lnk:hover,
.hdr-mob-lnk.active {
  color: var(--terracotta);
  background: rgba(196,113,74,0.06);
}

.hdr-mob-cta {
  padding: var(--sp-3) var(--sp-4);
}


.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(44,36,22,0.65) 0%,
    rgba(44,36,22,0.45) 50%,
    rgba(196,113,74,0.3) 100%
  );
}

.hero-cnt {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--sp-4);
  max-width: 760px;
}

.hero-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.12);
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  margin-bottom: var(--sp-3);
  border: 1px solid rgba(255,255,255,0.2);
}

.hero-ttl {
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.0;
  margin-bottom: var(--sp-3);
  text-shadow: 0 2px 20px rgba(44,36,22,0.3);
}

.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: rgba(255,255,255,0.88);
  margin-bottom: var(--sp-4);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}


.intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-8);
  align-items: center;
}

.intro-txt .sec-label { margin-bottom: var(--sp-2); }

.intro-p {
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: var(--sp-3);
  font-size: 1.05rem;
}

.intro-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/3;
}

.intro-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.intro-img-wrap:hover .intro-img { transform: scale(1.03); }


.bento-sec { background: var(--cream-dark); }

.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
}

.crd {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  box-shadow: var(--shadow-sm);
}

.crd:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--border-mid);
}

.crd-body { padding: var(--sp-4); }

.crd-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-dark);
  background: rgba(107,143,107,0.12);
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
  margin-bottom: var(--sp-2);
}

.crd-ttl {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  margin-bottom: var(--sp-2);
}

.crd-txt {
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.65;
}

.crd-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.crd:hover .crd-img { transform: scale(1.03); }

.crd-ico-wrap {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(196,113,74,0.12), rgba(196,113,74,0.06));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: var(--sp-4) var(--sp-4) var(--sp-2);
  border: 1px solid rgba(196,113,74,0.15);
}

.crd-ico {
  font-size: 1.3rem;
  color: var(--terracotta);
}

.crd-ttl-sm {
  font-size: 1.05rem;
  margin: 0 var(--sp-4) var(--sp-2);
}

.crd-txt-sm {
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.6;
  margin: 0 var(--sp-4) var(--sp-4);
}

.crd-hover-info {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.3s ease;
  opacity: 0;
  padding: 0 var(--sp-4);
}

.crd:hover .crd-hover-info {
  max-height: 120px;
  opacity: 1;
  padding-bottom: var(--sp-3);
}

.crd-hover-info p {
  font-size: 0.82rem;
  color: var(--text-muted);
  background: var(--cream-dark);
  padding: var(--sp-2);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--terracotta);
  line-height: 1.55;
}

.bento-wide .crd-img-side {
  width: 100%;
  height: 200px;
  object-fit: cover;
}


.journey-sec {
  background: var(--warm-white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.journey-intro {
  max-width: 600px;
  color: var(--text-muted);
  margin-bottom: var(--sp-8);
  font-size: 1.05rem;
  line-height: 1.7;
}

.journey-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.journey-step {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
  padding: var(--sp-4) 0;
}

.journey-num {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--terracotta), var(--terracotta-light));
  color: #fff;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Gabarito', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 3px 10px rgba(196,113,74,0.35);
}

.journey-cnt h4 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  color: var(--text-main);
}

.journey-cnt p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.65;
}

.journey-connector {
  width: 2px;
  height: 24px;
  background: linear-gradient(to bottom, var(--terracotta), var(--bark));
  margin-left: 25px;
  border-radius: 2px;
  opacity: 0.4;
}


.carousel-sec { background: var(--cream-dark); }

.splide__track { overflow: visible !important; }
.splide { overflow: hidden; padding-bottom: var(--sp-6) !important; }

.art-crd {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  height: 100%;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.art-crd:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-mid);
}

.art-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.art-crd:hover .art-img { transform: scale(1.04); }

.art-ico-wrap {
  height: 120px;
  background: linear-gradient(135deg, var(--cream-dark), var(--sand));
  display: flex;
  align-items: center;
  justify-content: center;
}

.art-ico {
  font-size: 2.5rem;
  color: var(--terracotta);
  opacity: 0.7;
}

.art-body { padding: var(--sp-3); }

.art-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-dark);
  background: rgba(107,143,107,0.12);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  margin-bottom: var(--sp-2);
}

.art-ttl {
  font-size: 1rem;
  margin-bottom: var(--sp-1);
  line-height: 1.35;
}

.art-txt {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.splide__pagination__page {
  background: var(--sand) !important;
  opacity: 1 !important;
}
.splide__pagination__page.is-active {
  background: var(--terracotta) !important;
  transform: scale(1.3) !important;
}
.splide__arrow {
  background: var(--warm-white) !important;
  box-shadow: var(--shadow-md) !important;
  opacity: 1 !important;
}
.splide__arrow svg { fill: var(--terracotta) !important; }
.splide__arrow:hover { background: var(--terracotta) !important; }
.splide__arrow:hover svg { fill: #fff !important; }


.flow-sec {
  background: var(--cream);
}

.flow-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-8);
  align-items: start;
}

.flow-txt p {
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: var(--sp-3);
}

.flow-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3);
}

.flow-crd {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
  background: var(--warm-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: var(--sp-3);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.flow-crd:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border-mid);
  transform: translateX(4px);
}

.flow-ico {
  font-size: 1.2rem;
  color: var(--terracotta);
  flex-shrink: 0;
  margin-top: 3px;
}

.flow-crd h4 {
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}

.flow-crd p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
}


.cta-sec {
  background: linear-gradient(135deg, var(--cream-dark) 0%, var(--sand) 100%);
  border-top: 1px solid var(--border-light);
}

.cta-box {
  text-align: center;
  max-width: 580px;
  margin: 0 auto;
  padding: var(--sp-8) var(--sp-4);
}

.cta-ico-wrap {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--terracotta), var(--terracotta-light));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-4);
  box-shadow: 0 4px 16px rgba(196,113,74,0.35);
  font-size: 1.5rem;
  color: #fff;
}

.cta-ttl {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: var(--sp-3);
}

.cta-txt {
  color: var(--text-body);
  margin-bottom: var(--sp-4);
  line-height: 1.7;
}


.ftr {
  background: var(--charcoal);
  color: rgba(255,255,255,0.75);
  margin-top: auto;
}

.ftr-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
  padding: var(--sp-8) var(--sp-4) var(--sp-6);
  max-width: 1280px;
  margin: 0 auto;
}

.ftr-logo { height: 32px; width: auto; }

.ftr-tagline {
  margin-top: var(--sp-2);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
}

.ftr-nav {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.ftr-lnk {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
  padding: 0.25rem 0;
}

.ftr-lnk:hover { color: #fff; }

.ftr-contact p {
  font-size: 0.85rem;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
  color: rgba(255,255,255,0.65);
}

.ftr-contact i { color: var(--terracotta-light); margin-top: 3px; flex-shrink: 0; }

.ftr-contact a {
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}
.ftr-contact a:hover { color: #fff; }

.ftr-bar {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--sp-3) var(--sp-4);
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  align-items: center;
  text-align: center;
}

.ftr-bar p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.ftr-legal {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  justify-content: center;
}

.ftr-legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  transition: var(--transition);
}
.ftr-legal a:hover { color: rgba(255,255,255,0.85); }


.pg-hero {
  padding: calc(var(--hdr-h) + var(--sp-8)) 0 var(--sp-8);
  background: linear-gradient(160deg, var(--cream) 0%, var(--cream-dark) 100%);
  border-bottom: 1px solid var(--border-light);
}

.pg-ttl {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: var(--sp-3);
  margin-top: var(--sp-2);
}

.pg-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
}


.audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}

.aud-crd {
  background: var(--warm-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.aud-crd:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--border-mid);
}

.aud-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.aud-body {
  padding: var(--sp-4);
}

.aud-ico-wrap {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(196,113,74,0.12), rgba(196,113,74,0.06));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-3);
  font-size: 1.2rem;
  color: var(--terracotta);
  border: 1px solid rgba(196,113,74,0.15);
}

.aud-crd h2 {
  font-size: 1.3rem;
  margin-bottom: var(--sp-3);
}

.aud-crd p {
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: var(--sp-3);
  font-size: 0.95rem;
}

.aud-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.aud-list li {
  font-size: 0.875rem;
  color: var(--text-body);
  padding-left: 1.25rem;
  position: relative;
}

.aud-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--terracotta);
  border-radius: 50%;
}

.what-not-sec { background: var(--cream-dark); }

.what-not-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
}

.what-not-item {
  background: var(--warm-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: var(--sp-4);
  transition: var(--transition);
}

.what-not-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border-mid);
}

.what-not-ico {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: var(--sp-2);
}

.what-not-item h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.what-not-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}


.case-intro {
  background: var(--warm-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: var(--sp-4);
  margin-bottom: var(--sp-8);
  border-left: 4px solid var(--terracotta);
}

.case-intro p {
  color: var(--text-body);
  line-height: 1.7;
  font-size: 1.0rem;
}

.case-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
}

.case-art {
  background: var(--warm-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.case-hd {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  padding: var(--sp-4) var(--sp-6);
  background: linear-gradient(135deg, var(--cream-dark), var(--cream));
  border-bottom: 1px solid var(--border-light);
}

.case-num {
  font-family: 'Gabarito', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--terracotta);
  opacity: 0.5;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 4px;
}

.case-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-dark);
  background: rgba(107,143,107,0.12);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  margin-bottom: 0.4rem;
}

.case-hd h2 {
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
}

.case-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
  padding: var(--sp-6);
}

.case-txt h3 {
  font-size: 1rem;
  color: var(--terracotta);
  margin-bottom: 0.6rem;
  margin-top: var(--sp-4);
}

.case-txt h3:first-child { margin-top: 0; }

.case-txt p {
  font-size: 0.93rem;
  color: var(--text-body);
  line-height: 1.72;
  margin-bottom: var(--sp-3);
}

.case-facts {
  background: var(--cream-dark);
  border-radius: var(--radius-md);
  padding: var(--sp-3);
  border: 1px solid var(--border-light);
}

.case-facts h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: var(--sp-3);
}

.case-fact {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-body);
}

.case-fact .fa-check { color: var(--sage); flex-shrink: 0; margin-top: 3px; }
.case-fact .fa-xmark { color: var(--terracotta); flex-shrink: 0; margin-top: 3px; }
.case-fact .fa-circle-info { color: var(--amber); flex-shrink: 0; margin-top: 3px; }

.case-img-sec { padding: 0 0 var(--sp-12); }

.case-full-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}


.src-intro {
  background: var(--warm-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: var(--sp-4);
  margin-bottom: var(--sp-8);
  border-left: 4px solid var(--sage);
}

.src-intro p {
  color: var(--text-body);
  line-height: 1.7;
}

.src-grid {
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
}

.src-cat {
  background: var(--warm-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.src-cat-hd {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-6);
  background: linear-gradient(135deg, var(--cream-dark), var(--cream));
  border-bottom: 1px solid var(--border-light);
}

.src-ico {
  font-size: 1.3rem;
  color: var(--terracotta);
}

.src-cat-hd h2 {
  font-size: 1.15rem;
}

.src-list {
  padding: var(--sp-4) var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.src-item {
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--border-light);
}

.src-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.src-item-hd {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-bottom: 0.6rem;
}

.src-item-hd h4 { font-size: 1rem; }

.src-badge {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage-dark);
  background: rgba(107,143,107,0.12);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  white-space: nowrap;
}

.src-item p {
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 0.5rem;
}

.src-ref {
  font-size: 0.8rem !important;
  color: var(--text-muted) !important;
  font-style: italic;
}

.src-note {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
  background: rgba(212,147,42,0.08);
  border: 1px solid rgba(212,147,42,0.2);
  border-radius: var(--radius-md);
  padding: var(--sp-4);
  margin-top: var(--sp-8);
}

.src-note i {
  color: var(--amber);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.src-note p {
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.65;
}

.src-full-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}


.contact-sec { padding-top: var(--sp-8); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-8);
}

.contact-form-wrap {
  background: var(--warm-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: var(--sp-6);
  box-shadow: var(--shadow-md);
}

.contact-form-wrap h2 {
  font-size: 1.4rem;
  margin-bottom: var(--sp-4);
}

.step-ind {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: var(--sp-6);
}

.step-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cream-dark);
  border: 2px solid var(--border-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: var(--transition);
}

.step-dot.active {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: #fff;
  box-shadow: 0 2px 8px rgba(196,113,74,0.4);
}

.step-line {
  flex: 1;
  height: 2px;
  background: var(--border-mid);
  max-width: 80px;
}

.frm-step { display: flex; flex-direction: column; gap: var(--sp-3); }
.frm-step.hidden { display: none; }

.frm-grp { display: flex; flex-direction: column; gap: 0.4rem; }

.frm-lbl {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
}

.frm-inp,
.frm-txt {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border-mid);
  border-radius: var(--radius-md);
  background: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text-main);
  transition: var(--transition);
  outline: none;
  min-height: 44px;
}

.frm-inp:focus,
.frm-txt:focus {
  border-color: var(--terracotta);
  background: var(--warm-white);
  box-shadow: 0 0 0 3px rgba(196,113,74,0.12);
}

.frm:has(.frm-inp:focus),
.frm:has(.frm-txt:focus) {
  border-color: var(--terracotta);
}

.frm-txt { resize: vertical; }

.frm-chk-grp { flex-direction: row; align-items: flex-start; }

.frm-chk-lbl {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.5;
}

.frm-chk {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--terracotta);
  cursor: pointer;
}

.frm-lnk { color: var(--terracotta); }
.frm-lnk:hover { text-decoration: underline; }

.frm-btns {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
}

.frm-next { align-self: flex-start; }

.contact-info h2 { font-size: 1.4rem; margin-bottom: var(--sp-4); }

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
}

.contact-info-item {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
  background: var(--warm-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: var(--sp-3);
  transition: var(--transition);
}

.contact-info-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border-mid);
}

.contact-info-ico {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(196,113,74,0.12), rgba(196,113,74,0.06));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--terracotta);
  flex-shrink: 0;
}

.contact-info-item h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.contact-info-item p {
  font-size: 0.9rem;
  color: var(--text-body);
}

.contact-info-item a {
  color: var(--text-body);
}

.contact-info-item a:hover { color: var(--terracotta); }

.urgent-box {
  background: linear-gradient(135deg, rgba(212,147,42,0.08), rgba(212,147,42,0.04));
  border: 1px solid rgba(212,147,42,0.25);
  border-radius: var(--radius-lg);
  padding: var(--sp-4);
}

.urgent-hd {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-3);
}

.urgent-hd i {
  color: var(--amber);
  font-size: 1.1rem;
}

.urgent-hd h3 { font-size: 1.05rem; }

.urgent-box p {
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: var(--sp-3);
}

.map-wrap { margin-top: var(--sp-8); }

.map-ttl { font-size: 1.4rem; margin-bottom: var(--sp-4); }

.map-container {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}


.thanks-main {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-8) var(--sp-4);
  padding-top: calc(var(--hdr-h) + var(--sp-8));
}

.thanks-box {
  text-align: center;
  max-width: 480px;
  background: var(--warm-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: var(--sp-8) var(--sp-6);
  box-shadow: var(--shadow-xl);
}

.thanks-ico-wrap {
  margin-bottom: var(--sp-4);
}

.thanks-ico {
  font-size: 3.5rem;
  color: var(--sage);
}

.thanks-ttl {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  margin-bottom: var(--sp-3);
}

.thanks-txt {
  color: var(--text-muted);
  margin-bottom: var(--sp-4);
  line-height: 1.65;
}

.thanks-countdown {
  background: var(--cream-dark);
  border-radius: var(--radius-md);
  padding: var(--sp-2) var(--sp-3);
  margin-bottom: var(--sp-4);
  font-size: 0.875rem;
  color: var(--text-muted);
}

#countNum {
  font-weight: 700;
  color: var(--terracotta);
  font-size: 1.1em;
}


.legal-cnt {
  max-width: 820px;
}

.legal-qa {
  margin-bottom: var(--sp-8);
  padding-bottom: var(--sp-6);
  border-bottom: 1px solid var(--border-light);
}

.legal-qa:last-child {
  border-bottom: none;
}

.legal-qa h2 {
  font-size: 1.15rem;
  color: var(--terracotta);
  margin-bottom: var(--sp-3);
  padding-left: var(--sp-3);
  border-left: 3px solid var(--terracotta);
}

.legal-qa p {
  font-size: 0.925rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: var(--sp-2);
}

.legal-qa a { color: var(--terracotta); }

.legal-block {
  margin-bottom: var(--sp-6);
  padding-bottom: var(--sp-6);
  border-bottom: 1px solid var(--border-light);
}

.legal-block:last-child { border-bottom: none; }

.legal-block h2 {
  font-size: 1.1rem;
  margin-bottom: var(--sp-3);
  color: var(--text-main);
  font-weight: 700;
}

.legal-block p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: var(--sp-2);
}

.legal-intro {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: var(--sp-8);
  padding: var(--sp-4);
  background: var(--warm-white);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--sage);
}

.legal-intro a { color: var(--terracotta); }

.cookie-section {
  margin-bottom: var(--sp-8);
  padding-bottom: var(--sp-6);
  border-bottom: 1px solid var(--border-light);
}

.cookie-section:last-child { border-bottom: none; }

.cookie-section h2 {
  font-size: 1.2rem;
  margin-bottom: var(--sp-3);
  color: var(--text-main);
}

.cookie-section p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: var(--sp-2);
}

.cookie-cat-box {
  background: var(--warm-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--sp-4);
  margin-bottom: var(--sp-4);
}

.cookie-cat-hd {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-3);
  flex-wrap: wrap;
}

.cookie-cat-hd h3 { font-size: 1rem; }

.cookie-badge {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}

.cookie-badge.required {
  background: rgba(107,143,107,0.15);
  color: var(--sage-dark);
}

.cookie-badge.optional {
  background: rgba(212,147,42,0.12);
  color: #8a5e10;
}

.cookie-tbl {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  margin: var(--sp-3) 0;
}

.cookie-tbl th {
  text-align: left;
  padding: 0.5rem 0.75rem;
  background: var(--cream-dark);
  color: var(--text-main);
  font-weight: 600;
  font-size: 0.8rem;
  border-bottom: 2px solid var(--border-mid);
}

.cookie-tbl td {
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-body);
  vertical-align: top;
}

.cookie-tbl tr:last-child td { border-bottom: none; }


.impressum-cnt { max-width: 900px; }

.imp-sec {
  margin-bottom: var(--sp-6);
  padding-bottom: var(--sp-6);
  border-bottom: 1px solid var(--border-light);
}

.imp-sec:last-child { border-bottom: none; }

.imp-sec h2 {
  font-size: 1.05rem;
  color: var(--terracotta);
  margin-bottom: var(--sp-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.9rem;
}

.imp-sec p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: var(--sp-2);
}

.imp-sec a { color: var(--terracotta); }

.imp-tbl {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.imp-tbl td {
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid var(--border-light);
  vertical-align: top;
  color: var(--text-body);
}

.imp-tbl td:first-child {
  font-weight: 600;
  color: var(--text-main);
  width: 40%;
  white-space: nowrap;
}

.imp-tbl tr:last-child td { border-bottom: none; }


.cc-card {
  position: fixed;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 9999;
  width: 300px;
  background: var(--warm-white);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: var(--sp-3);
  transform: translateX(calc(-100% - 2rem));
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-family: 'Inter', sans-serif;
}

.cc-card.visible {
  transform: translateX(0);
}

.cc-hd {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-2);
}

.cc-ico {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--terracotta), var(--terracotta-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.cc-title {
  font-family: 'Gabarito', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main);
}

.cc-txt {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: var(--sp-3);
}

.cc-txt a { color: var(--terracotta); font-size: 0.78rem; }

.cc-btns {
  display: flex;
  gap: var(--sp-1);
}

.cc-btn {
  flex: 1;
  padding: 0.5rem 0.6rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  min-height: 36px;
  font-family: 'Inter', sans-serif;
}

.cc-btn-accept {
  background: var(--terracotta);
  color: #fff;
}
.cc-btn-accept:hover { background: var(--terracotta-dark); }

.cc-btn-reject {
  background: var(--cream-dark);
  color: var(--text-body);
  border: 1px solid var(--border-mid);
}
.cc-btn-reject:hover { background: var(--sand); }

.cc-btn-settings {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border-light);
  flex: 0 0 auto;
  padding: 0.5rem 0.7rem;
}
.cc-btn-settings:hover { background: var(--cream-dark); }


.cc-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44,36,22,0.5);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  backdrop-filter: blur(4px);
}

.cc-modal-overlay.visible {
  opacity: 1;
  pointer-events: all;
}

.cc-modal {
  background: var(--warm-white);
  border-radius: var(--radius-xl);
  padding: var(--sp-6);
  max-width: 480px;
  width: 100%;
  box-shadow: var(--shadow-xl);
  max-height: 90vh;
  overflow-y: auto;
}

.cc-modal h3 {
  font-family: 'Gabarito', sans-serif;
  font-size: 1.2rem;
  margin-bottom: var(--sp-4);
  color: var(--text-main);
}

.cc-cat {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--sp-3);
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--border-light);
}

.cc-cat:last-of-type { border-bottom: none; }

.cc-cat-txt h4 { font-size: 0.9rem; margin-bottom: 0.25rem; }
.cc-cat-txt p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; }

.cc-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.cc-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.cc-toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--sand);
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition);
}

.cc-toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: var(--transition);
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.cc-toggle input:checked + .cc-toggle-slider { background: var(--terracotta); }
.cc-toggle input:checked + .cc-toggle-slider::before { transform: translateX(20px); }
.cc-toggle input:disabled + .cc-toggle-slider { opacity: 0.6; cursor: not-allowed; }

.cc-modal-btns {
  display: flex;
  gap: var(--sp-2);
  margin-top: var(--sp-4);
  flex-wrap: wrap;
}


.crd:has(.crd-img) .crd-body {
  border-top: none;
}

.crd:has(.crd-ico-wrap) {
  display: flex;
  flex-direction: column;
}

.sec:has(.highlighted) {
  background: var(--cream-dark);
}

.frm:has(.frm-inp:focus) {
  border-color: var(--terracotta);
}

.contact-form-wrap:has(.frm-inp:focus) {
  box-shadow: var(--shadow-lg), 0 0 0 3px rgba(196,113,74,0.08);
}

.aud-crd:has(.aud-img) .aud-body {
  padding-top: var(--sp-3);
}


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

  .bento-lg {
    grid-column: span 2;
  }

  .bento-wide {
    grid-column: span 2;
  }

  .what-not-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .flow-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .ftr-bar {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

@media (min-width: 768px) {
  .hdr-nav { display: flex; }
  .hdr-cta { display: flex; }
  .hdr-burger { display: none; }

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

  .journey-steps {
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
  }

  .journey-step {
    flex: 1;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 var(--sp-2);
  }

  .journey-connector {
    width: 100%;
    height: 2px;
    margin: 26px 0 0;
    flex: 0 0 30px;
  }

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

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

  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .aud-crd:first-child {
    grid-column: span 2;
  }

  .case-body {
    grid-template-columns: 1fr 280px;
  }

  .bento-wide {
    display: grid;
    grid-template-columns: 260px 1fr;
  }

  .bento-wide .crd-img-side {
    height: 100%;
    width: 260px;
  }

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

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

  .bento-lg {
    grid-column: span 2;
    grid-row: span 1;
  }

  .bento-wide {
    grid-column: span 2;
  }

  .what-not-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .hdr-nav,
  .hdr-cta { display: none; }

  .case-hd {
    padding: var(--sp-3) var(--sp-4);
  }

  .case-body {
    padding: var(--sp-4);
  }

  .src-cat-hd,
  .src-list {
    padding-left: var(--sp-4);
    padding-right: var(--sp-4);
  }

  .imp-tbl td:first-child {
    white-space: normal;
    width: auto;
  }

  .cc-card {
    width: calc(100vw - 2.5rem);
    left: 1.25rem;
  }
}