/* ============================================
   ProITAS LP – Pattern 2 (Impact / Visual)
   派手めデザイン・画像ダミー入り
   ============================================ */

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-primary: #2D8396;
  --color-primary-dark: #1a4f5e;
  --color-accent: #E8833A;
  --color-accent-hover: #d46e28;
  --color-text: #333;
  --color-text-sub: #555;
  --color-text-muted: #888;
  --color-bg: #fff;
  --color-bg-accent: #F4F9FA;
  --color-bg-dark: #0e2a35;
  --color-border: #e0e6e8;
  --font-main: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", serif;
  --font-en: "Lato", "Yu Mincho", sans-serif;
  --header-height: 100px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ---------- Background Particles ---------- */
@keyframes float-up {
  0%   { transform: translateY(0) scale(1); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.6; }
  100% { transform: translateY(-100vh) scale(0.5); opacity: 0; }
}

@keyframes drift {
  0%   { transform: translateX(0); }
  50%  { transform: translateX(30px); }
  100% { transform: translateX(0); }
}

.bg-particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bg-particles span {
  position: absolute;
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
  opacity: 0;
  animation: float-up linear infinite;
}

.bg-particles span:nth-child(1)  { left: 5%;  width: 4px;  height: 4px;  animation-duration: 18s; animation-delay: 0s; }
.bg-particles span:nth-child(2)  { left: 15%; width: 6px;  height: 6px;  animation-duration: 22s; animation-delay: 2s; }
.bg-particles span:nth-child(3)  { left: 25%; width: 3px;  height: 3px;  animation-duration: 16s; animation-delay: 4s; }
.bg-particles span:nth-child(4)  { left: 35%; width: 5px;  height: 5px;  animation-duration: 20s; animation-delay: 1s; }
.bg-particles span:nth-child(5)  { left: 45%; width: 7px;  height: 7px;  animation-duration: 24s; animation-delay: 3s; }
.bg-particles span:nth-child(6)  { left: 55%; width: 4px;  height: 4px;  animation-duration: 19s; animation-delay: 5s; }
.bg-particles span:nth-child(7)  { left: 65%; width: 6px;  height: 6px;  animation-duration: 21s; animation-delay: 0.5s; }
.bg-particles span:nth-child(8)  { left: 75%; width: 3px;  height: 3px;  animation-duration: 17s; animation-delay: 2.5s; }
.bg-particles span:nth-child(9)  { left: 85%; width: 5px;  height: 5px;  animation-duration: 23s; animation-delay: 4.5s; }
.bg-particles span:nth-child(10) { left: 92%; width: 4px;  height: 4px;  animation-duration: 15s; animation-delay: 1.5s; }
.bg-particles span:nth-child(11) { left: 10%; width: 5px;  height: 5px;  animation-duration: 25s; animation-delay: 6s; }
.bg-particles span:nth-child(12) { left: 50%; width: 3px;  height: 3px;  animation-duration: 20s; animation-delay: 7s; }

/* Alternate colors */
.bg-particles span:nth-child(even) {
  background: var(--color-accent);
  opacity: 0;
}

/* ---------- Section scroll-in ---------- */
.l-section {
  position: relative;
  z-index: 1;
}

/* ---------- Layout ---------- */
.l-container {
  max-width: 1200px;
  padding: 0 48px;
  margin: 0 auto;
}

.l-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.l-inner--sm {
  max-width: 720px;
  margin: 0 auto;
}

.l-inner--md {
  max-width: 900px;
  margin: 0 auto;
}

.l-section {
  padding: 100px 0;
}

.bg_light-accent {
  background-color: var(--color-bg-accent);
}

@media (max-width: 768px) {
  .l-container {
    padding: 0 20px;
  }
  .l-section {
    padding: 64px 0;
  }
}

