/* ==========================================================================
   Applito Co., Ltd. Official Website Stylesheet
   Design: Chic & Trendy Dark Aesthetic (High Performance & Instant Loading)
   ========================================================================== */

/* --- CSS Variables / Design Tokens --- */
:root {
  --bg-primary: #07090e;
  --bg-secondary: #0d121f;
  --bg-surface: rgba(16, 23, 38, 0.82);
  --bg-surface-hover: rgba(24, 34, 56, 0.9);
  
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-focus: rgba(0, 240, 255, 0.4);
  --border-glow: rgba(59, 130, 246, 0.3);

  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  --accent-cyan: #00f0ff;
  --accent-blue: #3b82f6;
  --accent-indigo: #6366f1;
  --accent-gradient: linear-gradient(135deg, #00f0ff 0%, #3b82f6 50%, #6366f1 100%);
  --accent-glow: 0 0 20px rgba(0, 240, 255, 0.2);

  /* 高速化フォントスタック: OSネイティブの高品質フォントを最優先 (ダウンロード待ちゼロ) */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px -6px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 16px 36px -10px rgba(0, 0, 0, 0.6);

  --transition-fast: 0.18s ease-out;
  --transition-normal: 0.3s ease-out;
}

/* --- Base & Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
}

body {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  width: 100%;
  line-height: 1.7;
  word-break: break-word;
  background-color: var(--bg-primary);
}

/* --- 軽量アンビエントグラデーション (filter:blurを排除し、GPU負荷ゼロで高速描画) --- */
.ambient-glow {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
  will-change: transform;
}

.glow-1 {
  top: -100px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.12) 0%, rgba(59, 130, 246, 0.05) 45%, transparent 70%);
}

.glow-2 {
  top: 35%;
  left: -120px;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, rgba(99, 102, 241, 0.04) 50%, transparent 70%);
}

.glow-3 {
  bottom: 0;
  right: -100px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
}

.grid-overlay {
  position: fixed;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

/* --- Layout Container --- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* --- Typography Utilities --- */
.gradient-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

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

.text-accent {
  color: var(--accent-cyan);
}

/* --- Glassmorphism Card System (スマホGPUに優しい最適化設定) --- */
.glass-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), border-color var(--transition-normal);
}

@supports (backdrop-filter: blur(12px)) or (-webkit-backdrop-filter: blur(12px)) {
  .glass-card {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(16, 23, 38, 0.75);
  }
}

.glass-card:hover {
  border-color: rgba(0, 240, 255, 0.25);
  transform: translateY(-2px);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent-gradient);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 240, 255, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(0, 240, 255, 0.35);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border-subtle);
  color: var(--text-primary);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

/* --- Site Header --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background-color var(--transition-fast), border-color var(--transition-fast), padding var(--transition-fast);
}

.site-header.scrolled {
  background-color: rgba(7, 9, 14, 0.92);
  border-bottom: 1px solid var(--border-subtle);
  padding: 12px 0;
}

@supports (backdrop-filter: blur(12px)) or (-webkit-backdrop-filter: blur(12px)) {
  .site-header.scrolled {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background-color: rgba(7, 9, 14, 0.85);
  }
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-mark.sm svg {
  width: 20px;
  height: 20px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.company-en {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
  line-height: 1.1;
}

.company-jp {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.06em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 28px;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.nav-link:hover {
  color: var(--text-primary);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

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

/* --- Hero Section --- */
.hero-section {
  padding-top: 140px;
  padding-bottom: 80px;
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.25);
  margin-bottom: 24px;
}

.badge-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-cyan);
}

.badge-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-cyan);
  letter-spacing: 0.03em;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  word-break: break-word;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.hero-highlights {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  flex-wrap: wrap;
}

.highlight-item {
  display: flex;
  flex-direction: column;
}

.highlight-num {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
}

.highlight-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.highlight-divider {
  width: 1px;
  height: 32px;
  background: var(--border-subtle);
}

/* --- Hero Visual Graphics --- */
.hero-visual {
  position: relative;
  width: 100%;
}

.tech-card-wrapper {
  position: relative;
  width: 100%;
}

