/* ========================================
   GienTech AI Pages - Shared Styles
   Dark theme, matching Framer design
   ======================================== */
/* Reset & Base */
.ai-finance-page {
  --bg-primary: #0a0b1a;
  --bg-secondary: #0f1125;
  --bg-card: rgba(15, 17, 37, 0.8);
  --bg-card-hover: rgba(20, 23, 50, 0.9);
  --accent-blue: #3b82f6;
  --accent-cyan: #06b6d4;
  --accent-purple: #7c3aed;
  --gradient-primary: linear-gradient(135deg, #3b82f6, #06b6d4);
  --gradient-purple: linear-gradient(135deg, #7c3aed, #3b82f6);
  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --border-subtle: rgba(148, 163, 184, 0.1);
  --border-glow: rgba(59, 130, 246, 0.3);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-glow: 0 0 20px rgba(59, 130, 246, 0.15);
  --font-family:
    "Inter", "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  --container-max: 1200px;
  --section-padding: 100px 0;
}
.ai-finance-page {
  scroll-behavior: smooth;
}
.ai-finance-page {
  font-family: var(--font-family);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
.ai-finance-page .container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}
/* Placeholder Header/Footer */
.ai-finance-page .header-placeholder, .ai-finance-page .footer-placeholder {
  background: rgba(59, 130, 246, 0.05);
  border: 2px dashed rgba(59, 130, 246, 0.3);
  padding: 20px;
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
}
.ai-finance-page .footer-copyright {
  margin-top: 8px;
  font-size: 12px;
  color: var(--text-muted);
}
/* Buttons */
.ai-finance-page .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}
.ai-finance-page .btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}
.ai-finance-page .btn-primary:hover {
  box-shadow: 0 6px 25px rgba(59, 130, 246, 0.5);
  transform: translateY(-1px);
}
.ai-finance-page .btn[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}
.ai-finance-page .section-title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-primary);
}
.ai-finance-page .section-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 48px;
}
/* ========================================
   HERO SECTION
   ======================================== */