/* ---------- Utility ---------- */
@media (max-width: 900px) {
  .u-hidden-sp { display: none !important; }
}
@media (min-width: 901px) {
  .u-hidden-pc { display: none !important; }
}
.u-sp-only { display: none; }
@media (max-width: 768px) {
  .u-sp-only { display: inline !important; }
}

/* ---------- Text Highlight ---------- */
.text-highlight {
  background-image: linear-gradient(90deg, rgba(232, 131, 58, 0.35), rgba(245, 166, 35, 0.35));
  background-size: 100% 38%;
  background-position: bottom;
  background-repeat: no-repeat;
  padding-bottom: 2px;
}

.text-highlight-white {
  background-image: linear-gradient(90deg, rgba(255,255,255,0.5), rgba(255,255,255,0.3));
  background-size: 100% 35%;
  background-position: bottom;
  background-repeat: no-repeat;
  padding-bottom: 2px;
}

/* ---------- Header ---------- */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 100;
  transition: background 0.4s, box-shadow 0.4s;
}

.l-header.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.l-header__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.l-header__logo a {
  display: block;
}

.logo-pro {
  display: block;
  font-family: var(--font-en);
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1.5px;
  transition: color 0.4s;
}

.logo-sub {
  display: block;
  font-family: var(--font-en);
  font-size: 9px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.5px;
  margin-top: 2px;
  transition: color 0.4s;
}

.l-header.is-scrolled .logo-pro {
  color: var(--color-primary-dark);
}

.l-header.is-scrolled .logo-sub {
  color: var(--color-text-muted);
}

.l-header__right {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header-label {
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: color 0.4s;
}

.l-header.is-scrolled .header-label {
  color: var(--color-text);
}

.c-header-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 32px;
  border-radius: 50px;
  background: linear-gradient(90deg, var(--color-accent), #f5a623);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border: none;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(232, 131, 58, 0.4);
}

.c-header-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232, 131, 58, 0.5);
}

/* Mobile Menu Button */
.l-header__menuBtn {
  display: flex;
  flex-direction: column;
  gap: 7px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}

.l-header__menuBtn span {
  display: block;
  width: 28px;
  height: 1px;
  background: #fff;
  transition: all 0.3s;
}

.l-header.is-scrolled .l-header__menuBtn span {
  background: var(--color-text);
}

.l-header__menuBtn.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.l-header__menuBtn.is-active span:nth-child(2) {
  opacity: 0;
}
.l-header__menuBtn.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Drawer */
.l-drawer {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background: #fff;
  z-index: 99;
  transition: right 0.3s;
  padding: calc(var(--header-height) + 20px) 30px 30px;
}

.l-drawer.is-open {
  right: 0;
}

.l-drawer__nav ul {
  display: flex;
  flex-direction: column;
}

.l-drawer__nav a {
  display: block;
  padding: 15px 0;
  font-size: 14px;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
}

.l-drawer__nav .drawer-cta {
  display: block;
  margin-top: 20px;
  text-align: center;
  padding: 14px 0;
  background: linear-gradient(90deg, var(--color-accent), #f5a623);
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border: none;
}

/* ---------- Hero ---------- */
.p-hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  max-height: 900px;
  overflow: hidden;
}

.p-hero__bg {
  position: absolute;
  inset: 0;
}

.p-hero__img {
  position: absolute;
  inset: 0;
  background: #666;
  background-size: cover;
  background-position: center;
}

.p-hero__video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 115%;
  width: auto;
  height: auto;
  object-fit: cover;
  object-position: center top;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.p-hero__video--active {
  opacity: 1;
}

.p-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14, 42, 53, 0.75) 0%, rgba(45, 131, 150, 0.45) 100%);
}

.p-hero__content {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  width: 100%;
}

.p-hero__label {
  display: inline-block;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 8px 28px;
  margin-bottom: 28px;
}

