/* 営業代行: RPOをベースに営業代行向けにカスタマイズ */
:root {
  --color-primary: #2563EB;
  --color-primary-dark: #1D4ED8;
  --color-secondary: #F59E0B;
  --color-dark: #1F2937;
  --color-text: #374151;
  --color-text-light: #6B7280;
  --color-bg-light: #F9FAFB;
  --color-white: #FFFFFF;
  --gradient-hero: linear-gradient(135deg, #1F2937 0%, #374151 100%);
  --spacing-xs: 0.5rem;
  --spacing-sm: 1.5rem;
  --spacing-md: 3rem;
  --spacing-lg: 6rem;
  --spacing-xl: 10rem;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
}

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

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--color-text);
  background-color: var(--color-white);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Outfit', 'Noto Sans JP', sans-serif;
  line-height: 1.4;
  color: var(--color-dark);
  letter-spacing: 0.02em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: var(--spacing-lg) 0;
}

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

.section-title {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-light);
  margin-bottom: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}

.header {
  padding: 1rem 0;
  background-color: var(--color-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.powered-by {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-light);
  font-weight: 500;
  font-size: 0.75rem;
}

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

.header nav a:not(.btn) {
  font-weight: 500;
  color: var(--color-text);
  font-size: 0.95rem;
}

.header nav a:not(.btn):hover {
  color: var(--color-primary);
}

.hero {
  position: relative;
  color: var(--color-white);
  padding: 6rem 0;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #2563eb 100%);
  z-index: 1;
  opacity: 0.75;
}

.hero-bg-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: slideshow 20s infinite;
  z-index: 0;
}

.hero-bg-slide:nth-child(1) {
  animation-delay: 0s;
  background-image: url('../rpo/hero_slide_1.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg-slide:nth-child(2) {
  animation-delay: 5s;
  background-image: url('../rpo/hero_slide_2.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg-slide:nth-child(3) {
  animation-delay: 10s;
  background-image: url('../rpo/hero_slide_3.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg-slide:nth-child(4) {
  animation-delay: 15s;
  background-image: url('../rpo/hero_slide_4.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@keyframes slideshow {
  0% { opacity: 0; }
  5% { opacity: 1; }
  25% { opacity: 1; }
  30% { opacity: 0; }
  100% { opacity: 0; }
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  color: var(--color-white);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6), 0 4px 40px rgba(0, 0, 0, 0.4);
}

.hero-title span {
  color: #FCD34D !important;
}

.hero-subtitle {
  font-size: 1.4rem;
  color: #CBD5E1;
  margin-bottom: 1rem;
  line-height: 1.6;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.7), 0 4px 30px rgba(0, 0, 0, 0.5);
}

.hero-subtagline {
  font-size: 1.1rem;
  color: #94A3B8;
  margin-bottom: 2.5rem;
  font-weight: 500;
}

.hero-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-benefit-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6), 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-bullet-icon {
  color: #FCD34D;
  font-size: 1.2rem;
}

.hero-cta {
  padding: 1.2rem 3rem;
  font-size: 1.3rem;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.hero-cta:hover {
  background: linear-gradient(135deg, #D97706 0%, #B45309 100%);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
}

.hero-note {
  font-size: 0.85rem;
  color: #94A3B8;
  font-style: italic;
}

.feature-icons-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  text-align: center;
}

.feature-icon-item {
  flex: 1 1 150px;
  max-width: 180px;
  padding: 1rem;
  transition: transform 0.3s ease;
}

.feature-icon-item:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.feature-icon-text {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-text);
}

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

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.problem-card {
  background: var(--color-white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.problem-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.problem-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.problem-icon .material-icons-round {
  color: var(--color-white);
  font-size: 2rem;
}

.problem-text {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-dark);
}

.problem-desc {
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.problem-solution-heading {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.problem-solution-sub {
  font-size: 1rem;
  color: var(--color-text-light);
  margin-bottom: 2.5rem;
}

.highlight-message {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.5;
  margin: 2.5rem auto 0;
  max-width: 700px;
}

.highlight-emphasis {
  color: var(--color-primary);
  background: linear-gradient(transparent 60%, rgba(37, 99, 235, 0.2) 60%);
  padding: 0 0.25rem;
  font-weight: 900;
}

.sp-only {
  display: none;
}

.compare-section {
  padding: 5rem 0;
}

.compare-table {
  max-width: 1000px;
  margin: 3rem auto 0;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.compare-row {
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  border-bottom: 1px solid #F3F4F6;
}

.compare-row:last-child {
  border-bottom: none;
}

.compare-header {
  background: var(--color-dark);
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
}

.compare-header .compare-old {
  background: #6B7280;
  color: white;
}

.compare-header .compare-new {
  background: var(--color-primary);
  color: white;
}

.compare-cell {
  padding: 1.8rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
}

.compare-label {
  font-weight: 700;
  background: #FAFAFA;
  color: var(--color-dark);
  border-right: 1px solid #F3F4F6;
  font-size: 1.05rem;
}

.compare-old {
  background: #FEF3F2;
  color: #B45309;
}

.compare-new {
  background: #EFF6FF;
  color: #1D4ED8;
  font-weight: 600;
  font-size: 1.05rem;
}

.compare-icon-bad {
  color: #F59E0B;
  font-weight: 900;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.compare-icon-good {
  color: #2563EB;
  font-weight: 900;
  font-size: 1.5rem;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .compare-table {
    background: transparent;
    box-shadow: none;
  }
  .compare-header {
    display: none !important;
  }
  .compare-row {
    display: block;
    background: white;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #F3F4F6;
  }
  .compare-label {
    display: block;
    padding: 1rem;
    background: white;
    border-right: none;
    border-bottom: 1px solid #F3F4F6;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    color: var(--color-dark);
  }
  .compare-old,
  .compare-new {
    display: block;
    width: 100%;
    position: relative;
    padding: 0 !important;
  }
  .compare-old::before {
    content: "自社営業";
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #6B7280;
    background: rgba(107, 114, 128, 0.1);
    padding: 0.2rem 0.6rem;
    border-radius: 1rem;
    margin-bottom: 0.8rem;
    width: fit-content;
  }
  .compare-new::before {
    content: "Unitas営業代行";
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-primary);
    background: rgba(37, 99, 235, 0.1);
    padding: 0.2rem 0.6rem;
    border-radius: 1rem;
    margin-bottom: 0.8rem;
    width: fit-content;
  }
  .compare-row > div:not(.compare-label) {
    display: block;
    width: 100%;
    box-sizing: border-box;
    border-bottom: none;
  }
  .compare-cell {
    padding: 1rem;
    font-size: 0.95rem;
    justify-content: flex-start;
    text-align: left;
    line-height: 1.6;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
  }
  .compare-cell::before {
    flex-basis: 100%;
  }
  .compare-old {
    background: #FAFAFA;
    border-bottom: 1px solid #F3F4F6;
  }
  .compare-new {
    background: #EFF6FF;
    font-size: 0.95rem;
    font-weight: 600;
  }
  .compare-icon-bad,
  .compare-icon-good {
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-right: 0.25rem;
  }
}

.solution {
  background: var(--color-white);
}

.solution-highlight {
  margin-top: 3rem;
}

.step-flow {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  margin-top: 3rem;
}

.step-flow::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  z-index: 0;
}

.step-item {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.step-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-dark);
}

.step-desc {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.value-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.value-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-dark);
}

.value-icon {
  color: var(--color-primary);
  font-size: 1.8rem;
}

.value-card p {
  color: var(--color-text);
  line-height: 1.7;
}

.value-props {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
  color: var(--color-white);
}

.value-props .value-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.value-props .value-card h3 {
  color: var(--color-white);
  font-size: 1.3rem;
}

.value-props .value-card h3 .material-icons-round {
  color: #FCD34D;
}

.value-props .value-card p {
  color: #94A3B8;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.trust-card {
  background: var(--color-bg-light);
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: transform 0.3s ease;
}

.trust-card:hover {
  transform: translateY(-5px);
}

.trust-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--color-dark);
}

