/* =========================================================================
   Cafigla LLC. - Base Styles & Design Tokens
   ========================================================================= */

:root {
  /* Colors */
  --primary: #2C3E50;
  --accent: #3B82F6;
  --accent-light: #EFF6FF;
  --accent-dark: #1D4ED8;
  --text-main: #2C3E50;
  --text-muted: #64748B;
  --bg-color: #FFFFFF;
  --bg-light: #F8FAFC;
  --border: #E2E8F0;

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(226, 232, 240, 0.6);

  /* Typography */
  --font-display: 'DM Serif Display', 'Noto Serif JP', serif;
  --font-family: 'Noto Sans JP', sans-serif;

  /* Shadow & Transition */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 16px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06), 0 12px 32px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.08), 0 20px 48px rgba(0, 0, 0, 0.08);
  --transition: all 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  color: var(--text-main);
  background-color: var(--bg-color);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* =========================================================================
   Typography & Utilities
   ========================================================================= */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 0.5em;
  color: var(--primary);
}

h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.5em;
  color: var(--primary);
}

p {
  margin-bottom: 1rem;
}

.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.text-primary { color: var(--primary); }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }

.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.mt-6 { margin-top: 5rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }

.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-lg { max-width: 800px; }

/* =========================================================================
   Layout & Container
   ========================================================================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
}

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

#company.bg-light {
  background-color: var(--bg-light);
  background-image: radial-gradient(circle, #CBD5E1 1px, transparent 1px);
  background-size: 28px 28px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--accent);
  color: #fff;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
  background-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
  color: #fff;
}

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

.btn-outline:hover {
  background-color: var(--accent);
  color: #fff;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

/* Glass Panel */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  padding: 2.5rem;
}

/* =========================================================================
   Navigation
   ========================================================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.3s ease, border-color 0.3s ease;
  padding: 1rem 0;
}

.navbar.scrolled {
  padding: 0.5rem 0;
  background: #0f1c2e;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.brand-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.brand-name {
  font-weight: 700;
  font-size: 1.25rem;
  color: #FFFFFF;
  margin-left: 0.5rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: #FFFFFF;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
}

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

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

.btn-nav {
  padding: 0.5rem 1.2rem;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger .bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: #FFFFFF;
  transition: var(--transition);
}

/* =========================================================================
   Hero Section
   ========================================================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  background-color: #0f1c2e;
  position: relative;
  overflow: hidden;
}

.hero-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 800px;
  text-align: center;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 400;
  line-height: 1.08;
  margin-bottom: 1.5rem;
  color: #FFFFFF;
  letter-spacing: -0.01em;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid #FFFFFF;
  background-color: #FFFFFF;
  color: #0f1c2e;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
  text-decoration: none;
}

.btn-hero-primary:hover {
  background-color: transparent;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, 0.6);
  background-color: transparent;
  color: #FFFFFF;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
  text-decoration: none;
}

.btn-hero-outline:hover {
  border-color: #FFFFFF;
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* =========================================================================
   Wave Canvas (Hero SVG)
   ========================================================================= */
.wave-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

@keyframes waveFloat1 {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-22px); }
}
@keyframes waveFloat2 {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-14px); }
}
@keyframes waveFloat3 {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}

.wave-layer-1 {
  fill: rgba(59, 130, 246, 0.22);
  animation: waveFloat1 8s ease-in-out infinite;
}
.wave-layer-2 {
  fill: rgba(59, 130, 246, 0.14);
  animation: waveFloat2 11s ease-in-out infinite;
}
.wave-layer-3 {
  fill: rgba(59, 130, 246, 0.08);
  animation: waveFloat3 14s ease-in-out infinite;
}

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

.hero-content > * {
  animation: fadeInUp 0.65s ease forwards;
  opacity: 0;
}

.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.28s; }
.hero-content > *:nth-child(3) { animation-delay: 0.46s; }

/* =========================================================================
   Services Section
   ========================================================================= */
.section-title {
  margin-bottom: 4rem;
}

.section-title h2 {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  width: 40%;
  height: 2px;
  bottom: -10px;
  left: 30%;
  background-color: var(--accent);
  border-radius: 2px;
}

.service-card {
  margin-bottom: 5rem;
  transition: none;
}