.p-hero__title {
  color: #fff;
  font-size: 60px;
  font-weight: 400;
  letter-spacing: 3px;
  line-height: 1.4;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.p-hero__sub {
  color: rgba(255, 255, 255, 0.85);
  font-size: 20px;
  margin-top: 22px;
  letter-spacing: 1.5px;
  line-height: 1.9;
}

.p-hero__actions {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.p-hero__cta {
  display: inline-block;
  padding: 18px 52px;
  background: linear-gradient(90deg, var(--color-accent), #f5a623);
  border-radius: 50px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(232, 131, 58, 0.5);
}

.p-hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232, 131, 58, 0.6);
}

.p-hero__cta--consul {
  background: linear-gradient(90deg, var(--color-primary), #3da5b8) !important;
  box-shadow: 0 4px 20px rgba(45, 131, 150, 0.5) !important;
}

.p-hero__cta--consul:hover {
  box-shadow: 0 8px 30px rgba(45, 131, 150, 0.6) !important;
}

.p-hero__cta-sub {
  display: inline-block;
  padding: 18px 44px;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 50px;
  color: #fff;
  font-size: 17px;
  letter-spacing: 1px;
  transition: all 0.3s;
}

.p-hero__cta-sub:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

/* Hero Stats Bar */
.p-hero__stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 28px 0;
}

.p-hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 60px;
}

.p-hero__stat-num {
  font-family: var(--font-en);
  font-size: 56px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.p-hero__stat-num small {
  font-size: 24px;
  font-weight: 700;
}

.p-hero__stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  margin-top: 6px;
  letter-spacing: 1px;
}

.p-hero__stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
  .p-hero {
    min-height: 100svh;
    max-height: 100svh;
  }
  .p-hero__video {
    min-width: 180%;
    min-height: 100%;
    object-position: center center;
  }
  .p-hero__title {
    font-size: 32px;
    letter-spacing: 1px;
  }
  .p-hero__sub {
    font-size: 14px;
  }
  .p-hero__actions {
    flex-direction: column;
    gap: 12px;
  }
  .p-hero__cta {
    padding: 14px 36px;
    font-size: 14px;
  }
  .p-hero__cta-sub {
    padding: 12px 32px;
    font-size: 13px;
  }
  .p-hero__stats {
    padding: 16px 0;
  }
  .p-hero__stat {
    padding: 0 24px;
  }
  .p-hero__stat-num {
    font-size: 32px;
  }
  .p-hero__stat-divider {
    height: 36px;
  }
}

/* ---------- Section Title ---------- */
.c-sec-title {
  text-align: center;
  margin-bottom: 56px;
}

.c-sec-title__en {
  display: block;
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 4px;
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.c-sec-title__ja {
  color: var(--color-text);
  font-size: 36px;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1.5;
}

.c-sec-title--white .c-sec-title__en {
  color: rgba(255,255,255,0.7);
}

.c-sec-title--white .c-sec-title__ja {
  color: #fff;
}

@media (max-width: 768px) {
  .c-sec-title {
    margin-bottom: 40px;
  }
  .c-sec-title__ja {
    font-size: 26px;
    line-height: 1.6;
  }
}

/* ---------- Problems (Checklist style) ---------- */
.p-problems__checklist {
  background: #e8ebf0;
  border-radius: 12px;
  padding: 56px 64px;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.p-problems__checklist::before {
  content: "ITシステム開発について";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary-dark);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 8px 28px;
  border-radius: 6px;
  white-space: nowrap;
}

.p-problems__checklist::after {
  content: "";
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 8px solid var(--color-primary-dark);
}

.p-problems__checklist ul {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.p-problems__checklist li {
  display: flex;
  align-items: center;
  gap: 18px;
}

.p-problems__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--color-primary-dark);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border-radius: 6px;
  flex-shrink: 0;
}

