/*
Theme Name: Insight Box
Theme URI: https://banso.tokyo/
Author: バンソウ
Author URI: https://banso.tokyo/
Description: Insight Box の静的サイトをWordPressテーマ化したものです。
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: insightbox
*/

/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Poppins:wght@400;500;600;700&display=swap");

:root {
  --font-size: 14px;
  --insight-main: #3E4BFF;
  --insight-accent: #FF6B00;
  --insight-text: #444444;
  --insight-bg: #FFFFFF;
  --insight-gray: #F8F9FA;
}

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

html {
  font-size: var(--font-size);
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--insight-text);
  background-color: var(--insight-bg);
  line-height: 1.5;
}

.font-heading {
  font-family: 'Poppins', sans-serif;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s;
  padding: 1.5rem 0;
  background-color: transparent;
}

nav.scrolled {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  padding: 0.75rem 0;
}

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

nav .logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--insight-main);
  text-decoration: none;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
  transition: color 0.2s;
}

nav .logo:hover {
  color: var(--insight-accent);
}

nav .logo:focus {
  outline: 2px solid var(--insight-main);
  outline-offset: 2px;
}

nav ul {
  display: none;
  list-style: none;
  gap: 2rem;
}
nav.active {
  background-color: white;
  width: 100vw;
  height: 100vh;
}
nav.active ul {
  display: block;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 62px;
  left: 0;
  z-index: 100;
  padding: 2rem;
}

@media (min-width: 768px) {
  nav ul {
    display: flex;
  }
}

nav ul button {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--insight-text);
  transition: color 0.2s;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
}

nav ul button:hover {
  color: var(--insight-main);
}

nav ul button.active {
  color: var(--insight-main);
}

nav ul button:focus {
  outline: 2px solid var(--insight-main);
  outline-offset: 2px;
}

.mobile-menu-button {
  display: block;
  padding: 0.5rem;
  color: var(--insight-text);
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 0.375rem;
}

@media (min-width: 768px) {
  .mobile-menu-button {
    display: none;
  }
}

.mobile-menu-button:hover {
  color: var(--insight-main);
}

.mobile-menu-button:focus {
  outline: 2px solid var(--insight-main);
  outline-offset: 2px;
}

/* Hero Section */
#hero {
  min-height: 100vh;
  background-color: white;
  display: flex;
  align-items: center;
  padding-top: 4rem;
  padding-bottom: 2rem;
}

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

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .hero-left {
    aspect-ratio: 940/600;
    gap: 0;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-headline {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-headline h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--insight-text);
  line-height: 1.625;
}

@media (min-width: 768px) {
  .hero-headline h1 {
    font-size: 1.875rem;
  }
}

@media (min-width: 1024px) {
  .hero-headline h1 {
    font-size: 2.25rem;
  }
}

.hero-headline h1 .text-main {
  color: var(--insight-main);
}

.hero-headline h1 .text-accent {
  color: var(--insight-accent);
}

.hero-headline p {
  font-size: 1.125rem;
  color: rgba(68, 68, 68, 0.7);
  line-height: 1.625;
  max-width: 36rem;
}

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

.hero-point {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-point-dot {
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--insight-main);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-point span {
  color: rgba(68, 68, 68, 0.8);
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-top: 0;
}

@media (min-width: 640px) {
  .hero-cta {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .hero-cta {
    padding-top: 1rem;
  }
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--insight-main);
  color: white;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  font-family: 'Inter', sans-serif;
}

.cta-button:hover {
  background-color: rgba(62, 75, 255, 0.9);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-0.125rem);
}

.cta-button:focus {
  outline: 2px solid var(--insight-main);
  outline-offset: 2px;
}

.cta-button svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.2s;
}

.cta-button:hover svg {
  transform: translateX(0.25rem);
}

.hero-right {
  display: flex;
  justify-content: center;
}

@media (min-width: 1024px) {
  .hero-right {
    justify-content: flex-end;
  }
}

.hero-image-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  aspect-ratio: 940/600;
}

