/* ========================================
   GienWiki LP - Light Blue Theme
   ======================================== */
/* Reset & Base */
.gienwiki-page {
  --bg-primary: #ffffff;
  --bg-secondary: #f1f6fd;
  --bg-dark: #0c2e55;
  --bg-card: #ffffff;
  --accent-blue: #0070eb;
  --accent-blue-dark: #0058bc;
  --text-primary: #1a1a2e;
  --text-secondary: #414755;
  --text-muted: #6b7280;
  --border-subtle: #e5e7eb;
  --border-hover: #0070eb;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-card-hover: 0 10px 25px rgba(0, 0, 0, 0.08);
  --font-family:
    "Inter", "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: "Joan", serif;
  --container-max: 1360px;
  --section-padding: 100px 0;
}
.gienwiki-page {
  scroll-behavior: smooth;
}
.gienwiki-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;
}
.gienwiki-page .container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}
/* Placeholder Header/Footer */
.gienwiki-page .header-placeholder, .gienwiki-page .footer-placeholder {
  background: #f0f4f8;
  border: 2px dashed #b0c4d8;
  padding: 20px;
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
}
.gienwiki-page .footer-copyright {
  margin-top: 8px;
  font-size: 12px;
  color: var(--text-muted);
}
/* Buttons */
.gienwiki-page .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}
.gienwiki-page .btn-primary {
  background: #0058bc;
  color: #fff;
}
.gienwiki-page .btn-primary:hover {
  background: #004a9e;
  box-shadow: 0 4px 12px rgba(0, 88, 188, 0.3);
  transform: translateY(-1px);
}
/* Eyebrow Labels */
.gienwiki-page .eyebrow {
  display: block;
  margin-bottom: 12px;
  color: var(--accent-blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.gienwiki-page .eyebrow-light {
  color: #60a5fa;
}
.gienwiki-page .section-title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 20px;
  color: var(--text-primary);
}
.gienwiki-page .section-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 48px;
}
/* ========================================
   HERO SECTION
   ======================================== */
.gienwiki-page .hero {
  height: auto !important;
  min-height: unset !important;
  padding: 80px 0 60px;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}
.gienwiki-page .hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 112, 235, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.gienwiki-page .hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.gienwiki-page .hero-label {
  position: static !important;
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 28px;
}
.gienwiki-page .hero-title {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--accent-blue-dark);
}
.gienwiki-page .hero-subtitle {
  font-size: 24px;
  color: var(--text-primary);
  margin-bottom: 20px;
  font-weight: 600;
}
.gienwiki-page .hero-description {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 32px;
}
.gienwiki-page .hero-cta {
  margin-bottom: 32px;
}
.gienwiki-page .hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.gienwiki-page .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: #e4eef6;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
}
.gienwiki-page .hero-badge-check {
  color: var(--accent-blue-dark);
}
.gienwiki-page .hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.gienwiki-page .hero-mockup {
  width: 100%;
  max-width: 640px;
  height: auto;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 20px 40px rgba(0, 88, 188, 0.12));
}
/* ========================================
   PAIN POINTS SECTION
   ======================================== */
.gienwiki-page .pain-points {
  padding: var(--section-padding);
  background: var(--bg-secondary);
}
.gienwiki-page .pain-points .section-title {
  margin-bottom: 16px;
}
.gienwiki-page .pain-points .section-desc {
  margin-bottom: 48px;
}
.gienwiki-page .pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.gienwiki-page .pain-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-card);
}
.gienwiki-page .pain-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
}
.gienwiki-page .pain-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--accent-blue-dark);
  position: relative;
}
.gienwiki-page .pain-icon::before {
  content: "?";
  position: absolute;
  top: -9px;
  right: -9px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-blue-dark);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  line-height: 21px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 88, 188, 0.22);
}
.gienwiki-page .pain-icon::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 5px;
  width: 6px;
  height: 6px;
  background: var(--accent-blue-dark);
  clip-path: polygon(100% 70%, 0 0, 0 100%);
}
.gienwiki-page .pain-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.gienwiki-page .pain-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
}
/* ========================================
   CORE VALUES SECTION
   ======================================== */