.service-layout {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.service-layout.reverse {
  flex-direction: row-reverse;
}

.service-text {
  flex: 1;
}

.service-media {
  flex: 1;
}

.rounded-shadow {
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.rounded-shadow:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.service-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.service-heading {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.service-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.sub-heading {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary);
  border-left: 3px solid var(--accent);
  padding-left: 0.8rem;
}

/* Journey Grid */
.journey-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.journey-item {
  background: var(--bg-light);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.journey-item:hover {
  background: var(--bg-color);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.step-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(44, 62, 80, 0.05);
  position: absolute;
  top: -10px;
  right: 10px;
  z-index: 0;
}

.step-title {
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

/* Target List */
.target-list li {
  background: var(--bg-light);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  transition: var(--transition);
}

.target-list li:hover {
  background: #f0f4f8;
}

.target-role {
  display: block;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.2rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Pricing Table */
.table-wrapper {
  overflow-x: auto;
}

.styled-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.styled-table th, 
.styled-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.styled-table th {
  background-color: rgba(44, 62, 80, 0.03);
  font-weight: 600;
  color: var(--primary);
}

.styled-table tr:last-of-type td {
  border-bottom: none;
}

.styled-table tr:hover td {
  background-color: rgba(44, 62, 80, 0.01);
}

.pkg-name {
  font-weight: 700;
  color: var(--accent-dark);
}

/* =========================================================================
   Journey Timeline
   ========================================================================= */
.journey-timeline {
  overflow-x: auto;
  padding-bottom: 1rem;
}

.timeline-track {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  padding: 2rem 0 1rem;
}

@media (min-width: 769px) {
  .timeline-track {
    display: grid;
  }
}

.tl-step {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}

.tl-node {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--border);
  border: 3px solid var(--border);
  flex-shrink: 0;
  transition: background-color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  z-index: 1;
}

.tl-line {
  position: absolute;
  top: calc(50% - 1px);
  left: 10px;
  width: 100%;
  height: 2px;
  background-color: var(--border);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease, background-color 0.5s ease;
}

.js-timeline-trigger.active .tl-step:nth-child(1) .tl-node {
  background-color: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.5);
  transition-delay: 0.1s;
}
.js-timeline-trigger.active .tl-step:nth-child(1) .tl-line {
  transform: scaleX(1);
  background-color: var(--accent);
  transition-delay: 0.3s;
}
.js-timeline-trigger.active .tl-step:nth-child(2) .tl-node {
  background-color: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.5);
  transition-delay: 0.6s;
}
.js-timeline-trigger.active .tl-step:nth-child(2) .tl-line {
  transform: scaleX(1);
  background-color: var(--accent);
  transition-delay: 0.8s;
}
.js-timeline-trigger.active .tl-step:nth-child(3) .tl-node {
  background-color: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.5);
  transition-delay: 1.1s;
}
.js-timeline-trigger.active .tl-step:nth-child(3) .tl-line {
  transform: scaleX(1);
  background-color: var(--accent);
  transition-delay: 1.3s;
}
.js-timeline-trigger.active .tl-step:nth-child(4) .tl-node {
  background-color: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.5);
  transition-delay: 1.6s;
}

.tl-labels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.tl-label {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding-right: 0.5rem;
}

.tl-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  transition: color 0.4s ease;
}

.js-timeline-trigger.active .tl-labels .tl-label:nth-child(1) .tl-num { color: var(--accent); transition-delay: 0.1s; }
.js-timeline-trigger.active .tl-labels .tl-label:nth-child(2) .tl-num { color: var(--accent); transition-delay: 0.6s; }
.js-timeline-trigger.active .tl-labels .tl-label:nth-child(3) .tl-num { color: var(--accent); transition-delay: 1.1s; }
.js-timeline-trigger.active .tl-labels .tl-label:nth-child(4) .tl-num { color: var(--accent); transition-delay: 1.6s; }

.tl-phase {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
}

.tl-phase-ja {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.tl-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0;
  margin-top: 0.25rem;
}

/* Features List */
.features-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.check-icon {
  background: var(--accent);
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* =========================================================================
   Feature Cards (SERVICE 02)
   ========================================================================= */
.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.fc-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.fc-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0;
}

.fc-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

/* =========================================================================
   Company Section
   ========================================================================= */
.info-grid {
  display: grid;
  grid-template-columns: 120px 1fr;
  row-gap: 1.5rem;
  column-gap: 1rem;
  text-align: left;
}

.info-grid dt {
  font-weight: 600;
  color: var(--primary);
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding-bottom: 0.5rem;
}

.info-grid dd {
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  color: var(--text-muted);
}

.info-grid dt:last-of-type,
.info-grid dd:last-of-type {
  border-bottom: none;
}

.contact-link {
  color: var(--accent);
  font-weight: 500;
  transition: color 0.2s ease;
}

.contact-link:hover {
  text-decoration: underline;
}

.cta-heading {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

/* =========================================================================
   Footer
   ========================================================================= */
.footer {
  background-color: var(--primary);
  color: #fff;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo {
  height: 40px;
  filter: brightness(0) invert(1);
}

.footer-slogan {
  color: rgba(255,255,255,0.7);
}

.footer-copy {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  width: 100%;
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
}

/* =========================================================================
   Contact Form
   ========================================================================= */
.contact-form-wrapper {
  max-width: 560px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-main);
}

.required {
  color: #EF4444;
  margin-left: 2px;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-family);
  font-size: 0.95rem;
  color: var(--text-main);
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
}

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

.w-full {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
}

.contact-success {
  background: var(--accent-light);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  color: var(--accent-dark);
  line-height: 1.8;
  font-size: 0.95rem;
}

.contact-error {
  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: #DC2626;
}

/* =========================================================================
   Animations (Intersection Observer)
   ========================================================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* =========================================================================
   Responsive Media Queries
   ========================================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero-content > * {
    opacity: 1 !important;
  }
  .wave-layer {
    animation: none !important;
  }
  .tl-node,
  .tl-line {
    transition: none !important;
  }
}

@media (max-width: 992px) {
  .service-layout,
  .service-layout.reverse {
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 4rem 0;
  }
  
  .hamburger {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 60px; /* Adjust according to navbar height */
    left: -100%;
    flex-direction: column;
    background-color: var(--bg-color);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    padding: 2rem 0;
    gap: 1.5rem;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu .nav-link {
    color: var(--text-main);
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero-wrapper {
    flex-direction: column;
    text-align: center;
    margin-top: 2rem;
  }

  .hero-actions {
    justify-content: center;
  }
  

  .feature-cards {
    grid-template-columns: 1fr;
  }

  .info-grid {
    grid-template-columns: 100px 1fr;
  }
}

@media (max-width: 480px) {

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-actions .btn {
    width: 100%;
  }
  
  .info-grid {
    grid-template-columns: 1fr;
    row-gap: 0.5rem;
  }
  .info-grid dt {
    border-bottom: none;
    padding-bottom: 0;
    margin-top: 1rem;
  }
}