.hero-image-bg-1 {
  position: absolute;
  top: -1rem;
  left: -1rem;
  width: 6rem;
  height: 6rem;
  background-color: rgba(62, 75, 255, 0.1);
  border-radius: 50%;
  filter: blur(40px);
}

.hero-image-bg-2 {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 8rem;
  height: 8rem;
  background-color: rgba(255, 107, 0, 0.1);
  border-radius: 50%;
  filter: blur(40px);
}

.hero-image-main {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom right, rgba(62, 75, 255, 0.05), rgba(255, 255, 255, 1), rgba(255, 107, 0, 0.05));
  border-radius: 1.5rem;
  border: 1px solid rgba(62, 75, 255, 0.1);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hero-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Challenge Section */
#challenge {
  padding: 6rem 0;
  background: linear-gradient(to bottom, white, rgba(248, 250, 252, 0.3));
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: rgb(15, 23, 42);
  margin-bottom: 1.5rem;
  line-height: 1.25;
}

@media (min-width: 768px) {
  .section-header h2 {
    font-size: 3rem;
  }
}

.section-header h2 span {
  display: block;
  color: var(--insight-main);
}

.section-header p {
  font-size: 1.25rem;
  color: rgb(71, 85, 105);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.625;
}

.challenge-desktop {
  display: none;
}

@media (min-width: 1024px) {
  .challenge-desktop {
    display: block;
  }
}

.challenge-mobile {
  display: block;
}

@media (min-width: 1024px) {
  .challenge-mobile {
    display: none;
  }
}

.challenge-grid-header {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.challenge-header-left {
  grid-column: span 5;
}

.challenge-header-middle {
  grid-column: span 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.challenge-header-middle-line {
  width: 1px;
  height: 4rem;
  background: linear-gradient(to bottom, rgb(226, 232, 240), var(--insight-main), rgb(226, 232, 240));
}

.challenge-header-right {
  grid-column: span 5;
}

.challenge-header-content {
  text-align: center;
  padding: 2rem 0;
}

.challenge-header-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: rgb(51, 65, 85);
  margin-bottom: 0.5rem;
}

.challenge-header-content .underline {
  width: 4rem;
  height: 2px;
  background-color: rgb(203, 213, 225);
  margin: 0 auto;
}

.challenge-header-content .underline-main {
  background-color: var(--insight-main);
}

.challenge-items {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.challenge-item {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
  align-items: center;
}

.challenge-box-left {
  grid-column: span 5;
}

.challenge-box-middle {
  grid-column: span 2;
  display: flex;
  justify-content: center;
}

.challenge-box-right {
  grid-column: span 5;
}

.challenge-box {
  background-color: white;
  border: 1px solid rgb(226, 232, 240);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  height: 100%;
}

.challenge-box:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border-color: rgb(203, 213, 225);
}

.challenge-box-content {
  display: flex;
  align-items: start;
  gap: 1rem;
}

.challenge-number {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background-color: rgb(241, 245, 249);
  color: rgb(100, 116, 139);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 0.25rem;
}

.challenge-number-active {
  background-color: var(--insight-main);
  color: white;
}

.challenge-text {
  flex: 1;
}

.challenge-text h4 {
  font-weight: 600;
  font-size: 1.25rem;
  color: rgb(15, 23, 42);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.challenge-text p {
  color: rgb(71, 85, 105);
  line-height: 1.625;
}

.solution-box {
  background: linear-gradient(to bottom right, rgba(62, 75, 255, 0.05), rgba(62, 75, 255, 0.1));
  border: 1px solid rgba(62, 75, 255, 0.2);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  height: 100%;
}

.solution-box:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border-color: rgba(62, 75, 255, 0.3);
}

.solution-box .challenge-text p {
  color: rgb(51, 65, 85);
}

.challenge-connection {
  position: relative;
  display: flex;
  align-items: center;
}

.challenge-connection-line {
  width: 4rem;
  height: 1px;
  background: linear-gradient(to right, rgb(203, 213, 225), var(--insight-main));
}

.challenge-connection-dot-1 {
  position: absolute;
  right: 0;
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--insight-main);
  border-radius: 50%;
  transform: translateX(0.25rem);
}

