/* =========================================
   WitKey Studio - Corporate Site
   ========================================= */

:root {
  --c-primary: #ffc107;
  --c-primary-dark: #f5a800;
  --c-primary-light: #fff3d4;
  --c-dark: #1d1d1f;
  --c-text: #2a2a2a;
  --c-muted: #6b6b73;
  --c-line: #e8e8ec;
  --c-bg: #ffffff;
  --c-bg-alt: #fafafa;
  --c-bg-dark: #15151a;
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 25px 60px rgba(0, 0, 0, 0.12);
  --font-jp: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  --font-en: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --container: 1180px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-jp);
  font-weight: 400;
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s var(--ease); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

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

/* =========================================
   HEADER
   ========================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: all 0.4s var(--ease);
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  padding: 12px 0;
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo { display: block; height: 38px; }
.logo img { height: 100%; width: auto; }
.logo .logo-dark { display: none; }
.logo .logo-light { display: block; filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3)); }
.site-header.scrolled .logo .logo-dark { display: block; filter: none; }
.site-header.scrolled .logo .logo-light { display: none; }

.nav ul {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav a {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s var(--ease);
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--c-primary);
  transition: width 0.3s var(--ease);
}
.nav a:hover::after { width: 100%; }

.site-header.scrolled .nav a {
  color: var(--c-dark);
  text-shadow: none;
}

.nav-cta {
  background: var(--c-primary);
  color: var(--c-dark) !important;
  padding: 10px 22px !important;
  border-radius: 999px;
  text-shadow: none !important;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.nav-cta::after { display: none; }
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 193, 7, 0.4);
}

.hamburger {
  display: none;
  width: 32px; height: 32px;
  position: relative;
}
.hamburger span {
  display: block;
  position: absolute;
  left: 4px; right: 4px;
  height: 2px;
  background: #fff;
  transition: all 0.3s var(--ease);
}
.hamburger span:nth-child(1) { top: 9px; }
.hamburger span:nth-child(2) { top: 15px; }
.hamburger span:nth-child(3) { top: 21px; }
.site-header.scrolled .hamburger span { background: var(--c-dark); }
.hamburger.is-open span:nth-child(1) { top: 15px; transform: rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { top: 15px; transform: rotate(-45deg); }

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../images/FirstView.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(20, 20, 30, 0.65) 0%, rgba(20, 20, 30, 0.45) 50%, rgba(255, 193, 7, 0.2) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 28px 80px;
  max-width: 900px;
}
.hero-symbol {
  width: 88px;
  margin: 0 auto 32px;
  animation: fadeUp 1s var(--ease) 0.2s both;
}
.hero-title {
  display: block;
  margin-bottom: 28px;
  animation: fadeUp 1s var(--ease) 0.4s both;
}
.hero-title-en {
  display: block;
  font-family: var(--font-en);
  font-weight: 800;
  font-size: clamp(28px, 5vw, 56px);
  line-height: 1.15;
  letter-spacing: 0.01em;
  margin-bottom: 14px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}
.hero-title-jp {
  display: block;
  font-weight: 500;
  font-size: clamp(15px, 2vw, 20px);
  letter-spacing: 0.2em;
  opacity: 0.92;
}
.hero-lead {
  font-size: clamp(13px, 1.4vw, 16px);
  line-height: 2;
  letter-spacing: 0.05em;
  opacity: 0.92;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  animation: fadeUp 1s var(--ease) 0.6s both;
}
.hero-scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: #fff;
  opacity: 0.85;
  animation: fadeUp 1s var(--ease) 0.9s both;
}
.hero-scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, #fff, transparent);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -50%; left: 0;
  width: 100%; height: 50%;
  background: var(--c-primary);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { top: -50%; }
  100% { top: 100%; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =========================================
   SECTIONS COMMON
   ========================================= */
.section { padding: 120px 0; position: relative; }
.section-head { margin-bottom: 60px; }
.section-head-center { text-align: center; }
.section-label {
  display: inline-block;
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--c-primary-dark);
  margin-bottom: 16px;
  position: relative;
  padding-left: 36px;
}
.section-label::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 24px; height: 1px;
  background: var(--c-primary-dark);
}
.section-head-center .section-label { padding-left: 0; }
.section-head-center .section-label::before { display: none; }

.section-title {
  font-weight: 700;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.3;
  letter-spacing: 0.03em;
  color: var(--c-dark);
}
.section-desc {
  margin-top: 18px;
  color: var(--c-muted);
  font-size: 15px;
}

/* =========================================
   ABOUT
   ========================================= */