.gienwiki-page .core-values {
  padding: var(--section-padding);
  background: var(--bg-primary);
}
.gienwiki-page .core-values .section-title {
  margin-bottom: 16px;
}
.gienwiki-page .values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.gienwiki-page .value-card {
  background: #f8faff;
  border: 1px solid #e8edf5;
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s ease;
}
.gienwiki-page .value-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}
.gienwiki-page .value-header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 24px;
}
.gienwiki-page .value-number {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 400;
  color: var(--accent-blue-dark);
  line-height: 1;
  position: relative;
  top: -4px;
}
.gienwiki-page .value-slash {
  font-size: 24px;
  font-weight: 300;
  color: #c0cedc;
  line-height: 1;
}
.gienwiki-page .value-label {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
  position: relative;
  top: 3px;
}
.gienwiki-page .value-card > p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
}
.gienwiki-page .value-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.gienwiki-page .value-tag {
  display: inline-block;
  padding: 4px 10px;
  background: #ffffff;
  border: 1px solid #dce3ed;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
}
/* ========================================
   SECURITY & ARCHITECTURE SECTION
   ======================================== */
.gienwiki-page .security {
  padding: var(--section-padding);
  background: var(--bg-dark);
}
.gienwiki-page .security .eyebrow {
  text-align: center;
}
.gienwiki-page .security .section-title {
  color: #ffffff;
  text-align: center;
  margin-bottom: 16px;
}
.gienwiki-page .section-subtitle {
  font-size: 14px;
  color: #9bb1c7;
  text-align: center;
  margin-bottom: 48px;
}
.gienwiki-page .security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gienwiki-page .security-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(148, 163, 184, 0.15);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s ease;
}
.gienwiki-page .security-card:hover {
  border-color: rgba(96, 165, 250, 0.3);
  box-shadow: 0 0 24px rgba(59, 130, 246, 0.1);
}
.gienwiki-page .security-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 112, 235, 0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #60a5fa;
}
.gienwiki-page .security-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}
.gienwiki-page .security-card p {
  font-size: 14px;
  color: #9bb1c7;
  line-height: 1.8;
  margin-bottom: 20px;
}
.gienwiki-page .security-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.gienwiki-page .security-tag {
  display: inline-block;
  padding: 5px 12px;
  background: transparent;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 30px;
  font-size: 12px;
  font-weight: 500;
  color: #9bb1c7;
}
/* ========================================
   CASE STUDIES SECTION
   ======================================== */
.gienwiki-page .cases {
  padding: var(--section-padding);
  background: var(--bg-primary);
}
.gienwiki-page .cases .section-title {
  margin-bottom: 12px;
}
.gienwiki-page .section-subtitle-light {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 48px;
}
.gienwiki-page .cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gienwiki-page .case-card {
  overflow: hidden;
  background: #ffffff;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
  position: relative;
  min-height: 260px;
}
.gienwiki-page .case-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}
.gienwiki-page .case-image {
  position: absolute;
  top: 14px;
  right: 14px;
  left: 28%;
  height: calc(100% - 28px);
  overflow: hidden;
  z-index: 0;
}
.gienwiki-page .case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(1px);
}
.gienwiki-page .case-content {
  position: relative;
  z-index: 1;
  width: 76%;
  min-height: 260px;
  padding: 32px;
  padding-right: 56px;
  background: var(--bg-dark);
  clip-path: polygon(0 0, 100% 0, calc(100% - 70px) 100%, 0 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.gienwiki-page .case-card::after {
  content: "";
  position: absolute;
  top: 14px;
  right: 14px;
  left: 3%;
  height: calc(100% - 28px);
  border: 2px solid #ffffff;
  z-index: 3;
  pointer-events: none;
}
.gienwiki-page .case-tag {
  display: inline-block;
  padding: 4px 14px;
  background: #ffffff;
  border-radius: 0;
  font-size: 12px;
  font-weight: 700;
  color: var(--bg-dark);
  margin-bottom: 12px;
  margin-left: -32px;
  width: fit-content;
  letter-spacing: 0.02em;
}
.gienwiki-page .case-client {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 8px;
}
.gienwiki-page .case-title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.5;
}
.gienwiki-page .case-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(13px * 1.7 * 4);
}
/* ========================================
   CTA SECTION
   ======================================== */