.challenge-connection-dot-2 {
  position: absolute;
  right: 0;
  width: 1rem;
  height: 1rem;
  border: 2px solid var(--insight-main);
  border-radius: 50%;
  background-color: white;
  transform: translateX(0.5rem);
  transition: transform 0.3s;
}

.challenge-item:hover .challenge-connection-dot-2 {
  transform: translateX(0.5rem) scale(1.1);
}

/* Mobile Challenge */
.challenge-mobile-items {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.challenge-mobile-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.challenge-mobile-box {
  background-color: white;
  border: 1px solid rgb(226, 232, 240);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.challenge-mobile-solution {
  background: linear-gradient(to bottom right, rgba(62, 75, 255, 0.05), rgba(62, 75, 255, 0.1));
  border: 1px solid rgba(62, 75, 255, 0.2);
}

.challenge-mobile-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgb(100, 116, 139);
  margin-bottom: 0.5rem;
}

.challenge-mobile-label-solution {
  color: var(--insight-main);
}

.challenge-mobile-arrow {
  display: flex;
  justify-content: center;
}

.challenge-mobile-arrow-line {
  position: relative;
  width: 1px;
  height: 2rem;
  background: linear-gradient(to bottom, rgb(203, 213, 225), var(--insight-main));
}

.challenge-mobile-arrow-tip {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(0.25rem) rotate(45deg);
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--insight-main);
}

.challenge-bottom-cta {
  text-align: center;
  margin-top: 5rem;
}

/* Pricing Section */
#pricing {
  padding: 6rem 0;
  background: linear-gradient(to bottom right, rgb(248, 250, 252), white, rgba(248, 250, 252, 0.5));
}

.pricing-container {
  max-width: 42rem;
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  background-color: white;
  border-radius: 1.5rem;
  border: 1px solid rgb(226, 232, 240);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: box-shadow 0.5s;
}

.pricing-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.pricing-card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(62, 75, 255, 0.05), transparent, rgba(255, 107, 0, 0.05));
  opacity: 0;
  transition: opacity 0.5s;
}

.pricing-card:hover .pricing-card-bg {
  opacity: 1;
}

.pricing-card-content {
  position: relative;
  z-index: 10;
  padding: 3rem;
}

.pricing-header {
  text-align: center;
  margin-bottom: 3rem;
}

.pricing-header h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: rgb(15, 23, 42);
  margin-bottom: 2rem;
}

.pricing-price {
  margin-bottom: 2rem;
}

.pricing-price-main {
  text-align: center;
  margin-bottom: 1rem;
}

.pricing-price-amount {
  font-size: 2.25rem;
  font-weight: 700;
  color: rgb(15, 23, 42);
  margin-bottom: 0.5rem;
}

.pricing-price-tax {
  font-size: 1.125rem;
  font-weight: 500;
  color: rgb(71, 85, 105);
  margin-left: 0.5rem;
}

.pricing-price-period {
  color: rgb(100, 116, 139);
  text-align: center;
}

.pricing-details {
  margin-bottom: 2.5rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5rem;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.pricing-section-title {
  font-weight: 600;
  font-size: 1.125rem;
  color: rgb(15, 23, 42);
  margin-bottom: 1.5rem;
  text-align: center;
}

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

.pricing-list-item {
  display: flex;
  align-items: start;
  gap: 0.75rem;
}

.pricing-list-icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  background-color: var(--insight-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.125rem;
}

.pricing-list-icon-accent {
  background-color: var(--insight-accent);
}

.pricing-list-icon svg {
  width: 0.75rem;
  height: 0.75rem;
  color: white;
}

.pricing-list-text {
  color: rgb(51, 65, 85);
  line-height: 1.625;
}

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

.pricing-features {
  margin-top: 4rem;
}

.pricing-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
}

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