.main-tech-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(13, 18, 31, 0.85);
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 16px;
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot.red { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green { background: #10b981; }

.card-title-bar {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.badge-status {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 8px;
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border-radius: 4px;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.hero-feature-boxes {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.h-feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.h-feature-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(0, 240, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  flex-shrink: 0;
}

.h-feature-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffffff;
}

.h-feature-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.metric-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
}

.metric-title {
  font-size: 0.65rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.metric-val {
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
}

/* --- Common Section Styles --- */
.section {
  padding: 90px 0;
  position: relative;
  z-index: 1;
}

.section-header {
  margin-bottom: 48px;
}

.section-subtitle {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent-cyan);
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: #ffffff;
  word-break: break-word;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.title-underline {
  width: 50px;
  height: 3px;
  background: var(--accent-gradient);
  border-radius: 2px;
  margin: 18px auto 0;
}

/* --- About Section --- */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about-card {
  padding: 32px 24px;
}

.card-symbol {
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 14px;
  line-height: 1;
}

.about-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ffffff;
}

.about-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* --- Services Section --- */
.services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-item {
  padding: 32px 28px;
  display: flex;
  gap: 20px;
}

.service-icon-box {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: var(--radius-md);
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
}

.service-content {
  flex: 1;
  min-width: 0;
}

.service-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.service-number {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent-cyan);
}

.service-tag {
  font-size: 0.72rem;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
}

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
  word-break: break-word;
}

.service-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.7;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.service-features li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-features li span {
  color: var(--accent-cyan);
  font-weight: 700;
}

/* --- Strengths Section --- */
.strengths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.strength-card {
  padding: 32px 24px;
  text-align: left;
  border-left: 3px solid transparent;
}

.strength-card:hover {
  border-left-color: var(--accent-cyan);
}

.strength-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.15);
  margin-bottom: 10px;
}

.strength-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ffffff;
}

.strength-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* --- Company Section --- */
.company-layout-single {
  max-width: 920px;
  margin: 0 auto;
  width: 100%;
}

.company-table-wrapper {
  padding: 36px 40px;
  width: 100%;
}

.company-table {
  width: 100%;
  border-collapse: collapse;
}

.company-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.company-table tr:last-child {
  border-bottom: none;
}

.company-table th {
  text-align: left;
  padding: 16px 20px 16px 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
  width: 180px;
  vertical-align: top;
  white-space: nowrap;
}

.company-table td {
  padding: 16px 0;
  font-size: 0.95rem;
  color: var(--text-primary);
  line-height: 1.7;
  word-break: break-word;
}

.purpose-list {
  padding-left: 18px;
  margin: 0;
}

.purpose-list li {
  margin-bottom: 8px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.inline-link {
  color: var(--accent-cyan);
  text-decoration: none;
}

.inline-link:hover {
  text-decoration: underline;
  color: #ffffff;
}

.highlight-contact {
  font-weight: 700;
  font-size: 1.05rem;
}

/* --- Footer --- */
.site-footer {
  background: #04060a;
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 36px;
  position: relative;
  z-index: 1;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-brand-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
}

.footer-tagline {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-contact-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
}

.contact-lbl {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent-cyan);
}

.contact-val {
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
}

.contact-val:hover {
  color: var(--accent-cyan);
}

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

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent-cyan);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  text-decoration: none;
}

.footer-col a:hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- Scroll Animation (高速かつ滑らか) --- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  will-change: opacity, transform;
}

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

/* --- Responsive Media Queries (Mobile Fast Optimization) --- */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .services-list {
    grid-template-columns: 1fr;
  }

  .about-grid, .strengths-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  html, body {
    width: 100vw;
    overflow-x: hidden;
  }

  .container {
    padding: 0 18px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  /* ナビゲーション */
  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: rgba(10, 15, 26, 0.98);
    flex-direction: column;
    justify-content: center;
    padding: 36px 24px;
    transition: right var(--transition-fast);
    border-left: 1px solid var(--border-subtle);
    z-index: 1000;
  }

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

  .nav-list {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    margin-bottom: 28px;
  }

  .nav-link {
    font-size: 1.1rem;
  }

  /* ヒーローセクション */
  .hero-section {
    padding-top: 100px;
    padding-bottom: 50px;
    min-height: auto;
  }

  .hero-title {
    font-size: 1.9rem;
    line-height: 1.35;
    margin-bottom: 16px;
  }

  .hero-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-highlights {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .highlight-divider {
    display: none;
  }

  .main-tech-card {
    padding: 18px;
  }

  /* セクション共通 */
  .section {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 32px;
  }

  .section-title {
    font-size: 1.7rem;
  }

  /* サービス・アバウト・強みカード */
  .service-item {
    flex-direction: column;
    padding: 24px 18px;
    gap: 16px;
  }

  .service-icon-box {
    width: 48px;
    height: 48px;
    min-width: 48px;
  }

  .about-card, .strength-card {
    padding: 24px 18px;
  }

  /* 会社概要テーブル */
  .company-table-wrapper {
    padding: 24px 18px;
  }

  .company-table, 
  .company-table tbody, 
  .company-table tr, 
  .company-table th, 
  .company-table td {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }

  .company-table tr {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .company-table tr:first-child {
    padding-top: 0;
  }

  .company-table th {
    padding: 0 0 6px 0;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--accent-cyan);
    letter-spacing: 0.03em;
  }

  .company-table td {
    padding: 0;
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .purpose-list {
    padding-left: 16px;
  }

  .purpose-list li {
    font-size: 0.85rem;
  }

  /* フッター */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 30px;
  }

  .footer-contact-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .contact-pill {
    width: 100%;
    justify-content: space-between;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