.gienwiki-page .cta-section {
  padding: 24px 0 96px;
  background: var(--bg-primary);
}
.gienwiki-page .cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 38px 44px;
  background: linear-gradient(to right, #184373, #001e41);
  border-radius: 20px;
  color: #ffffff;
}
.gienwiki-page .cta-box-text .eyebrow {
  color: #ffffff;
}
.gienwiki-page .cta-box h2 {
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.25;
  color: #ffffff;
}
.gienwiki-page .cta-box p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.7;
}
.gienwiki-page .btn-cta-white {
  flex-shrink: 0;
  background: #ffffff;
  color: var(--bg-dark);
  font-weight: 700;
}
.gienwiki-page .btn-cta-white:hover {
  background: #edf6ff;
}
/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1440px) {.gienwiki-page {
    --container-max: 1120px;
    --section-padding: 80px 0;
  }
.gienwiki-page .container {
    padding: 0 40px;
  }
.gienwiki-page .hero-title {
    font-size: 42px;
  }
.gienwiki-page .section-title {
    font-size: 32px;
  }
.gienwiki-page .section-subtitle-light {
    margin-bottom: 32px;
  }
.gienwiki-page .cases-grid {
    gap: 18px;
  }
.gienwiki-page .case-card {
    min-height: 216px;
  }
.gienwiki-page .case-image {
    top: 12px;
    right: 12px;
    height: calc(100% - 24px);
  }
.gienwiki-page .case-image img {
    filter: blur(1px);
  }
.gienwiki-page .case-content {
    width: 78%;
    min-height: 216px;
    padding: 22px;
    padding-right: 42px;
    background: var(--bg-dark);
    clip-path: polygon(0 0, 100% 0, calc(100% - 56px) 100%, 0 100%);
  }
.gienwiki-page .case-tag {
    padding: 3px 12px;
    font-size: 11px;
    margin-bottom: 8px;
    margin-left: -22px;
  }
.gienwiki-page .case-client {
    font-size: 12px;
    margin-bottom: 3px;
  }
.gienwiki-page .case-title {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 8px;
  }
.gienwiki-page .case-desc {
    font-size: 11px;
    line-height: 1.3;
    -webkit-line-clamp: 4;
    min-height: calc(11px * 1.3 * 4);
  }}
@media (max-width: 1280px) {.gienwiki-page .container {
    padding: 0 48px;
  }
.gienwiki-page .hero-title {
    font-size: 38px;
  }
.gienwiki-page .hero-inner {
    gap: 40px;
  }}
@media (max-width: 1024px) {.gienwiki-page .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
.gienwiki-page .hero-badges {
    justify-content: center;
  }
.gienwiki-page .hero-cta {
    display: flex;
    justify-content: center;
  }
.gienwiki-page .hero-visual {
    order: -1;
  }
.gienwiki-page .hero-mockup {
    max-width: 520px;
  }
.gienwiki-page .pain-grid {
    grid-template-columns: repeat(2, 1fr);
  }
.gienwiki-page .values-grid {
    grid-template-columns: 1fr;
  }
.gienwiki-page .cta-box {
    flex-direction: column;
    text-align: center;
  }
.gienwiki-page .security-grid {
    grid-template-columns: 1fr;
  }
.gienwiki-page .cases-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
  }}
@media (max-width: 768px) {
.gienwiki-page .container {
    padding: 0 16px;
  }.gienwiki-page {
    --section-padding: 64px 0;
  }
.gienwiki-page .hero {
    padding: 48px 0 40px;
  }
.gienwiki-page .hero-title {
    font-size: 32px;
  }
.gienwiki-page .hero-subtitle {
    font-size: 20px;
  }
.gienwiki-page .section-title {
    font-size: 26px;
  }
.gienwiki-page .pain-grid {
    grid-template-columns: 1fr;
  }
.gienwiki-page .cases-grid {
    grid-template-columns: 1fr;
    max-width: none;
  }
.gienwiki-page .case-content {
    width: 100%;
    clip-path: none;
    padding: 20px;
    padding-right: 20px;
  }
.gienwiki-page .case-image {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    width: 100%;
    height: 120px;
    min-height: 0;
  }
.gienwiki-page .case-card::after {
    display: none;
  }
.gienwiki-page .case-card {
    min-height: auto;
  }
.gienwiki-page .hero-badges {
    flex-direction: column;
    align-items: center;
  }
.gienwiki-page .cta-box {
    flex-direction: column;
    padding: 30px 24px;
    text-align: center;
  }
.gienwiki-page .cta-box h2 {
    font-size: 26px;
  }
.gienwiki-page .btn-cta-white {
    width: 100%;
  }}
.gienwiki-breadcrumb {
  position: absolute;
  top: 11px;
  left: 96px;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 400;
  color: #4B5563;
  letter-spacing: -.12px;
  z-index: 3;
  margin: 0;
}
.gienwiki-breadcrumb a {
  color: #4B5563;
  text-decoration: none;
}
.gienwiki-breadcrumb a:hover {
  text-decoration: underline;
}
@media (max-width: 1280px) { .gienwiki-breadcrumb { left: 48px; } }
@media (max-width: 1024px) { .gienwiki-breadcrumb { left: 24px; } }
@media (max-width: 768px) { .gienwiki-breadcrumb { left: 16px; top: 12px; font-size: 11px; } }