.pricing-feature {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pricing-feature-icon {
  width: 3rem;
  height: 3rem;
  background-color: rgba(62, 75, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.pricing-feature-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--insight-main);
}

.pricing-feature h4 {
  font-weight: 600;
  color: rgb(15, 23, 42);
}

.pricing-feature p {
  color: rgb(71, 85, 105);
  font-size: 0.875rem;
}

/* Gallery Section */
#gallery {
  padding: 5rem 0;
  background-color: var(--insight-gray);
}

.gallery-content {
  border-radius: 1rem;
  background-color: white;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.gallery-inner {
  padding: 2rem;
}

@media (min-width: 1024px) {
  .gallery-inner {
    padding: 3rem;
  }
}

.gallery-frame {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  background-color: white;
  border: 1px solid rgb(229, 231, 235);
}

@media (min-width: 1024px) {
  .gallery-frame {
    height: 600px;
  }
}

.gallery-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Workflow Section */
#workflow {
  padding: 5rem 0;
  background-color: white;
}

.workflow-desktop {
  display: none;
  margin-bottom: 4rem;
}

@media (min-width: 1024px) {
  .workflow-desktop {
    display: block;
  }
}

.workflow-mobile {
  display: block;
  margin-bottom: 4rem;
}

@media (min-width: 1024px) {
  .workflow-mobile {
    display: none;
  }
}

.workflow-timeline-container {
  position: relative;
}

.workflow-timeline-line {
  position: absolute;
  top: 5rem;
  left: 0;
  right: 0;
  height: 2px;
  background-color: rgba(62, 75, 255, 0.2);
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.workflow-step {
  position: relative;
}

.workflow-step-dot {
  position: absolute;
  top: 4.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1rem;
  height: 1rem;
  background-color: var(--insight-main);
  border-radius: 50%;
  border: 4px solid white;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.workflow-step-content {
  text-align: center;
  padding-top: 7rem;
}

.workflow-card {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 1.5rem;
  border: 1px solid rgb(229, 231, 235);
  padding: 2rem;
  min-height: 240px;
  gap: 0.75rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.workflow-role-tag {
  position: absolute;
  left: -0.5rem;
  top: -0.5rem;
  color: white;
  font-size: 0.625rem;
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
}

.workflow-role-tag-gray {
  background-color: rgb(75, 85, 99);
}

.workflow-role-tag-indigo {
  background-color: rgb(79, 70, 229);
}

.workflow-role-tag-orange {
  background-color: rgb(249, 115, 22);
}

.workflow-step-number {
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgb(209, 213, 219);
  font-size: 0.75rem;
}

.workflow-step-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--insight-text);
  text-align: center;
  white-space: nowrap;
  padding: 0 0.5rem;
}

.workflow-step-desc {
  font-size: 0.875rem;
  color: rgba(68, 68, 68, 0.7);
  text-align: center;
  line-height: 1.625;
  flex: 1;
  padding: 0 0.5rem;
}

.workflow-badge-container {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.workflow-badge {
  font-size: 0.625rem;
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
}

.workflow-badge-indigo {
  background-color: rgb(238, 242, 255);
  color: rgb(79, 70, 229);
}

.workflow-badge-gray {
  background-color: rgb(243, 244, 246);
  color: rgb(75, 85, 99);
}

/* Mobile Workflow */
.workflow-mobile-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.workflow-mobile-item {
  position: relative;
}

.workflow-mobile-line {
  position: absolute;
  left: 2rem;
  top: 4rem;
  width: 2px;
  height: 4rem;
  background-color: rgba(62, 75, 255, 0.2);
}

.workflow-mobile-content {
  display: flex;
  align-items: start;
  gap: 1rem;
}

.workflow-mobile-dot {
  width: 3rem;
  height: 3rem;
  background-color: var(--insight-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.workflow-mobile-card {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  border-radius: 1.5rem;
  border: 1px solid rgb(229, 231, 235);
  padding: 1.5rem;
  gap: 0.5rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.workflow-mobile-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--insight-text);
  white-space: nowrap;
}

.workflow-mobile-desc {
  color: rgba(68, 68, 68, 0.7);
  line-height: 1.625;
  flex: 1;
}

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

.workflow-footer-note {
  color: rgba(68, 68, 68, 0.6);
  margin-bottom: 1.5rem;
}

/* Footer */
footer {
  padding: 0 2em;
  background-color: var(--insight-text);
  color: white;
}
footer a { color: white; }
.footer-content {
  padding: 3rem 0;
}

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

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr;
  }
}

.footer-logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-company-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.footer-company-link {
  color: white;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-company-link:hover {
  color: var(--insight-main);
}

.footer-company-link:focus {
  outline: none;
  text-decoration: underline;
}

.footer-services h3 {
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-services ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-services a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-services a:hover {
  color: white;
}

.footer-services a:focus {
  outline: none;
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 3rem;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
  }
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .footer-copyright {
    margin-bottom: 0;
  }
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .footer-links {
    justify-content: flex-end;
  }
}

.footer-links button,
.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  padding: 0;
  font-size: 0.875rem;
  text-decoration: none;
}

.footer-links button:hover,
.footer-links a:hover {
  color: white;
}

.footer-links button:focus,
.footer-links a:focus {
  outline: none;
  text-decoration: underline;
}

/* Legal Pages */
.legal-page {
  min-height: 100vh;
  background-color: white;
}

.legal-content {
  max-width: 56rem;
  margin: 0 auto;
  padding: 5rem 1rem;
}

@media (min-width: 640px) {
  .legal-content {
    padding: 5rem 1.5rem;
  }
}

@media (min-width: 1024px) {
  .legal-content {
    padding: 5rem 2rem;
  }
}

.back-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border: 1px solid rgb(226, 232, 240);
  border-radius: 0.375rem;
  background-color: white;
  color: var(--insight-text);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 3rem;
  font-family: 'Inter', sans-serif;
}