.p-problems__text {
  font-size: 22px;
  color: var(--color-text);
  font-weight: 400;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .p-problems__checklist {
    padding: 44px 28px;
  }
  .p-problems__checklist::before {
    font-size: 14px;
    padding: 6px 20px;
  }
  .p-problems__text {
    font-size: 17px;
  }
  .p-problems__check {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
}

/* ---------- Mid CTA Band ---------- */
.p-mid-cta {
  position: relative;
  overflow: hidden;
  min-height: 480px;
}

.p-mid-cta__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.p-mid-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(14, 42, 53, 0.1) 0%, rgba(14, 42, 53, 0.65) 50%, rgba(14, 42, 53, 0.88) 100%);
}

.p-mid-cta__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 480px;
}

.p-mid-cta__content {
  text-align: center;
  max-width: 520px;
  padding: 60px 0;
}

.p-mid-cta__text {
  color: #fff;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.7;
  margin-bottom: 40px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.p-mid-cta__btn {
  display: inline-block;
  padding: 24px 72px;
  background: linear-gradient(90deg, var(--color-accent), #f5a623);
  border-radius: 50px;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  transition: all 0.3s;
  box-shadow: 0 6px 24px rgba(232, 131, 58, 0.45);
  letter-spacing: 1px;
}

.p-mid-cta__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(232, 131, 58, 0.55);
}

@media (max-width: 768px) {
  .p-mid-cta {
    min-height: 520px;
  }
  .p-mid-cta__bg {
    background-position: 8% 15%;
    background-size: 300% auto;
  }
  .p-mid-cta__overlay {
    background: linear-gradient(180deg, rgba(14, 42, 53, 0.1) 0%, rgba(14, 42, 53, 0.55) 45%, rgba(14, 42, 53, 0.93) 100%);
  }
  .p-mid-cta__inner {
    justify-content: center;
    align-items: flex-end;
    min-height: 520px;
  }
  .p-mid-cta__content {
    padding: 24px 20px 40px;
    max-width: 100%;
  }
  .p-mid-cta__text {
    font-size: 26px;
    line-height: 1.6;
    margin-bottom: 24px;
    letter-spacing: 1px;
  }
  .p-mid-cta__btn {
    padding: 20px 52px;
    font-size: 18px;
  }
}

/* ---------- Expertise ---------- */
.p-expertise__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.p-expertise__card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.p-expertise__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.p-expertise__card-img {
  height: 220px;
  background-color: #888;
  background-size: cover;
  background-position: center;
}

.p-expertise__card-body {
  padding: 28px 24px;
  position: relative;
}

.p-expertise__card-num {
  font-family: var(--font-en);
  font-size: 48px;
  font-weight: 900;
  color: var(--color-primary);
  opacity: 0.12;
  position: absolute;
  top: -30px;
  right: 16px;
  line-height: 1;
}

.p-expertise__card-title {
  color: var(--color-text);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 12px;
}

.p-expertise__card-text {
  color: var(--color-text-sub);
  font-size: 15px;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .p-expertise__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .p-expertise__card-img {
    height: 220px;
  }
}

/* ---------- Services (Zigzag / Reason style) ---------- */
.p-services__list {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.p-services__row {
  position: relative;
  min-height: 400px;
}

/* Image: 65% width, positioned left */
.p-services__img {
  position: absolute;
  left: 0;
  top: 0;
  width: 65%;
  height: 100%;
  background: #888;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
}

/* Card: overlaps image from right */
.p-services__card {
  position: relative;
  margin-left: 45%;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  padding: 48px 44px;
  z-index: 2;
  margin-top: 40px;
  margin-bottom: 40px;
}

.p-services__card-num {
  display: block;
  font-family: var(--font-en);
  font-size: 64px;
  font-weight: 900;
  color: var(--color-accent);
  opacity: 0.2;
  line-height: 1;
  position: absolute;
  top: -28px;
  left: 44px;
}

.p-services__card-title {
  color: var(--color-text);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 16px;
}

.p-services__card-text {
  color: var(--color-text-sub);
  font-size: 16px;
  line-height: 2;
}

/* Reverse: image right, card left */
.p-services__row--reverse .p-services__img {
  left: auto;
  right: 0;
}

.p-services__row--reverse .p-services__card {
  margin-left: 0;
  margin-right: 45%;
}

.p-services__row--reverse .p-services__card-num {
  left: auto;
  right: 44px;
}

@media (max-width: 768px) {
  .p-services__list {
    padding: 0 20px;
    gap: 40px;
  }
  .p-services__row {
    min-height: auto;
  }
  .p-services__img {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 8px 8px 0 0;
  }
  .p-services__card {
    margin-left: 0;
    margin-top: -20px;
    margin-bottom: 0;
    padding: 32px 24px;
    border-radius: 0 0 8px 8px;
  }
  .p-services__row--reverse .p-services__card {
    margin-right: 0;
  }
  .p-services__card-num {
    font-size: 48px;
    top: -20px;
    left: 24px;
  }
  .p-services__row--reverse .p-services__card-num {
    left: 24px;
    right: auto;
  }
  .p-services__card-title {
    font-size: 21px;
  }
  .p-services__card-text {
    font-size: 14px;
  }
}

/* ---------- Start ---------- */
.p-start__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.p-start__card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.p-start__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.p-start__card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: linear-gradient(90deg, var(--color-accent), #f5a623);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 4px 18px;
  border-radius: 50px;
}

.p-start__card-badge--paid {
  background: linear-gradient(90deg, var(--color-primary), #3a9fb0);
}

.p-start__card-img {
  height: 200px;
  background: #888;
  background-size: cover;
  background-position: center;
}

.p-start__card-body {
  padding: 28px 24px;
}

.p-start__card-title {
  color: var(--color-text);
  font-size: 21px;
  font-weight: 400;
  margin-bottom: 10px;
}

.p-start__card-text {
  color: var(--color-text-sub);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 18px;
}

.p-start__card-btn {
  display: inline-block;
  padding: 14px 36px;
  background: linear-gradient(90deg, var(--color-accent), #f5a623);
  border-radius: 50px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s;
  box-shadow: 0 2px 12px rgba(232, 131, 58, 0.3);
}

.p-start__card-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232, 131, 58, 0.4);
}

.p-start__card-btn--consul {
  background: linear-gradient(90deg, var(--color-primary), #3da5b8);
  box-shadow: 0 2px 12px rgba(45, 131, 150, 0.4);
}

.p-start__card-btn--consul:hover {
  box-shadow: 0 4px 16px rgba(45, 131, 150, 0.5);
}

.p-start__card-btn--sub {
  background: transparent;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  box-shadow: none;
}

.p-start__card-btn--sub:hover {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(45, 131, 150, 0.3);
}

@media (max-width: 768px) {
  .p-start__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .p-start__card-img {
    height: 160px;
  }
}

/* ---------- Team ---------- */
.p-team {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.p-team__bg {
  position: absolute;
  inset: 0;
}

.p-team__bg-img {
  position: absolute;
  inset: 0;
  background: #555;
  background-size: cover;
  background-position: center;
}

.p-team__bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 42, 53, 0.85);
}

.p-team .l-container {
  position: relative;
  z-index: 2;
}

.p-team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.p-team__card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 48px 28px 40px;
  text-align: center;
  transition: background 0.3s;
}

.p-team__card:hover {
  background: rgba(255, 255, 255, 0.14);
}

.p-team__card-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background-color: #999;
  background-size: cover;
  background-position: center;
  margin: 0 auto 24px;
  border: 4px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3), 0 0 0 8px rgba(45, 131, 150, 0.15);
}