.ai-finance-page .hero {
  position: relative;
  padding: 140px 0 80px;
  height: auto;
  overflow: hidden;
  background: linear-gradient(220deg, #001029 10.3434%, #0c2e65 90.8539%);
}
.ai-finance-page .hero-bg-image {
  position: absolute;
  inset: 0;
  background: url("image/ai-finance-hero-bg.png") center center / cover
    no-repeat;
  z-index: 0;
}
.ai-finance-page .hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0;
  padding-left: clamp(48px, 8vw, 200px);
}
.ai-finance-page .hero-heritage-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: #1a3969;
  border: 1px solid #495366;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(207, 209, 213, 1);
  margin-bottom: 32px;
}
.ai-finance-page .hero-heritage-label svg {
  flex-shrink: 0;
}
.ai-finance-page .hero-title {
  font-size: 60px;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #ffffff;
}
.ai-finance-page .hero-title-gradient {
  background: linear-gradient(
    90deg,
    rgb(255, 255, 255) 0%,
    rgb(193, 218, 252) 50%,
    rgb(247, 175, 180) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ai-finance-page .hero-description {
  font-size: 14px;
  color: rgba(155, 177, 199, 1);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 580px;
}
.ai-finance-page .hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.ai-finance-page .btn-hero-red {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  padding: 14px 36px;
  background: #df203d;
  color: #ffffff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}
.ai-finance-page .btn-hero-red:hover {
  background: #c41b35;
  box-shadow: 0 4px 16px rgba(223, 32, 61, 0.35);
  transform: translateY(-1px);
}
.ai-finance-page .btn-hero-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 260px;
  padding: 14px 36px;
  background: #1a3a6a;
  color: #ffffff;
  border: 1px solid #65738e;
  border-radius: var(--radius-sm);
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}
.ai-finance-page .btn-hero-outline:hover {
  background: #1f4480;
  border-color: #8a9ab5;
  transform: translateY(-1px);
}
.ai-finance-page .btn-hero-outline svg {
  flex-shrink: 0;
}
.ai-finance-page .hero-divider {
  height: 1px;
  background: rgba(148, 163, 184, 0.2);
  margin-bottom: 28px;
  max-width: 540px;
}
.ai-finance-page .hero-trust {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ai-finance-page .hero-trust-label {
  font-size: 12px;
  color: rgba(155, 177, 199, 1);
}
.ai-finance-page .hero-trust-tags {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.ai-finance-page .hero-trust-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #ffffff;
  padding: 6px 18px;
  background: #1a3969;
  border: 1px solid rgba(148, 163, 184, 0.15);
  border-radius: 8px;
}
.ai-finance-page .trust-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.ai-finance-page .trust-dot-red {
  background: #e72b34;
}
.ai-finance-page .trust-dot-gray {
  background: #6b89a9;
}
/* ========================================
   AI FINANCE PAGE - Additional Styles
   ======================================== */
/* Finance Hero - no additional overrides needed, uses main hero styles */
/* Architecture Card Grid */
.ai-finance-page .architecture {
  padding: var(--section-padding);
  background: #0c2245;
}
.ai-finance-page .architecture .container {
  max-width: 1600px;
}
.ai-finance-page .architecture .section-title {
  font-size: 36px;
  color: #ffffff;
}
.ai-finance-page .arch-title-sub {
  color: #6b89a9;
}
.ai-finance-page .architecture .section-subtitle {
  font-size: 14px;
  color: #9bb1c7;
  max-width: 800px;
}
.ai-finance-page .arch-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 48px;
}
.ai-finance-page .arch-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}
.ai-finance-page .arch-card:hover {
  border-color: rgba(96, 165, 250, 0.3);
  box-shadow: 0 0 24px rgba(59, 130, 246, 0.1);
}
.ai-finance-page .arch-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.ai-finance-page .arch-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}
.ai-finance-page .arch-icon-blue {
  background: linear-gradient(135deg, #218aff 0%, #00c9f5 100%);
}
.ai-finance-page .arch-icon-purple {
  background: linear-gradient(135deg, #9558ff 0%, #ba75ff 100%);
}
.ai-finance-page .arch-icon-green {
  background: linear-gradient(135deg, #00c086 0%, #00d2b6 100%);
}
.ai-finance-page .arch-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: #ffffff;
  background: #5b7298;
  border-radius: 8px;
  padding: 6px 14px;
}
.ai-finance-page .arch-tag-dot {
  width: 6px;
  height: 6px;
  background: #ffffff;
  border-radius: 50%;
  flex-shrink: 0;
}
.ai-finance-page .arch-card-desc {
  font-size: 14px;
  color: #9bb1c7;
  line-height: 1.6;
  margin-bottom: 8px;
}
.ai-finance-page .arch-card-title {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}
.ai-finance-page .arch-card-body {
  font-size: 16px;
  color: #9bb1c7;
  line-height: 1.7;
  margin-bottom: 16px;
}
.ai-finance-page .arch-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.ai-finance-page .arch-tag {
  display: inline-block;
  padding: 6px 14px;
  background: transparent;
  border: 1px solid #29426c;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 500;
  color: #9bb1c7;
}
.ai-finance-page .arch-card-link {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  color: #ffffff;
  text-decoration: none;
  margin-top: auto;
  transition: opacity 0.2s ease;
}
.ai-finance-page .arch-card-link:hover {
  opacity: 0.7;
}
.ai-finance-page .arch-card-link svg {
  flex-shrink: 0;
}
.ai-finance-page .arch-cta {
  text-align: center;
  margin-top: 56px;
}
.ai-finance-page .architecture .btn-primary {
  background: #0058bc;
  padding: 16px 48px;
  font-size: 18px;
  font-weight: 400;
}
/* Services Carousel (Static) */
.ai-finance-page .services-carousel {
  padding: var(--section-padding);
  background: #f9fbfd;
}
.ai-finance-page .services-carousel .container {
  max-width: 1600px;
}
.ai-finance-page .services-carousel .section-title {
  font-size: 36px;
  font-weight: 700;
  color: #363636;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.ai-finance-page .services-carousel .section-subtitle {
  font-size: 14px;
  color: #224a71;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.ai-finance-page .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.ai-finance-page .service-card {
  background: #ffffff;
  border: none;
  border-left: 10px solid #113659;
  border-radius: 10px;
  padding: 16px 32px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.ai-finance-page .service-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.ai-finance-page .service-number {
  font-size: 48px;
  font-weight: 900;
  color: #cccccc;
  margin-bottom: 16px;
}
.ai-finance-page .service-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #363636;
  margin-bottom: 12px;
}
.ai-finance-page .service-card p {
  font-size: 14px;
  color: #616161;
  margin-bottom: 16px;
  line-height: 1.7;
}
.ai-finance-page .service-divider {
  height: 1px;
  background: #e5e7eb;
  margin-bottom: 16px;
}
.ai-finance-page .service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ai-finance-page .service-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: #f5f9fb;
  border-radius: 6px;
  font-size: 13px;
  color: #616161;
}
.ai-finance-page .service-check {
  color: #2cbb5f;
  flex-shrink: 0;
}
.ai-finance-page .services-carousel .btn-primary {
  background: #0058bc;
  padding: 16px 48px;
  font-size: 18px;
  font-weight: 400;
}
/* Heritage Stats */
.ai-finance-page .heritage {
  padding: 60px 0;
  background: #ffffff;
}
.ai-finance-page .heritage-stats {
  display: flex;
  justify-content: center;
  align-items: center;
}
.ai-finance-page .heritage-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 48px;
  position: relative;
}
.ai-finance-page .heritage-stat + .heritage-stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15%;
  height: 70%;
  width: 2px;
  background: #d1d5db;
}
.ai-finance-page .heritage-stat-value {
  font-size: 36px;
  font-weight: 900;
  color: #363636;
}
.ai-finance-page .heritage-stat-label {
  font-size: 14px;
  color: #363636;
  margin-top: 4px;
}
/* News Section */
.ai-finance-page .news {
  padding: var(--section-padding);
  background: #ffffff;
}
.ai-finance-page .news .container {
  max-width: 1600px;
}
.ai-finance-page .news .section-title {
  font-size: 36px;
  font-weight: 700;
  color: #363636;
}
.ai-finance-page .news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.ai-finance-page .news-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 28px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
}
.ai-finance-page .news-card:hover {
  border-color: #0058bc;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
.ai-finance-page .news-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.ai-finance-page .news-date {
  font-size: 12px;
  color: #616161;
}
.ai-finance-page .news-category {
  font-size: 12px;
  font-weight: 600;
  color: #113659;
}
.ai-finance-page .news-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #363636;
  margin-bottom: 10px;
  line-height: 1.5;
}
.ai-finance-page .news-card p {
  font-size: 14px;
  color: #616161;
  line-height: 1.7;
}
/* Digital Leader / Case Cards Section */
.ai-finance-page .three-cards {
  padding: var(--section-padding);
  background: #f9fbfd;
}
.ai-finance-page .three-cards .section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  color: #363636;
}
.ai-finance-page .three-cards .section-subtitle {
  text-align: center;
  font-size: 14px;
  color: #224a71;
  line-height: 1.7;
  margin-bottom: 48px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.ai-finance-page .three-cards .container {
  max-width: 1600px;
}
.ai-finance-page .three-cards .cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}
.ai-finance-page .three-cards .case-card {
  background: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 10px 10px -6px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.ai-finance-page .three-cards .case-card::before {
  content: "";
  position: absolute;
  top: -160px;
  right: -160px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(
    69.1131% 69.1131% at 27.37% 42.0489%,
    #fb5d6533 0%,
    #ffc3cb0f 84.4345%
  );
  pointer-events: none;
}
.ai-finance-page .three-cards .case-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.ai-finance-page .three-cards .case-icon {
  width: 60px;
  height: 60px;
  background: #113659;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px #1c426866;
  color: #ffffff;
}
.ai-finance-page .three-cards .case-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  background: #f5f9fb;
  border: none;
  border-radius: 26px;
  font-size: 14px;
  font-weight: 500;
  color: #363636;
  margin-bottom: 16px;
}
.ai-finance-page .three-cards .case-tag-dot {
  width: 8px;
  height: 8px;
  background: #e72b34;
  border-radius: 50%;
  flex-shrink: 0;
}
.ai-finance-page .three-cards .case-title {
  font-size: 28px;
  font-weight: 700;
  color: #363636;
  margin-bottom: 16px;
  line-height: 1.4;
}
.ai-finance-page .three-cards .case-desc {
  font-size: 16px;
  color: #616161;
  line-height: 1.7;
  min-height: calc(16px * 1.7 * 4);
}
.ai-finance-page .three-cards .case-read-link {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  color: rgba(0, 88, 188, 1);
  text-decoration: none;
  margin-top: 20px;
  transition: opacity 0.2s ease;
}
.ai-finance-page .three-cards .case-read-link:hover {
  opacity: 0.7;
}
.ai-finance-page .three-cards .case-read-link svg {
  flex-shrink: 0;
}
.ai-finance-page .three-cards .cases-cta {
  text-align: center;
  margin-top: 56px;
}
.ai-finance-page .three-cards .btn-primary {
  background: #0058bc;
  color: #fff;
  box-shadow: none;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-size: 18px;
  font-weight: 400;
}
.ai-finance-page .three-cards .btn-primary:hover {
  background: #004a9e;
  box-shadow: 0 4px 12px rgba(0, 88, 188, 0.3);
  transform: translateY(-1px);
}
.ai-finance-page .delivery-cta {
  text-align: center;
  margin-top: 56px;
}
/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1440px) {.ai-finance-page {
    --container-max: 1120px;
    --section-padding: 80px 0;
  }
.ai-finance-page .container {
    padding: 0 40px;
  }
.ai-finance-page .architecture .container, .ai-finance-page .services-carousel .container, .ai-finance-page .three-cards .container, .ai-finance-page .news .container {
    max-width: 1120px;
  }
.ai-finance-page .hero-content {
    padding-left: 80px;
  }
.ai-finance-page .hero-title {
    font-size: 48px;
  }
.ai-finance-page .section-title, .ai-finance-page .architecture .section-title, .ai-finance-page .services-carousel .section-title, .ai-finance-page .three-cards .section-title, .ai-finance-page .news .section-title {
    font-size: 32px;
  }
.ai-finance-page .services-grid, .ai-finance-page .news-grid {
    gap: 20px;
  }
.ai-finance-page .three-cards .cases-grid {
    gap: 28px;
  }
.ai-finance-page .three-cards .case-card, .ai-finance-page .arch-card {
    padding: 28px;
  }
.ai-finance-page .service-card {
    padding: 16px 24px 28px;
  }}
