/* =============================================
   Odoo Japan Landing Page - style.css
   ドゥーイ - Odoo Manufacturing ERP Partner
   ============================================= */

/* CSS Custom Properties */
:root {
  --navy: #172882;
  --purple: #714B9E;
  --orange: #fbb130;
  --pink: #E91E63;
  --white: #FFFFFF;
  --light-gray: #F5F7FA;
  --text-dark: #2C2C2C;
  --text-gray: #666666;
  --text-light: #999999;
  --font: 'Noto Sans JP', sans-serif;
  --transition: 0.3s ease;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --radius: 6px;
}

/* =============================================
   Base Reset & Typography
   ============================================= */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-dark);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font);
  font-weight: 700;
}

a {
  text-decoration: none;
  transition: color var(--transition);
}

img { max-width: 100%; }

/* =============================================
   Section Helpers
   ============================================= */
.section-white {
  background: var(--white);
  padding: 70px 0;
}

.section-gray {
  background: var(--light-gray);
  padding: 70px 0;
}

/* Section Title */
.section-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 8px;
}

.section-title--white {
  color: var(--white);
}

.section-title__underline {
  width: 50px;
  height: 4px;
  background: var(--purple);
  border-radius: 2px;
  margin: 10px auto 36px;
}

/* =============================================
   SECTION 1: Navigation Bar (single row)
   ============================================= */
.navbar-main {
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: 64px;
}

.navbar-main--scrolled {
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

/* Odoo Logo - purple circle with white "odoo" text */
.navbar-brand {
  display: flex;
  align-items: center;
  padding: 8px 0;
  margin-right: 0;
}
.navbar-brand img {
  width: 50px;
}
.navbar-brand__circle {
  width: 52px;
  height: 52px;
  background: var(--purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.navbar-brand__circle-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}

/* Nav links */
.navbar-main .navbar-nav .nav-link {
  color: var(--text-dark) !important;
  font-size: 15px;
  font-weight: 500;
  padding: 20px 16px !important;
  white-space: nowrap;
  transition: color var(--transition);
  line-height: 1.4;
}

.navbar-main .navbar-nav .nav-link:hover {
  color: var(--purple) !important;
}

/* Right side: phone + CTA */
.navbar-right {
  gap: 12px;
  flex-wrap: nowrap;
}

.navbar-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: 8px;
}

.navbar-phone__info {
  text-align: right;
}

.navbar-phone__label {
  font-size: 11px;
  color: var(--text-gray);
  line-height: 1.4;
  white-space: nowrap;
}

.navbar-phone__number {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 22px;
  font-weight: 700;
  color: #172882;
  white-space: nowrap;
}

.navbar-phone__number i {
  font-size: 16px;
  color: var(--text-dark);
}

.navbar-phone__hours {
  font-size: 11px;
  color: var(--text-gray);
  white-space: nowrap;
  margin-left: -4px;
  margin-top: -6px;
}

/* Nav CTA buttons */
.nav-cta {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 50px;
  white-space: nowrap;
  transition: all var(--transition);
  text-decoration: none;
}

.nav-cta--purple {
  background: #a74787;
  color: var(--white) !important;
}

.nav-cta--purple:hover {
  background: var(--purple);
  color: var(--white) !important;
  text-decoration: none;
}

.nav-cta--navy {
  background: #172882;
  color: var(--white) !important;
}

.nav-cta--navy:hover {
  background: #1a1e45;
  color: var(--white) !important;
  text-decoration: none;
}

.navbar-toggler {
  border-color: rgba(33,39,91,0.3);
  padding: 4px 8px;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

/* =============================================
   SECTION 2: Hero Section
   ============================================= */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  /* Factory/manufacturing background - replace with real photo via inline style or bg image */
  background:
    url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?w=1600&q=80') center center / cover no-repeat;
  overflow: hidden;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 28, 60, 0.45);
  z-index: 1;
}

.hero__container {
  position: relative;
  z-index: 2;
  padding-top: 70px;
  padding-bottom: 70px;
}