.back-button:hover {
  background-color: rgb(248, 250, 252);
}

.back-button:focus {
  outline: 2px solid var(--insight-main);
  outline-offset: 2px;
}

.prose {
  max-width: none;
}

.prose h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--insight-text);
}

.prose h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  margin-top: 2rem;
  color: var(--insight-text);
}

.prose h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--insight-text);
}

.prose p {
  margin-bottom: 1rem;
  color: var(--insight-text);
  line-height: 1.75;
}

.prose ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.prose ul li {
  margin-bottom: 0.5rem;
  color: var(--insight-text);
}

.prose section {
  margin-bottom: 2rem;
}

.info-box {
  margin-bottom: 2rem;
  padding: 1rem;
  background-color: var(--insight-gray);
  border-radius: 0.5rem;
}

.info-box p {
  color: var(--insight-text);
  font-size: 0.875rem;
}

.divider {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgb(229, 231, 235);
}

.divider p {
  color: var(--insight-text);
  font-size: 0.875rem;
}

.legal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .legal-grid {
    grid-template-columns: 1fr 2fr;
  }
}

/* Utility Classes */
.hidden {
  display: none;
}

/* Page Content */
/* Legal Pages */
.page-content {
  min-height: 100vh;
  background-color: white;
}

.page-content-container {
  max-width: 56rem;
  margin: 0 auto;
  padding: 5rem 1rem;
}

@media (min-width: 640px) {
  .page-content-container {
    padding: 5rem 1.5rem;
  }
}

@media (min-width: 1024px) {
  .page-content-container {
    padding: 5rem 2rem;
  }
}



.page-content-body {
  max-width: none;
}

.page-content-body h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--insight-text);
}

.page-content-body h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  margin-top: 2rem;
  color: var(--insight-text);
}

.page-content-body h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--insight-text);
}

.page-content-body p {
  margin-bottom: 1rem;
  color: var(--insight-text);
  line-height: 1.75;
}

.page-content-body ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.page-content-body ul li {
  margin-bottom: 0.5rem;
  color: var(--insight-text);
}

.page-content-body section {
  margin-bottom: 2rem;
}

.archive-list li {
  padding: 1em 0;
}