.trust-card h3 .material-icons-round {
  color: var(--color-primary);
  font-size: 1.8rem;
}

.trust-card p {
  color: var(--color-text);
  line-height: 1.7;
}

/* Testimonial Section */
.testimonial-section {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
  color: white;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.testimonial-company {
  font-weight: 700;
  color: #FCD34D;
}

.testimonial-role {
  font-size: 0.85rem;
  color: #94A3B8;
}

.testimonial-text {
  color: #E2E8F0;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.testimonial-result {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #10B981;
  font-weight: 700;
}

.testimonial-result .material-icons-round {
  font-size: 1.2rem;
}

.testimonial-result strong {
  font-size: 1.3rem;
}

.future-section {
  background: #F8FAFC;
}

.future-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.future-item {
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
}

.future-icon {
  color: var(--color-primary);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.future-text {
  font-weight: 700;
  color: var(--color-dark);
  margin: 0;
  font-size: 1rem;
}

.future-message {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--color-text);
  font-weight: 500;
  margin-top: 3rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.faq-item {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-dark);
  font-weight: 700;
}

.faq-icon {
  color: var(--color-primary);
  font-size: 1.5rem;
}

.faq-item p {
  color: var(--color-text);
  line-height: 1.7;
}

.cta-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, #1e40af 100%);
  color: var(--color-white);
  text-align: center;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-box {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-text {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 1;
  line-height: 1.8;
  font-weight: 500;
}

.cta-guarantee {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  margin-bottom: 2rem;
  font-weight: 600;
  white-space: nowrap;
  flex-wrap: nowrap;
}

.cta-guarantee .material-icons-round {
  color: #FCD34D;
}

.cta-button {
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  color: white;
  font-size: 1.2rem;
  padding: 1.2rem 4rem;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
  background: linear-gradient(135deg, #D97706 0%, #B45309 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.5);
}

.cta-note {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: #94A3B8;
}

.mission-section {
  background: white;
  position: relative;
  overflow: hidden;
}

.mission-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--color-primary);
  opacity: 1;
}

.mission-section .section-title {
  font-size: 2.8rem;
  line-height: 1.4;
  margin-bottom: 2rem;
  position: relative;
  padding-top: 2rem;
  color: var(--color-dark);
}

.mission-section p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--color-text);
  max-width: 700px;
  margin: 0 auto;
}