.hero__content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Odoo logo circle in hero */
.hero__logo-circle {
  width: 72px;
  height: 72px;
  background: var(--purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}

.hero__logo-circle span {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}

.hero__title {
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.45;
  margin-bottom: 24px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.hero__subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.92);
  line-height: 1.8;
  margin: 0 0 40px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}

/* Hero CTA buttons */
.hero__buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero__btn {
  display: inline-block;
  font-size: 17px;
  font-weight: 700;
  padding: 12px 44px;
  border-radius: 50px;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.hero__btn--purple {
  background: #a74787;
  color: var(--white) !important;
  /*border: 2px solid var(--purple);*/
}

.hero__btn--purple:hover {
  background: #5c3a85;
  color: var(--white) !important;
  text-decoration: none;
}

.hero__btn--outline {
  background: #172882;
  color: var(--white) !important;
  /*border: 2px solid var(--white);*/
}

.hero__btn--outline:hover {
  background: #1a1e45;
  color: var(--white) !important;
  text-decoration: none;
}

/* =============================================
   SECTION 3: Intro + 3 Reasons
   ============================================= */
.intro__lead {
  font-size: 16px;
  color: #1a6dcc;
  font-weight: 500;
  line-height: 2;
  max-width: 780px;
  margin: 0 auto 40px;
}

.section-title__underline--orange {
  background: var(--orange) !important;
  min-width: 300px;
  height: 5px;
}

/* Reason Cards - ribbon number + illustration + title */
.reason-card {
  background: var(--white);
  border: 1px solid #E0E0E0;
  border-radius: 0;
  padding: 0;
  text-align: center;
  position: relative;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border-radius: 12px;
}

/* Ribbon number badge (01, 02, 03) */
.reason-card__number {
  position: absolute;
  top: -10px;
  left: 0;
  width: 55px;
  background: #2c2c2a;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  padding: 10px 0 14px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 82%, 0 100%);
}

/* Illustration area */
.reason-card__illustration {
  margin: 40px 0 24px;
  font-size: 80px;
  color: var(--navy);
  opacity: 0.8;
  line-height: 1;
}

.reason-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.6;
  margin: 0;
  padding: 0 16px 24px;
}

/* Bullet list below cards */
.reason-card__bullets {
  list-style: none;
  padding: 16px 0 0;
  margin: 0;
}

.reason-card__bullets li {
  font-size: 11px;
  color: var(--text-dark);
  line-height: 1.6;
  padding: 3px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.reason-card__bullets li::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--navy);
  flex-shrink: 0;
  margin-top: 5px;
}

/* =============================================
   SECTION 4: Apps Section
   ============================================= */
.apps-section {
  padding: 70px 0;
  background: var(--white);
}

/* 6-column icon grid */
.apps-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px 16px;
  /*max-width: 700px;*/
  margin: 30px auto 36px;
}

.app-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: default;
}

.app-tile__icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 8px;
  transition: transform var(--transition);
}

.app-tile:hover .app-tile__icon {
  transform: translateY(-3px);
}

.app-tile__label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.4;
}

.apps-extra-note {
  font-size: 17px;
  font-weight: 500;
  color: var(--text-dark);
  margin: 0;
}

.apps-extra-note__highlight {
  color: #1a6dcc;
  font-weight: 700;
}

/* =============================================
   SECTION 5: Industries Section
   ============================================= */
.industries-section {
  padding: 70px 0;
}

/* Industry list (left column) */
.industry-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.industry-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 5px 0;
  font-size: 20px;
  font-weight: 500;
  color: var(--text-dark);
}

.industry-item i {
  font-size: 18px;
  color: var(--text-gray);
  width: 24px;
  text-align: center;
}

/* Scenario flow cards (right column) */
.scenario-rows {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #f8f9fa;
  border-radius: 12px;
  padding: 20px;
}

.scenario-row {
  display: flex;
  align-items: center;
  gap: 0;
}

.scenario-card {
  flex: 1;
  padding: 20px 24px;
  border-radius: 6px;
  min-height: 80px;
  display: flex;
  align-items: center;
}