@media (max-width: 1280px) {.ai-finance-page .container {
    padding: 0 48px;
  }
.ai-finance-page .hero-content {
    padding-left: 48px;
  }
.ai-finance-page .hero-title {
    font-size: 42px;
  }
.ai-finance-page .services-grid, .ai-finance-page .three-cards .cases-grid, .ai-finance-page .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }}
@media (max-width: 1024px) {.ai-finance-page .services-grid, .ai-finance-page .three-cards .cases-grid, .ai-finance-page .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
.ai-finance-page .arch-grid {
    grid-template-columns: 1fr;
  }}
@media (max-width: 768px) {
.ai-finance-page .container {
    padding: 0 16px;
  }.ai-finance-page {
    --section-padding: 64px 0;
  }
.ai-finance-page .hero {
    padding: 24px 0 60px;
    overflow: visible;
  }
.ai-finance-page .hero-heritage-label {
    margin-top: 24px;
  }
.ai-finance-page .hero-title {
    font-size: 36px;
  }
.ai-finance-page .section-title {
    font-size: 28px;
  }
.ai-finance-page .services-grid, .ai-finance-page .three-cards .cases-grid, .ai-finance-page .news-grid {
    grid-template-columns: 1fr;
  }
.ai-finance-page .heritage-stats {
    gap: 32px;
    flex-direction: column;
  }
.ai-finance-page .heritage-stat + .heritage-stat::before {
    display: none;
  }
.ai-finance-page .hero-trust-tags {
    flex-direction: column;
    gap: 10px;
  }
.ai-finance-page .hero-trust-tag {
    width: fit-content;
  }}
@media (max-width: 480px) {
.ai-finance-page .btn-hero-red, .ai-finance-page .btn-hero-outline {
    min-width: unset;
    width: 100%;
  }
.ai-finance-page .hero-cta {
    flex-direction: column;
  }
}

.ai-finance-breadcrumb {
  position: absolute;
  top: 11px;
  left: 96px;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  letter-spacing: -.12px;
  z-index: 3;
  margin: 0;
}
.ai-finance-breadcrumb a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}
.ai-finance-breadcrumb a:hover {
  color: #fff;
}

@media (max-width: 1280px) { .ai-finance-breadcrumb { left: 48px; } }
@media (max-width: 1024px) { .ai-finance-breadcrumb { left: 24px; } }
@media (max-width: 768px) { .ai-finance-breadcrumb { left: 16px; top: 12px; font-size: 11px; } }@media (max-width: 768px) {
    .ai-finance-page .hero-content {
        padding-left: 16px;
    }
    .ai-finance-page .hero-bg-image {
        background-position: right -220px bottom -80px;
        background-size: 260%;
    }
}