.p-team__card-info {}

.p-team__card-name {
  color: #fff;
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.p-team__card-company {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  margin-bottom: 8px;
}

.p-team__card-role {
  color: var(--color-accent);
  font-size: 17px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .p-team {
    padding: 64px 0;
  }
  .p-team__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .p-team__card {
    display: flex;
    align-items: center;
    gap: 24px;
    text-align: left;
    padding: 28px;
  }
  .p-team__card-photo {
    margin: 0;
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    border-width: 3px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3), 0 0 0 6px rgba(45, 131, 150, 0.15);
  }
  .p-team__card-name {
    font-size: 22px;
  }
}

/* ---------- Flow ---------- */
.p-flow__list {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.p-flow__item {
  flex: 1;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.p-flow__item-head {
  background: var(--color-primary);
  padding: 12px 0;
}

.p-flow__item-num {
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 2px;
}

.p-flow__item-img {
  height: 140px;
  background: #888;
  background-size: cover;
  background-position: center;
}

.p-flow__item-body {
  padding: 24px 16px;
}

.p-flow__item-title {
  color: var(--color-text);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 10px;
}

.p-flow__item-text {
  color: var(--color-text-sub);
  font-size: 15px;
  line-height: 1.7;
}

.p-flow__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .p-flow__list {
    flex-direction: column;
    gap: 0;
  }
  .p-flow__item {
    border-radius: 8px;
  }
  .p-flow__item-img {
    height: 120px;
  }
  .p-flow__arrow {
    padding: 12px 0;
  }
  .p-flow__arrow svg {
    transform: rotate(90deg);
  }
}

/* ---------- FAQ ---------- */
.p-faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.p-faq__item {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 12px;
}

.p-faq__q,
.p-faq__a {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 28px;
}

.p-faq__a {
  background: var(--color-bg-accent);
  border-top: 1px solid var(--color-border);
}

.p-faq__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-family: var(--font-en);
  font-size: 17px;
  font-weight: 700;
  flex-shrink: 0;
}