.scenario-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
}

.scenario-card--white {
  background: var(--white);
  border: 3px solid #ebeff7;
  color: var(--text-dark);
}

.scenario-card--purple {
  background: #a74787;
  color: var(--white);
}

.scenario-arrow {
  padding: 0 16px;
  color: var(--text-dark);
  font-size: 28px;
  flex-shrink: 0;
}

/* DX Benefits bottom */
.dx-benefits__title {
  font-size: 26px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.dx-benefits__highlight {
  color: #595959;
  font-weight: 300;
}

.dx-benefits__list {
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.dx-benefits__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  font-weight: 500;
  color: var(--text-dark);
}

.dx-benefits__num {
  width: 32px;
  height: 32px;
  background: var(--orange);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

/* =============================================
   SECTION 7: Benefits Section
   ============================================= */
.benefits-section {
  padding: 70px 0;
}

.benefit-card {
  background: var(--light-gray);
  border-radius: var(--radius);
  padding: 24px 20px;
  height: 100%;
  text-align: center;
  transition: all var(--transition);
  border: 1px solid #E5E7EB;
}

.benefit-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.benefit-card__icon {
  width: 56px;
  height: 56px;
  background: var(--purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: var(--white);
  font-size: 22px;
}

.benefit-card__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.benefit-card__desc {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.7;
  margin: 0;
}

/* =============================================
   SECTION 8: All-in-One Section
   ============================================= */
.allinone-section {
  position: relative;
  background:
    linear-gradient(135deg, var(--navy) 0%, #1e2870 50%, #2a1a5e 100%);
  padding: 70px 0;
  overflow: hidden;
}

.allinone-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(113,75,158,0.25) 0%, transparent 70%);
  pointer-events: none;
}

.allinone-section__overlay {
  display: none;
}

.allinone-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.allinone-diagram__col {
  flex: 1;
  min-width: 160px;
  max-width: 220px;
}

.allinone-diagram__side-title {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  text-align: center;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.allinone-diagram__items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.allinone-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  transition: all var(--transition);
}

.allinone-item--front {
  background: rgba(33,168,223,0.2);
  border: 1px solid rgba(33,168,223,0.4);
}

.allinone-item--front:hover {
  background: rgba(33,168,223,0.35);
}

.allinone-item--back {
  background: rgba(113,75,158,0.25);
  border: 1px solid rgba(113,75,158,0.4);
}

.allinone-item--back:hover {
  background: rgba(113,75,158,0.4);
}

.allinone-item i {
  width: 24px;
  text-align: center;
  font-size: 15px;
  flex-shrink: 0;
}

.allinone-diagram__center {
  flex-shrink: 0;
}

.allinone-center-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.allinone-center-logo__circle {
  width: 80px;
  height: 80px;
  background: var(--purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 34px;
  font-weight: 900;
  box-shadow: 0 0 30px rgba(113,75,158,0.6);
}

.allinone-center-logo span {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.5px;
}

/* =============================================
   SECTION 9: Core Processes
   ============================================= */
.core-section {
  padding: 70px 0;
}

.core-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.core-item__icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 26px;
  margin-bottom: 10px;
  transition: transform var(--transition);
}

.core-item:hover .core-item__icon {
  transform: translateY(-4px);
}

.core-item__label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
}

/* =============================================
   Services Hub (4 colored quadrants)
   ============================================= */
.services-section {
  padding: 70px 0;
}

.services-section__lead {
  font-size: 15px;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.services-section__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 40px;
}

/* 2x2 grid */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.services-grid__card {
  border-radius: 10px;
  padding: 70px 50px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
  position: relative;
}

.services-grid__card--yellow { background: #fbb130; }
.services-grid__card--orange { background: #ff8800; }
.services-grid__card--green  { background: #05a660; }
.services-grid__card--blue   { background: #3772ff; }

.services-grid__icon {
  position: absolute;
  top: 28px;
  left: 52px;
  font-size: 48px;
  opacity: 0.85;
}

.services-grid__card-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}

.services-grid__card-sub {
  font-size: 14px;
  opacity: 0.9;
  margin: 0;
}

/* Center Odoo logo */
.services-grid__center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.services-grid__logo {
  width: 100px;
  height: 100px;
  background: var(--purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  box-shadow: 0 4px 24px rgba(113,75,158,0.5);
}

/* =============================================
   SECTION 11: Pricing Section
   ============================================= */
.pricing-section {
  padding: 70px 0;
}

.pricing-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid #E5E7EB;
  transition: all var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.pricing-card--featured {
  border-color: var(--purple);
  box-shadow: 0 4px 20px rgba(113,75,158,0.15);
}

.pricing-card__header {
  padding: 20px 20px 16px;
  display: flex;
  /*flex-direction: column;*/
  align-items: center;
  gap: 10px;
  height: 70px;
  text-align: center;
}

.pricing-card__header--coral { background: #1bb5f7; }
.pricing-card__price--coral {margin-top: -20px;display: flex;align-items: center;}
.pricing-card__price--coral span {
  color: #1bb5f7;
}
.pricing-card__header--blue  { background: #fa777c; }
.pricing-card__price--blue {margin-top: -20px;display: flex;align-items: center;}
.pricing-card__price--blue span {
  color: #fa777c;
}
.pricing-card__header--green { background: #00ccb2; }
.pricing-card__price--green {margin-top: -20px;display: flex;align-items: center;}
.pricing-card__price--green span {
  color: #00ccb2;
}

.pricing-card__name {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  text-align: center;
}

.pricing-card__body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pricing-card__price {
  margin-bottom: 12px;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 2px;
}

.pricing-card__dollar {
  font-size: 20px;
  font-weight: 700;
}

.pricing-card__amount {
  font-size: 56px;
  font-weight: 700;
}

.pricing-card__cents {
  font-size: 16px;
  font-weight: 700;
  /*color: var(--text-dark);*/
}

.pricing-card__unit {
  font-size: 13px;
  color: var(--text-gray);
  margin-left: 4px;
}

.pricing-card__label {
  font-size: 14px;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.pricing-card__desc {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.7;
}

.pricing-card__features {
  list-style: disc;
  padding: 0;
  margin: 0 10px 20px;
  flex: 1;
}

.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-dark);
  padding: 5px 0;
  /*border-bottom: 1px solid #F0F0F0;*/
}

.pricing-card__features li:last-child {
  border-bottom: none;
}

.pricing-card__features li i {
  color: #4CAF50;
  font-size: 12px;
  flex-shrink: 0;
}

.pricing-card__btn {
  display: block;
  width: 100%;
  padding: 10px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  transition: all var(--transition);
  margin-top: auto;
}

.pricing-card__btn--purple {
  background: #9f4d84;
  color: var(--white) !important;
  border: none;
  border-radius: 50px;
  padding: 12px 36px;
  width: 160px;
  margin-left: auto;
}

.pricing-card__btn--purple:hover {
  background: #874070;
  color: var(--white) !important;
  text-decoration: none;
}

/* Pricing note */
.pricing-note {
  font-size: 14px;
  color: var(--text-gray);
}

/* Community edition info */
.pricing-community {
  /*border-top: 1px solid #E5E7EB;*/
  padding-top: 0px;
  width: 430px;
  margin: auto;
  text-align: left;
}

.pricing-community__price {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 16px 0;
}

.pricing-community__big {
  font-size: 32px;
  color: var(--text-dark);
}

.pricing-community__list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
  font-size: 14px;
  color: var(--text-dark);
  line-height: 2;
}

.pricing-options {
  display: inline-block;
  text-align: left;
  margin-top: 8px;
}

.pricing-options__row {
  display: flex;
  gap: 40px;
  font-size: 14px;
  padding: 4px 0;
  color: var(--text-dark);
  align-items: center;
}

.pricing-options__highlight {
  font-size: 24px;
  font-weight: 700;
  color: #9f4d84;
}

/* =============================================
   Case Studies
   ============================================= */
.cases-section {
  padding: 70px 0;
}

.case-card {
  background: var(--white);
  border: 1px solid #E0E0E0;
  border-radius: 6px;
  height: 100%;
  overflow: hidden;
}

.case-card__logo-area {
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  min-height: 100px;
  justify-content: center;
  border-bottom: 1px solid #E0E0E0;
}

.case-card__logo-cosmos {
  font-size: 36px;
  font-weight: 900;
  color: #CC0000;
  font-style: italic;
  letter-spacing: -1px;
}

.case-card__logo-sub {
  font-size: 12px;
  color: #CC0000;
  font-weight: 600;
}

.case-card__logo-name {
  font-size: 16px;
  font-weight: 700;
  margin-top: 4px;
}

.case-card__logo-suz {
  font-size: 40px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: 2px;
}

.case-card__body {
  padding: 24px;
  font-size: 13px;
  color: var(--text-dark);
  line-height: 1.7;
}

.case-card__heading {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.case-card__biz-row {
  display: flex;
  gap: 16px;
  font-size: 13px;
}

.case-card__info {
  margin: 10px 0;
  font-size: 13px;
}

.case-card__info div {
  display: flex;
  gap: 16px;
}

.case-card__info div span:first-child {
  min-width: 65px;
  color: var(--text-gray);
}

.case-card__modules {
  font-size: 13px;
  margin: 4px 0;
  line-height: 1.8;
}

.case-card__footer-text {
  font-size: 13px;
  color: var(--text-gray);
  margin-top: 12px;
  margin-bottom: 0;
}

/* =============================================
   Case Detail (事例集 detailed view)
   ============================================= */
.case-detail {
  padding: 70px 0;
}

.case-detail__card {
  background: var(--white);
  border: 1px solid #E0E0E0;
  border-radius: 6px;
  /*padding: 40px;*/
}

.case-detail__highlight {
  font-size: 20px;
  font-weight: 700;
  color: #9f4d84;
  line-height: 1.7;
  margin-bottom: 28px;
}

.case-detail__subtitle {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 24px 0 12px;
}

.case-detail__list {
  list-style: disc;
  padding-left: 20px;
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.8;
}

.case-detail__list li {
  margin-bottom: 8px;
}

.case-detail__arrow {
  color: var(--text-gray);
  display: block;
  padding-left: 8px;
}

.case-detail__logo-cosmos {
  margin-top: 20px;
}

/* =============================================
   Contact Section
   ============================================= */
.contact-section {
  background: var(--navy);
  padding: 70px 0;
}

.contact-section__title {
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 14px;
}

.contact-section__subtitle {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin-bottom: 20px;
}

.contact-section__phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.contact-section__phone i {
  font-size: 18px;
  color: var(--orange);
}

.contact-section__hours {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

.contact-form-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.contact-form-box__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--purple);
}

.contact-form__input {
  border: 1px solid #D1D5DB;
  border-radius: 4px;
  font-family: var(--font);
  font-size: 13px;
  padding: 10px 14px;
  transition: border-color var(--transition);
}

.contact-form__input:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(113,75,158,0.1);
}

.btn-contact-submit {
  display: block;
  width: 100%;
  background: var(--orange);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  padding: 12px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font);
}

.btn-contact-submit:hover {
  background: #cf6826;
}

/* =============================================
   Footer
   ============================================= */
.footer {
  background: var(--white);
  padding: 60px 0 0;
  border-top: 2px solid #E5E7EB;
}

.footer__top {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 20px;
}

.footer__logo {
  flex-shrink: 0;
}

.footer__logo-circle {
  width: 90px;
  height: 90px;
  background: #6C7BA3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__logo-circle span {
  color: var(--white);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -1px;
}

.footer__center {
  flex: 1;
  text-align: center;
}

.footer__phone-label {
  font-size: 14px;
  color: var(--text-dark);
  margin-bottom: 4px;
  line-height: 1.5;
}

.footer__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: -10px;
}

.footer__phone i {
  font-size: 18px;
  color: var(--text-dark);
}

.footer__phone-hours {
  font-size: 13px;
  color: var(--text-gray);
  margin-top: -10px;
}

.footer__buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.footer__btn {
  display: inline-block;
  padding: 14px 40px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none !important;
  transition: all var(--transition);
}

.footer__btn--purple {
  background: #A74787;
  color: var(--white) !important;
}

.footer__btn--purple:hover {
  background: #874070;
  color: var(--white) !important;
}

.footer__btn--navy {
  background: #172882;
  color: var(--white) !important;
}

.footer__btn--navy:hover {
  background: #1a1f4a;
  color: var(--white) !important;
}

.footer__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 28px 0;
  padding-left: 100px;
}

.footer__nav a {
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 500;
  transition: color var(--transition);
  text-decoration: none;
}

.footer__nav a:hover {
  color: var(--purple);
  text-decoration: none;
}

.footer__links {
  display: flex;
  justify-content: space-between;
  padding: 28px 0;
  padding-left: 100px;
}

.footer__link-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer__link-label {
  font-size: 13px;
  color: var(--text-dark);
  font-weight: 500;
}

.footer__link-col a {
  font-size: 13px;
  color: var(--navy);
  text-decoration: underline;
}

.footer__link-col a:hover {
  color: var(--purple);
}

/* =============================================
   Responsive - Tablet (max 991px)
   ============================================= */
@media (max-width: 991px) {
  .section-white,
  .section-gray,
  .apps-section,
  .allinone-section,
  .core-section,
  .services-section,
  .pricing-section,
  .cases-section,
  .contact-section,
  .benefits-section {
    padding: 50px 0;
  }

  .section-title { font-size: 22px; }

  .hero__title { font-size: 28px; }
  .hero__btn { padding: 12px 32px; font-size: 15px; }

  .navbar-right { flex-wrap: wrap; gap: 8px; margin-top: 8px; }
  .navbar-phone { display: none !important; }

  .apps-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 100%;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .services-grid__center {
    position: static;
    transform: none;
    margin: -20px auto;
    z-index: 2;
  }

  .allinone-diagram {
    flex-direction: column;
    gap: 16px;
  }

  .allinone-diagram__col {
    max-width: 100%;
    width: 100%;
  }

  .allinone-diagram__items {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .allinone-item {
    flex: 0 0 auto;
  }
}

/* =============================================
   Responsive - Mobile (max 767px)
   ============================================= */
@media (max-width: 767px) {
  .top-bar { height: auto; padding: 6px 0; }

  .top-bar__inner {
    flex-wrap: wrap;
    gap: 8px;
    justify-content: space-between;
  }

  .hero__title { font-size: 24px; }
  .hero__subtitle { font-size: 14px; }
  .hero__btn { padding: 12px 28px; font-size: 14px; }
  .hero__buttons { gap: 12px; }
  .hero__logo-circle { width: 56px; height: 56px; margin-bottom: 20px; }
  .hero__logo-circle span { font-size: 16px; }

  .hero__container {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .navbar-right { flex-direction: column; align-items: stretch; }
  .nav-cta { text-align: center; }

  .section-title { font-size: 19px; }

  .apps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 8px;
    max-width: 100%;
  }

  .app-tile__icon {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .app-tile__label { font-size: 10px; }

  .apps-count-row { gap: 28px; }
  .apps-count-item__num { font-size: 32px; }

  .case-card {
    flex-direction: column;
  }

  .case-card__logo-area {
    text-align: center;
  }

  .case-card__logo {
    margin: 0 auto;
  }

  .footer__top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer__nav {
    gap: 16px;
  }

  .footer__nav a {
    font-size: 12px;
  }

  .footer__links {
    flex-direction: column;
    gap: 16px;
  }

  .footer__buttons {
    flex-direction: column;
    align-items: center;
  }

  .contact-section__title { font-size: 20px; }

  .pricing-card {
    margin-bottom: 16px;
  }
}

/* Extra small (max 480px) */
@media (max-width: 480px) {
  .apps-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero__title { font-size: 20px; }

  .top-bar__phone { font-size: 12px; }
}