.about { background: var(--c-bg); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text { padding-right: 20px; }
.about-lead {
  font-weight: 700;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: var(--c-dark);
  margin-bottom: 28px;
  position: relative;
  padding-bottom: 24px;
}
.about-lead::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 50px; height: 3px;
  background: var(--c-primary);
}
.about-body {
  font-size: 15px;
  line-height: 2;
  color: var(--c-text);
  margin-bottom: 18px;
}

.about-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.about-image:hover img { transform: scale(1.05); }
.about-badge {
  position: absolute;
  left: -20px; bottom: -20px;
  background: var(--c-primary);
  color: var(--c-dark);
  padding: 22px 28px;
  border-radius: 6px;
  box-shadow: 0 15px 35px rgba(255, 193, 7, 0.4);
}
.about-badge-year {
  display: block;
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 38px;
  line-height: 1;
}
.about-badge-text {
  display: block;
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.15em;
  margin-top: 4px;
}

/* =========================================
   BUSINESS
   ========================================= */
.business { background: var(--c-bg-alt); }
.biz-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.biz-card {
  display: grid;
  grid-template-columns: 5fr 7fr;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.biz-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.biz-card:nth-child(even) { grid-template-columns: 7fr 5fr; }
.biz-card:nth-child(even) .biz-card-img { order: 2; }
.biz-card:nth-child(even) .biz-card-body { order: 1; }

.biz-card-img {
  overflow: hidden;
  min-height: 320px;
}
.biz-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.biz-card:hover .biz-card-img img { transform: scale(1.08); }

.biz-card-body {
  padding: 50px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.biz-card-num {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--c-primary-dark);
  margin-bottom: 14px;
}
.biz-card-title {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.3;
  color: var(--c-dark);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.biz-card-jp {
  font-weight: 500;
  font-size: 14px;
  color: var(--c-primary-dark);
  margin-bottom: 18px;
}
.biz-card-desc {
  font-size: 14.5px;
  line-height: 1.95;
  color: var(--c-text);
}

/* =========================================
   PRODUCT
   ========================================= */
.product { background: var(--c-bg); }
.product-card {
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: 60px;
  background: linear-gradient(135deg, #fffbea 0%, #fff5cc 100%);
  border-radius: 16px;
  padding: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.product-card::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255, 193, 7, 0.25) 0%, transparent 70%);
}
.product-visual { position: relative; }
.product-visual-main {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}
.product-info { position: relative; z-index: 1; }
.product-head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 22px;
}
.product-icon {
  flex-shrink: 0;
  width: 88px;
  height: 88px;
  background: #fff;
  border-radius: 20px;
  padding: 6px;
  box-shadow: var(--shadow-md);
}
.product-head-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.product-tag {
  display: inline-block;
  align-self: flex-start;
  background: var(--c-dark);
  color: #fff;
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.2em;
  padding: 6px 16px;
  border-radius: 999px;
}
.product-title {
  font-weight: 900;
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.2;
  color: var(--c-dark);
}
.product-sub {
  font-weight: 500;
  font-size: 16px;
  color: var(--c-primary-dark);
  margin-bottom: 24px;
}
.product-desc {
  font-size: 14.5px;
  line-height: 2;
  color: var(--c-text);
  margin-bottom: 32px;
}
.product-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.product-meta > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  font-size: 14px;
}
.product-meta-label {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--c-muted);
}

/* =========================================
   COMPANY
   ========================================= */
.company { background: var(--c-bg-alt); }
.company-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}
.company-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.company-table th,
.company-table td {
  text-align: left;
  padding: 22px 28px;
  border-bottom: 1px solid var(--c-line);
  font-size: 14.5px;
  line-height: 1.85;
  vertical-align: top;
}
.company-table tr:last-child th,
.company-table tr:last-child td { border-bottom: none; }
.company-table th {
  width: 30%;
  font-weight: 700;
  color: var(--c-dark);
  background: #fafafa;
}
.company-table td a {
  color: var(--c-primary-dark);
  border-bottom: 1px solid var(--c-primary-dark);
}
.company-table td a:hover { color: var(--c-primary); }
.t-en {
  font-family: var(--font-en);
  font-size: 13px;
  color: var(--c-muted);
}
.t-kana {
  font-size: 12px;
  color: var(--c-muted);
}

.company-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.company-block {
  background: #fff;
  padding: 28px 28px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}
.company-block-title {
  font-weight: 700;
  font-size: 16px;
  color: var(--c-dark);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--c-primary);
  position: relative;
}
.company-list li {
  padding: 8px 0 8px 18px;
  font-size: 14px;
  color: var(--c-text);
  position: relative;
}
.company-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 18px;
  width: 6px; height: 6px;
  background: var(--c-primary);
  border-radius: 50%;
}

/* =========================================
   ACCESS
   ========================================= */