.p-faq__mark--q {
  background: var(--color-accent);
  color: #fff;
}

.p-faq__mark--a {
  background: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}

.p-faq__q p {
  font-size: 18px;
  color: var(--color-text);
  line-height: 1.7;
  padding-top: 4px;
  font-weight: 400;
}

.p-faq__a p {
  font-size: 16px;
  color: var(--color-text-sub);
  line-height: 1.8;
  padding-top: 5px;
}

/* ---------- CTA ---------- */
.p-cta {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.p-cta__bg {
  position: absolute;
  inset: 0;
}

.p-cta__bg-img {
  position: absolute;
  inset: 0;
  background: #555;
  background-size: cover;
  background-position: center;
}

.p-cta__bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 42, 53, 0.8);
}

.p-cta__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
}

.p-cta__title {
  color: #fff;
  font-size: 40px;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.p-cta__text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  margin-bottom: 36px;
  line-height: 1.9;
}

.p-cta__btn {
  display: inline-block;
  padding: 20px 72px;
  background: linear-gradient(90deg, var(--color-accent), #f5a623);
  border-radius: 50px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  transition: all 0.3s;
  box-shadow: 0 6px 24px rgba(232, 131, 58, 0.5);
}

.p-cta__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(232, 131, 58, 0.6);
}

.p-cta__note {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  margin-top: 16px;
}

@media (max-width: 768px) {
  .p-cta {
    padding: 56px 0;
  }
  .p-cta__title {
    font-size: 28px;
    letter-spacing: 0;
  }
  .p-cta__text {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 28px;
  }
  .p-cta__btn {
    padding: 18px 44px;
    font-size: 16px;
  }
  .p-cta__note {
    font-size: 12px;
  }
}

/* ---------- Scroll-in Animation ---------- */
.js-fade {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.js-fade--in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Footer ---------- */
.l-footer {
  background: var(--color-bg-dark);
  padding: 48px 0 24px;
}

.l-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.l-footer__team {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  letter-spacing: 0.5px;
}

.l-footer__right p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

.l-footer__right a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s;
}

.l-footer__right a:hover {
  color: #fff;
}

.c-copyright {
  color: rgba(255, 255, 255, 0.3);
  font-size: 11px;
  text-align: center;
  margin-top: 24px;
  padding: 0 48px;
}

@media (max-width: 768px) {
  .l-footer__inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .c-copyright {
    padding: 0 20px;
  }
}