.mission-section p strong {
  color: var(--color-primary);
  font-weight: 700;
}

.mission-lead {
  font-size: 1.2rem !important;
  color: var(--color-text-light) !important;
  margin-bottom: 3rem !important;
}

.mission-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.stat-card {
  padding: 1rem;
  text-align: center;
  max-width: 320px;
  margin: 0 auto;
  width: 100%;
  background: transparent;
}

.stat-card:hover {
  transform: none;
  box-shadow: none;
}

.stat-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 1.5rem;
}

.chart-container {
  position: relative;
  height: 200px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-desc {
  font-size: 0.95rem;
  color: #9CA3AF;
  line-height: 1.6;
  margin: 0;
}

.stat-desc strong {
  color: var(--color-primary);
  font-size: 1.1rem;
}

.banks-section {
  padding: 4rem 0;
}

.banks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin-top: 3rem;
  align-items: center;
  justify-items: center;
}

.banks-grid li {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: white;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
  min-height: 80px;
}

.banks-grid li:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.banks-grid img {
  max-width: 100%;
  height: auto;
  opacity: 0.8;
}

.image_set {
  display: grid !important;
  grid-template-columns: repeat(6, 1fr) !important;
  gap: 2rem !important;
  padding: 0 !important;
  margin-top: 3rem !important;
  align-items: center !important;
  justify-items: center !important;
  max-width: 1200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  list-style: none !important;
}

.image_set img {
  width: 140px !important;
  max-width: 140px !important;
  max-height: 100px !important;
  height: auto !important;
  object-fit: contain !important;
  opacity: 0.8 !important;
  padding: 1rem !important;
  background: white !important;
  border-radius: 8px !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05) !important;
  transition: transform 0.3s ease, opacity 0.3s ease !important;
  display: block !important;
}

.image_set img:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03) !important;
  opacity: 1 !important;
}

@media (max-width: 1024px) {
  .image_set {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.5rem !important;
  }
}

@media (max-width: 768px) {
  .image_set {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1rem !important;
  }
  .image_set img {
    width: 100px !important;
    max-width: 100px !important;
    max-height: 80px !important;
    padding: 0.75rem !important;
  }
}

@media (max-width: 480px) {
  .image_set {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
  }
  .image_set img {
    width: 90px !important;
    max-width: 90px !important;
    max-height: 70px !important;
    padding: 0.5rem !important;
  }
}

.footer {
  background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
  color: #9CA3AF;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-brand {
  gap: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--color-white);
}

.footer-logo-text {
  color: var(--color-white);
}

.footer-tagline {
  font-size: 0.95rem;
  color: #9CA3AF;
  margin: 0;
}

.footer-powered {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: #6B7280;
}

.footer-heading {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links li {
  margin: 0;
}

.footer-links a {
  color: #9CA3AF;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--color-primary);
}

.footer-links .footer-cta {
  color: var(--color-primary);
  font-weight: 600;
}

.footer-links .footer-cta:hover {
  color: var(--color-white);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: #6B7280;
  margin: 0;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .header nav {
    display: none;
  }
  .header-left {
    gap: 1rem;
  }
  .logo {
    font-size: 1.3rem;
  }
  .powered-by {
    font-size: 0.65rem;
  }
  .feature-icons-grid {
    gap: 1rem;
  }
  .future-grid {
    grid-template-columns: 1fr;
  }
  .step-flow {
    flex-direction: column;
    gap: 3rem;
  }
  .step-flow::before {
    display: none;
  }
  .step-item {
    padding: 0 1rem;
    width: 100%;
  }
  .cta-box {
    padding: 2rem;
  }
  .compare-grid {
    grid-template-columns: 1fr;
  }
  .mission-section .section-title {
    font-size: 2rem;
    padding-top: 1.5rem;
  }
  .mission-section p {
    font-size: 1rem;
    line-height: 1.8;
  }
  .sp-only {
    display: inline;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: 2rem;
  }
  .footer-logo {
    font-size: 1.5rem;
  }
  .footer-section {
    text-align: left;
  }
  .footer-bottom {
    padding-top: 1.5rem;
  }
  .mission-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .stat-card {
    padding: 1.5rem;
  }
  .chart-container {
    height: 180px;
  }
  .stat-title {
    font-size: 1rem;
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}