.access { background: var(--c-bg); }
.access-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.access-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.access-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.access-name {
  font-weight: 700;
  font-size: 22px;
  color: var(--c-dark);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--c-primary);
}
.access-zip {
  font-family: var(--font-en);
  font-size: 14px;
  color: var(--c-muted);
  margin-bottom: 8px;
}
.access-address {
  font-size: 16px;
  line-height: 1.8;
  color: var(--c-dark);
  margin-bottom: 28px;
}
.access-dl {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 8px 20px;
  margin-bottom: 32px;
  padding: 20px 0;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
.access-dl dt {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--c-muted);
  align-self: center;
}
.access-dl dd {
  font-size: 16px;
  color: var(--c-dark);
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  transition: all 0.3s var(--ease);
  cursor: pointer;
}
.btn-primary {
  background: var(--c-primary);
  color: var(--c-dark);
}
.btn-primary:hover {
  background: var(--c-primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(255, 193, 7, 0.4);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--c-dark);
  color: var(--c-dark);
}
.btn-outline:hover {
  background: var(--c-dark);
  color: #fff;
  transform: translateY(-3px);
}
.btn-lg {
  flex-direction: column;
  align-items: center;
  padding: 18px 40px;
  gap: 4px;
  min-width: 280px;
}
.btn-sub {
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.15em;
  opacity: 0.8;
}
.btn-main {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.03em;
}

/* =========================================
   CONTACT
   ========================================= */
.contact {
  background: linear-gradient(135deg, #1d1d1f 0%, #2a2a30 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255, 193, 7, 0.1) 0%, transparent 70%);
}
.contact-inner { position: relative; z-index: 1; }
.contact-symbol {
  width: 72px;
  margin: 0 auto 28px;
  opacity: 0.95;
}
.contact-title {
  font-weight: 700;
  font-size: clamp(24px, 3.5vw, 38px);
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}
.contact-desc {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 48px;
}
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.contact .btn-outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}
.contact .btn-outline:hover {
  background: #fff;
  color: var(--c-dark);
  border-color: #fff;
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  background: #0d0d12;
  color: rgba(255, 255, 255, 0.8);
  padding: 70px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
}
.footer-brand img {
  height: 36px;
  margin-bottom: 20px;
}
.footer-tagline {
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
}
.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
}
.footer-cols h4 {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--c-primary);
  margin-bottom: 18px;
}
.footer-cols ul li {
  font-size: 13.5px;
  line-height: 1.9;
  padding: 4px 0;
}
.footer-cols ul a:hover { color: var(--c-primary); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  text-align: center;
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
}

/* =========================================
   FADE-IN ANIMATION
   ========================================= */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 900px) {
  .section { padding: 80px 0; }
  .section-head { margin-bottom: 40px; }

  .hamburger { display: block; }
  .nav {
    position: fixed;
    top: 0; right: -100%;
    width: 80%; max-width: 320px;
    height: 100vh;
    background: #fff;
    padding: 90px 30px 30px;
    transition: right 0.4s var(--ease);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
  }
  .nav.is-open { right: 0; }
  .nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .nav ul li {
    width: 100%;
    border-bottom: 1px solid var(--c-line);
  }
  .nav a {
    color: var(--c-dark);
    text-shadow: none;
    padding: 18px 0;
    display: block;
    width: 100%;
  }
  .nav a::after { display: none; }
  .nav-cta {
    margin-top: 16px;
    text-align: center;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .about-text { padding-right: 0; }

  .biz-card,
  .biz-card:nth-child(even) {
    grid-template-columns: 1fr;
  }
  .biz-card:nth-child(even) .biz-card-img { order: 0; }
  .biz-card:nth-child(even) .biz-card-body { order: 0; }
  .biz-card-img { min-height: 220px; }
  .biz-card-body { padding: 36px 28px; }

  .product-card {
    grid-template-columns: 1fr;
    padding: 36px 24px;
    gap: 40px;
  }
  .product-icon {
    width: 72px;
    height: 72px;
    border-radius: 16px;
  }
  .product-head { gap: 16px; }

  .company-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .company-table th,
  .company-table td {
    padding: 16px 18px;
    font-size: 13.5px;
  }
  .company-table th { width: 35%; }

  .access-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-actions { flex-direction: column; align-items: center; }
  .btn-lg { width: 100%; max-width: 320px; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 540px) {
  .container { padding: 0 20px; }
  .header-inner { padding: 0 20px; }
  .section { padding: 64px 0; }
  .hero-content { padding: 100px 20px 80px; }
  .about-badge {
    left: 12px; bottom: 12px;
    padding: 16px 20px;
  }
  .about-badge-year { font-size: 28px; }
  .biz-card-body { padding: 30px 22px; }
  .biz-card-title { font-size: 22px; }
}
