@charset "UTF-8";
/* Modern Reset CSS */
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin and padding */
* {
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.6;
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Remove list styles */
ul,
ol {
  list-style: none;
}

/* Make images easier to work with */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

/* Remove button styling */
button {
  background: none;
  border: none;
  cursor: pointer;
}

/* Remove link styling */
a {
  color: inherit;
  text-decoration: none;
}

/* Remove textarea resize */
textarea {
  resize: vertical;
}

/* Remove input number arrows */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

/* Remove input search styling */
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}

/* Table reset */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Remove quotes */
blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
}

/* Form elements */
fieldset {
  border: none;
}

legend {
  padding: 0;
}

/* Remove default focus outline, but keep for keyboard navigation */
:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

/* Prevent horizontal overflow */
html,
body {
  overflow-x: hidden;
}

/* Better text overflow handling */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/* Remove default summary marker */
summary {
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

body {
  overflow-x: hidden;
  background: linear-gradient(180deg, #FAFAF8 0%, #F0F4F2 100%);
  color: #000000;
  border: 10px solid #00A68A;
  font-family: "Noto Sans JP", "Noto Sans", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "メイリオ", Meiryo, sans-serif;
}
@media (max-width: 992px) {
  body {
    border: 6px solid #00A68A;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.25rem;
}

h2 {
  font-size: 1.875rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

a:hover {
  opacity: 0.8;
}

img {
  width: 100%;
  height: auto;
}

.l-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 64px;
}
@media (max-width: 768px) {
  .l-container {
    padding: 0 1.5rem;
  }
}
@media (max-width: 576px) {
  .l-container {
    padding: 0 1rem;
  }
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 1.5rem 0;
}
.l-header .l-container {
  max-width: 1600px;
}
.l-header--scrolled {
  padding: 0.5rem 0;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.l-header--scrolled .l-header__logo img {
  filter: none;
}
.l-header--scrolled .l-header__menu a {
  color: #00A68A;
}
.l-header--scrolled .l-header__menu a::after {
  background: #00A68A;
}
.l-header--scrolled .l-header__menu a:hover {
  color: #00FFB8;
}
@media (max-width: 992px) {
  .l-header--scrolled .l-header__cta .c-button {
    background-color: #00A68A;
    color: #FFFFFF;
    border-color: #00A68A;
  }
}

.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  letter-spacing: 0.1em;
}
@media (max-width: 992px) {
  .l-header__inner {
    padding-left: 2%;
    padding-right: 2%;
  }
}

.l-header__logo {
  display: flex;
  align-items: center;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.l-header__logo a {
  display: block;
  text-decoration: none;
}
.l-header__logo img {
  width: 108px;
  height: auto;
  display: block;
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(0) invert(1);
}
@media (max-width: 992px) {
  .l-header__logo img {
    filter: brightness(0) invert(1);
  }
}
.l-header__logo:hover img {
  opacity: 0.8;
}

.l-header__menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
  justify-content: center;
}
@media (max-width: 992px) {
  .l-header__menu {
    display: none;
  }
}
.l-header__menu a {
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.875rem;
  transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  text-transform: uppercase;
}
.l-header__menu a::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #FFFFFF;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.l-header__menu a:hover {
  color: rgba(255, 255, 255, 0.8);
}
.l-header__menu a:hover::after {
  width: 20px;
}

.l-header__cta .c-button {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0.5rem !important;
  font-weight: 700;
}
@media (max-width: 992px) {
  .l-header__cta .c-button {
    background-color: #FFFFFF;
    color: #00A68A;
    border-color: #FFFFFF;
  }
}

.l-footer {
  background-color: #00A68A;
  color: #FFFFFF;
  padding: 3rem 0;
}

.l-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.l-footer__logo {
  font-size: 1.125rem;
  font-weight: 700;
  color: #FFFFFF;
}

.l-footer__copyright {
  font-size: 0.75rem;
  color: #E0E0E0;
}

.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  border-radius: 50px;
  transition: 0.3s ease;
  cursor: pointer;
  border: 1px solid transparent;
  min-width: 200px;
}
.c-button--primary, .c-button--secondary {
  background: #00A68A;
  color: #FFFFFF;
  border: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 166, 138, 0.3);
  font-weight: 600;
}
.c-button--primary.c-glass, .c-button--secondary.c-glass {
  background: linear-gradient(135deg, #00FFB8 0%, #00A68A 100%) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: none !important;
  box-shadow: 0 4px 16px rgba(0, 166, 138, 0.3) !important;
}
.c-button--primary::before, .c-button--secondary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}
.c-button--primary .icon, .c-button--secondary .icon {
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.c-button--primary:hover, .c-button--secondary:hover {
  box-shadow: 0 8px 32px rgba(0, 166, 138, 0.5);
  transform: translateY(-2px);
}
.c-button--primary:hover::before, .c-button--secondary:hover::before {
  left: 100%;
}
.c-button--primary:hover .icon, .c-button--secondary:hover .icon {
  transform: translateX(3px);
}
.c-button--primary:hover.c-glass, .c-button--secondary:hover.c-glass {
  box-shadow: 0 8px 32px rgba(0, 166, 138, 0.5) !important;
}
.c-button--primary:active, .c-button--secondary:active {
  transform: translateY(0);
}
.c-button--alternate {
  background-color: #FFFFFF;
  color: #00A68A;
  border-color: #00A68A;
}
.c-button--alternate:hover {
  background-color: #00A68A;
  color: #FFFFFF;
}
.c-button--small {
  padding: 0.25rem 1rem;
  font-size: 0.75rem;
}

.c-section-title {
  text-align: center;
  margin-bottom: 3rem;
  padding: 40px 0;
  position: relative;
  z-index: 1;
}

.c-section-title__tagline {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: #00FFB8;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  text-shadow: 0 0 20px rgba(0, 217, 165, 0.5);
}
.c-section-title__tagline::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #00FFB8 0%, transparent 100%);
}

.c-section-title__heading {
  font-size: 3rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 1rem;
  letter-spacing: 0.0625rem;
  line-height: 1.1;
  background: linear-gradient(135deg, #00A68A 0%, #00FFB8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 768px) {
  .c-section-title__heading {
    font-size: 1.875rem;
  }
}

.c-section-title__text {
  font-size: 1.125rem;
  color: #0A1628;
  font-weight: 600;
  letter-spacing: 0.0625rem;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.8;
}

html.is-page-loading {
  overflow: hidden;
}

html.is-page-loading body {
  overflow: hidden;
}

.c-loader {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: #00A68A;
  color: #FFFFFF;
}

html.is-page-loading .c-loader {
  display: block;
}

.c-loader__content {
  height: 100dvh;
  width: 100%;
  padding: clamp(24px, 6vw, 93px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.c-loader__logo-wrapper {
  position: relative;
  width: clamp(56px, 8vw, 70px);
  aspect-ratio: 69.88/114.92;
  transform-origin: 50% 50%;
}

.c-loader__logo {
  grid-area: 1/1; /* Ensure they stack if using grid */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}
.c-loader__logo svg {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  z-index: 2;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

/* Base Stroke Layer (Vivus handles this, but we set initial state) */
.c-loader__logo--stroke {
  z-index: 10;
  /* Logo Fade-in Animation for the whole group */
  opacity: 0;
  animation: logo-fade-in 0.8s ease-out forwards;
  animation-delay: 0.2s;
}
.c-loader__logo--stroke svg path {
  fill-opacity: 0;
  stroke: #FFFFFF;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: fill-opacity 0.25s ease, stroke-opacity 0.25s ease;
}

/* Filled Layer - Overlay */
.c-loader__logo--fill {
  z-index: 11;
  /* Initially hidden, fades in with stroke or slightly after */
  opacity: 0;
  /* Concurrent Fade In */
  animation: logo-fill-fade-in 1.5s ease-out forwards;
  animation-delay: 0.5s; /* Start slightly after stroke appears */
}
.c-loader__logo--fill svg path {
  fill: #FFFFFF;
  fill-opacity: 1;
  stroke: none;
}

@keyframes logo-fade-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes logo-fill-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.c-loader.is-exiting {
  pointer-events: none;
}
@supports (clip-path: inset(0)) {
  .c-loader.is-exiting {
    animation: loader-wipe-out 0.9s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }
}
@supports not (clip-path: inset(0)) {
  .c-loader.is-exiting {
    animation: loader-fade-out 0.6s ease forwards;
  }
}
@media (prefers-reduced-motion: reduce) {
  .c-loader.is-exiting {
    animation: none;
    display: none;
  }
}

@keyframes loader-wipe-out {
  from {
    clip-path: inset(0 0 0 0);
  }
  to {
    clip-path: inset(0 0 0 100%);
  }
}
@keyframes loader-fade-out {
  to {
    opacity: 0;
    visibility: hidden;
  }
}
.c-glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.c-glass:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.2);
  transform: translateY(-4px);
}

.c-glow {
  position: relative;
}
.c-glow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(0, 217, 165, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}
.c-glow:hover::before {
  opacity: 1;
}

.c-button-gradient {
  background: linear-gradient(135deg, #00FFB8 0%, #00A68A 100%);
  color: #FFFFFF;
  border: none;
  position: relative;
  overflow: hidden;
}
.c-button-gradient::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}
.c-button-gradient:hover::before {
  left: 100%;
}
.c-button-gradient:hover {
  box-shadow: 0 8px 24px rgba(0, 166, 138, 0.4);
  transform: translateY(-2px);
}

.c-wave-divider {
  position: relative;
  width: 100%;
  height: 120px;
  overflow: hidden;
  z-index: 1;
}
.c-wave-divider svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  fill: #FAFAF8;
}
.c-wave-divider--up {
  transform: rotate(180deg);
}
.c-section-divider {
  position: relative;
  width: 100%;
  height: 120px;
  overflow: hidden;
  z-index: 1;
  margin: 0;
}
.c-section-divider svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  fill: #FFFFFF;
}
.p-about + .c-section-divider svg svg {
  fill: linear-gradient(180deg, #FFFFFF 0%, #FAFAF8 100%);
}
.p-challenge + .c-section-divider svg svg {
  fill: #FFFFFF;
}
.c-section-divider--up {
  transform: rotate(180deg);
}
.c-section-divider__decoration {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.c-section-divider__decoration--left {
  left: 0;
}
.c-section-divider__decoration--right {
  right: 0;
}
.c-section-divider__ring {
  width: 250px;
  height: 250px;
  border: 16px solid #00FFB8;
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 0 60px rgba(0, 255, 184, 0.4), 0 0 120px rgba(0, 255, 184, 0.2), inset 0 0 60px rgba(0, 255, 184, 0.1);
  position: relative;
}
.c-section-divider__ring::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  border: 8px solid rgba(0, 255, 184, 0.7);
  border-radius: 50%;
  background: transparent;
  box-shadow: inset 0 0 30px rgba(0, 255, 184, 0.2);
}
.c-section-divider__ring::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  background: #00FFB8;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(0, 255, 184, 0.9), 0 0 40px rgba(0, 255, 184, 0.6);
}

.p-fv {
  position: relative;
  height: 105vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  background: #0A1628;
  color: #FFFFFF;
  overflow: hidden;
  padding-top: 80px;
}
@media (max-width: 992px) {
  .p-fv {
    height: auto;
    height: 100vh;
    padding: 120px 0 60px;
    max-height: 932px;
  }
}

.p-fv__layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.p-fv__layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.p-fv__layer--1 {
  z-index: 0;
}

.p-fv__layer--diagonal {
  z-index: 1;
  background-color: rgb(0, 166, 138);
  clip-path: polygon(0px 0px, 70% 0px, 45% 100%, 0% 100%);
}
@media (max-width: 992px) {
  .p-fv__layer--diagonal {
    clip-path: polygon(0 25%, 100% 35%, 100% 100%, 0% 100%);
    opacity: 1;
    transform: rotate(180deg);
  }
}

.p-fv__layer--2 {
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 5%;
}
.p-fv__layer--2 img {
  width: auto;
  height: 85%;
  max-width: 60%;
  min-width: 1100px;
  object-fit: contain;
  transform: translate(10%, 5%);
  position: relative;
  top: 100px;
}
@media (max-width: 1512px) {
  .p-fv__layer--2 img {
    max-width: 900px;
    height: auto;
    width: 100%;
    min-width: auto;
    transform: translateY(5%);
    top: 70px;
    right: -4%;
  }
}
@media (max-width: 1365px) {
  .p-fv__layer--2 img {
    max-width: 850px;
  }
}
@media (max-width: 992px) {
  .p-fv__layer--2 {
    opacity: 1;
    align-items: flex-end;
    justify-content: center;
    padding-right: 0;
  }
  .p-fv__layer--2 img {
    max-width: 700px;
    height: auto;
    width: 120%;
    min-width: auto;
    transform: translateY(5%);
    top: 0;
    right: inherit;
  }
}

.p-fv__content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 64px;
}
@media (max-width: 992px) {
  .p-fv__content {
    padding: 0 1.5rem;
    top: -50px;
  }
}

.p-fv__title {
  font-size: clamp(5rem, 4.3vw, 4.3vw);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}
@media (max-width: 992px) {
  .p-fv__title br {
    display: none;
  }
  .p-fv__title {
    font-size: 9vw;
  }
}
@media (max-width: 576px) {
  .p-fv__title {
    font-size: 8.5vw;
  }
}

.p-fv__subtitle {
  font-size: clamp(0.9rem, 1.2vw, 1.25rem);
  line-height: 1.8;
  margin-bottom: 3rem;
  max-width: 500px;
  color: #FFFFFF;
  font-weight: 500;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}
@media (max-width: 992px) {
  .p-fv__subtitle {
    max-width: 100%;
  }
}

.p-fv__actions {
  display: inline-flex;
  gap: 1.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-radius: 9999px;
}
@media (max-width: 576px) {
  .p-fv__actions {
    display: flex;
    gap: 1rem;
    border-radius: 100px;
    padding: 10px 10px;
    font-size: 14px;
  }
}
.p-fv__actions .c-button {
  min-width: 180px;
  border-radius: 9999px;
  font-weight: 700;
}
@media (max-width: 576px) {
  .p-fv__actions .c-button {
    width: 100%;
    min-width: auto;
  }
}

.c-button.c-button--secondary.c-glass {
  background: linear-gradient(135deg, #00FFB8 0%, rgb(76.5, 255, 205.3) 100%);
  border: none;
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), 0 0 15px rgba(0, 255, 200, 0.3);
}
.c-button.c-button--secondary.c-glass:hover {
  background: linear-gradient(135deg, rgb(25.5, 255, 191.1) 0%, rgb(102, 255, 212.4) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15), 0 0 20px rgba(0, 255, 200, 0.4);
}

.p-fv__decoration-corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 20vw;
  max-width: 50px;
  height: 20vw;
  max-height: 50px;
  background: #00A68A;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  z-index: 5;
  pointer-events: none;
}
@media (max-width: 576px) {
  .p-fv__decoration-corner {
    width: 30px;
    height: 30px;
  }
}

.p-about {
  position: relative;
  padding: 0 0 5rem;
  margin-top: -60px;
  z-index: 10;
  overflow: hidden;
  background-color: transparent;
}
@media (min-width: 1590px) {
  .p-about {
    margin-top: -80px;
  }
}
@media (max-width: 768px) {
  .p-about {
    padding: 0 0 2rem;
    margin-top: -60px;
  }
  .p-about .l-container {
    padding: 0 1%;
  }
}

.p-about__bg {
  position: absolute;
  top: 120px;
  left: 0;
  width: 100%;
  height: calc(100% - 100px);
  z-index: 1;
  pointer-events: none;
  opacity: 0.5;
}
.p-about__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-about__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8) 0%, transparent 100%);
}

.p-about__card {
  position: relative;
  z-index: 2;
  background: #FFFFFF;
  border-radius: 40px;
  padding: 5rem 4rem;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.1);
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 768px) {
  .p-about__card {
    padding: 4rem 2rem;
    border-radius: 24px;
    margin: 0 1rem;
  }
}

.p-about__header {
  margin-bottom: 3rem;
}

.p-about__heading {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .p-about__heading {
    font-size: 22px;
  }
}

.p-about__icon {
  width: 140px;
  height: 140px;
  margin: 0 auto 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-about__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(43%) sepia(97%) saturate(2256%) hue-rotate(143deg) brightness(92%) contrast(101%);
}
@media (max-width: 768px) {
  .p-about__icon {
    width: 100px;
    height: 100px;
    margin-bottom: 2.5rem;
  }
}

.p-about__text p {
  font-size: clamp(0.8rem, 1.3vw, 1rem);
  line-height: 2;
  text-align: center;
  margin-bottom: 2rem;
}
.p-about__text p:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .p-about__text p {
    font-size: 0.875rem !important;
  }
}
@media (max-width: 768px) {
  .p-about__text {
    text-align: left !important;
  }
}

.p-challenge {
  padding: 4rem 0;
  background: #FFFFFF;
  opacity: 1;
  visibility: visible;
  position: relative;
  overflow: hidden;
}
.p-challenge::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(rgba(0, 166, 138, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 166, 138, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

.p-challenge__decoration {
  position: absolute;
  top: 10px;
  left: -500px;
  z-index: 1;
  pointer-events: none;
}

.p-challenge .p-challenge__decoration {
  top: 10px;
  left: -500px;
}

.p-business .p-business__decoration {
  top: 10px;
  left: initial;
  right: -500px;
}
@media (max-width: 768px) {
  .p-business .p-business__decoration {
    top: 200px !important;
    right: -200px !important;
    bottom: inherit !important;
    transform: scale(0.7);
    transform-origin: top left;
  }
}

.p-challenge__ring {
  width: clamp(400px, 100vw, 1000px);
  height: clamp(400px, 100vw, 1000px);
  position: relative;
  opacity: 0.8;
}
.p-challenge__ring-path {
  fill: transparent;
  stroke: #00FFB8;
  stroke-width: clamp(80px, 3vw, 160px);
  stroke-linecap: round;
  transition: stroke-dashoffset 2s cubic-bezier(0.23, 1, 0.32, 1);
}
@media (min-width: 1400px) {
  .p-challenge__ring {
    opacity: 0.6;
  }
}
@media (max-width: 768px) {
  .p-challenge__ring {
    opacity: 0.4;
  }
}

.p-challenge__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .p-challenge__cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.p-challenge__card {
  position: relative;
  min-height: clamp(480px, 50vw, 630px);
  padding: clamp(1.5rem, 4vw, 2rem);
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(180deg, #0A1628 0%, #0A0F1A 100%);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.6s cubic-bezier(0.23, 1, 0.32, 1), border-color 0.4s ease;
  clip-path: polygon(0 0, 100% 0, 100% 95%, 95% 100%, 0 100%);
}
.p-challenge__card:first-child {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 5% 100%, 0 95%);
}
.p-challenge__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle, rgba(0, 217, 165, 0.3) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 0;
}
.p-challenge__card::after {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, #00FFB8 0%, transparent 50%, #00A68A 100%);
  border-radius: 34px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.p-challenge__card:hover {
  border-color: rgba(0, 255, 184, 0.5);
  box-shadow: 0 32px 80px rgba(0, 255, 184, 0.25), 0 0 60px rgba(0, 255, 184, 0.1);
  transform: translateY(-12px) scale(1.02);
}
.p-challenge__card:hover::before {
  opacity: 0.7;
}
.p-challenge__card:hover::after {
  opacity: 0.3;
}
.p-challenge__card[data-animate] {
  opacity: 0;
  transform: translateY(60px);
}
.p-challenge__card[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.p-challenge__card[data-animate]:nth-child(2) {
  transition-delay: 0.15s;
}
@media (max-width: 768px) {
  .p-challenge__card {
    clip-path: none;
  }
  .p-challenge__card:first-child {
    clip-path: none;
  }
}

.p-challenge__card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  opacity: 0.6;
  transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), transform 1.2s cubic-bezier(0.23, 1, 0.32, 1), filter 0.8s ease;
  border-radius: 24px;
  filter: saturate(0.8);
}
.p-challenge__card-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(10, 22, 40, 0.3) 0%, rgba(10, 22, 40, 0.6) 50%, rgba(10, 15, 26, 0.9) 100%);
  border-radius: 24px;
  z-index: 1;
}
.p-challenge__card-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 166, 138, 0.1);
  border-radius: 24px;
  z-index: 2;
  mix-blend-mode: overlay;
}
.p-challenge__card:hover .p-challenge__card-image {
  opacity: 0.8;
  transform: scale(1.08);
  filter: saturate(1);
}

.p-challenge__card-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
  justify-content: flex-end;
  padding-bottom: 1.5rem;
}

.p-challenge__card-content .c-section-title__tagline {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.p-challenge__card-content .c-section-title__tagline::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 2px;
  background: #00FFB8;
  transition: width 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.p-challenge__card:hover .p-challenge__card-content .c-section-title__tagline::before {
  width: 24px;
}

.p-challenge__card-title {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.3;
  background: linear-gradient(90deg, #FFFFFF 0%, #FFFFFF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  transition: background 0.6s ease;
}
.p-challenge__card:hover .p-challenge__card-title {
  background: linear-gradient(90deg, #FFFFFF 0%, #00FFB8 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.p-challenge__card-text {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.8;
  opacity: 0.85;
  max-width: 90%;
  transform: translateY(10px);
  opacity: 0.6;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1) 0.1s, opacity 0.6s ease 0.1s;
}
.p-challenge__card:hover .p-challenge__card-text {
  transform: translateY(0);
  opacity: 0.9;
}
@media (max-width: 768px) {
  .p-challenge__card-text {
    font-size: 0.875rem;
  }
}

.p-challenge__card-accent {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), background 0.4s ease;
}
.p-challenge__card-accent::after {
  content: attr(data-number);
  font-size: 1.125rem;
  font-weight: 700;
  color: #00FFB8;
}
.p-challenge__card:hover .p-challenge__card-accent {
  transform: rotate(45deg) scale(1.1);
  background: rgba(0, 255, 184, 0.2);
}

@media (max-width: 992px) {
  .p-challenge__card {
    min-height: 500px;
  }
}
@media (max-width: 768px) {
  .p-challenge {
    padding: 3rem 0;
  }
  .p-challenge__cards {
    grid-template-columns: 1fr;
  }
  .p-challenge__card {
    min-height: 400px;
    border-radius: 24px;
  }
  .p-challenge__card-content {
    padding-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .p-challenge__decoration {
    top: 200px !important;
    left: -100px !important;
    transform: scale(0.7);
    transform-origin: top left;
  }
  .p-challenge__card {
    min-height: 350px;
    padding: 1rem;
  }
  .p-challenge__card-title {
    font-size: 1.125rem;
  }
}
.p-business {
  padding: 4rem 0;
  background: linear-gradient(180deg, #FFFFFF 0%, #FAFAF8 100%);
  opacity: 1;
  visibility: visible;
  position: relative;
  overflow: hidden;
}
.p-business::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 255, 184, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: float-orb 20s ease-in-out infinite;
}
.p-business::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 166, 138, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: float-orb 25s ease-in-out infinite reverse;
}

.p-business__decoration {
  position: absolute;
  bottom: -250px;
  right: -250px;
  z-index: 1;
  pointer-events: none;
}

.p-business__ring {
  width: clamp(400px, 100vw, 1000px);
  height: clamp(400px, 100vw, 1000px);
  position: relative;
  opacity: 0.7;
}
.p-business__ring-path {
  fill: transparent;
  stroke: #00FFB8;
  stroke-width: clamp(80px, 3vw, 160px);
  stroke-linecap: round;
  transition: stroke-dashoffset 2s cubic-bezier(0.23, 1, 0.32, 1);
}
@media (min-width: 1400px) {
  .p-business__ring {
    opacity: 0.5;
  }
}
@media (max-width: 768px) {
  .p-business__ring {
    opacity: 0.3;
  }
}

@keyframes float-orb {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -20px) scale(1.05);
  }
  66% {
    transform: translate(-20px, 30px) scale(0.95);
  }
}
.p-business__cards {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: repeat(3, auto);
  gap: clamp(1rem, 2.5vw, 1.5rem);
  position: relative;
  z-index: 1;
}
.p-business__cards .p-business__card:nth-child(1) {
  grid-column: 1;
  grid-row: 1/3;
  min-height: 500px;
}
.p-business__cards .p-business__card:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}
.p-business__cards .p-business__card:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
}
.p-business__cards .p-business__card:nth-child(4) {
  grid-column: 1;
  grid-row: 3;
}
.p-business__cards .p-business__card:nth-child(5) {
  grid-column: 2;
  grid-row: 3;
}
@media (max-width: 992px) {
  .p-business__cards {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .p-business__cards .p-business__card:nth-child(1) {
    grid-column: 1/3;
    grid-row: 1;
    min-height: 350px;
  }
  .p-business__cards .p-business__card:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }
  .p-business__cards .p-business__card:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
  }
  .p-business__cards .p-business__card:nth-child(4) {
    grid-column: 1;
    grid-row: 3;
  }
  .p-business__cards .p-business__card:nth-child(5) {
    grid-column: 2;
    grid-row: 3;
  }
}
@media (max-width: 768px) {
  .p-business__cards {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .p-business__cards .p-business__card:nth-child(1),
  .p-business__cards .p-business__card:nth-child(2),
  .p-business__cards .p-business__card:nth-child(3),
  .p-business__cards .p-business__card:nth-child(4),
  .p-business__cards .p-business__card:nth-child(5) {
    grid-column: 1;
    grid-row: auto;
    min-height: 320px;
  }
}

.p-business__card {
  display: flex;
  flex-direction: column;
  border-radius: 28px;
  overflow: hidden;
  background: #FFFFFF;
  border: 1px solid rgba(0, 166, 138, 0.08);
  transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.7s cubic-bezier(0.23, 1, 0.32, 1), border-color 0.4s ease;
  position: relative;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
}
.p-business__card > * {
  position: relative;
  z-index: 1;
}
.p-business__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(0, 255, 184, 0.1) 0%, transparent 100%);
  border-radius: 28px 0 0 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}
.p-business__card:hover {
  box-shadow: 0 32px 80px rgba(0, 166, 138, 0.12), 0 16px 40px rgba(0, 0, 0, 0.06);
  transform: translateY(-10px);
  border-color: rgba(0, 255, 184, 0.25);
}
.p-business__card:hover::before {
  opacity: 1;
}
.p-business__card--new {
  position: relative;
}
.p-business__card--new::after {
  content: "NEW";
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: #0A1628;
  color: #fff;
  padding: 0.25rem 1rem;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  z-index: 10;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 4px 16px rgba(0, 255, 184, 0.4), 0 0 20px rgba(0, 255, 184, 0.2);
  }
  50% {
    box-shadow: 0 4px 20px rgba(0, 255, 184, 0.6), 0 0 30px rgba(0, 255, 184, 0.35);
  }
}
.p-business__card-content {
  padding: clamp(1rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 0 0 auto;
}

.p-business__card-content .c-section-title__tagline {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  position: relative;
  width: fit-content;
}
.p-business__card-content .c-section-title__tagline::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #00FFB8 0%, #00A68A 100%);
  transition: width 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.p-business__card:hover .p-business__card-content .c-section-title__tagline::after {
  width: 100%;
}

.p-business__card-title {
  font-size: clamp(1.125rem, 2.2vw, 1.25rem);
  font-weight: 700;
  color: #0A1628;
  line-height: 1.35;
  transition: color 0.4s ease;
}
.p-business__card:hover .p-business__card-title {
  color: #0A1628;
}
.p-business__card:first-child .p-business__card-title {
  font-size: clamp(1.25rem, 2.8vw, 1.5rem);
}

.p-business__card-text {
  font-size: 0.875rem;
  line-height: 1.75;
  color: #333333;
  opacity: 0.85;
}
.p-business__card:first-child .p-business__card-text {
  max-width: 480px;
}

.p-business__card-image {
  height: 180px;
  min-height: 150px;
  background: linear-gradient(135deg, #00A68A 0%, #00FFB8 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  margin-top: auto;
}
.p-business__card-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 0;
}
.p-business__card-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 166, 138, 0.05) 0%, rgba(0, 166, 138, 0.15) 100%);
  z-index: 1;
  transition: opacity 0.5s ease;
}
.p-business__card:hover .p-business__card-image::before {
  transform: scale(1.08);
}
.p-business__card:hover .p-business__card-image::after {
  opacity: 0.7;
}
.p-business__card:first-child .p-business__card-image {
  height: 320px;
  min-height: 280px;
  flex: 1;
}
@media (max-width: 992px) {
  .p-business__card:first-child .p-business__card-image {
    height: 240px;
    min-height: 200px;
  }
}

@media (max-width: 992px) {
  .p-business {
    padding: 3rem 0;
  }
  .p-business__card-image {
    height: 160px;
  }
}
@media (max-width: 768px) {
  .p-business__cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .p-business__card {
    border-radius: 24px;
  }
  .p-business__card-image {
    height: 180px;
    min-height: 150px;
  }
  .p-business__card:first-child .p-business__card-image {
    height: 200px;
    min-height: 180px;
  }
}
@media (max-width: 576px) {
  .p-business__card-content {
    padding: 1rem;
  }
  .p-business__card-image {
    height: 160px;
    min-height: 140px;
  }
}
.p-infrastructure {
  position: relative;
  overflow: hidden;
}

.p-infrastructure__header {
  background: #FFFFFF;
  padding: clamp(2.5rem, 5vw, 120px) 0;
}
.p-infrastructure__header .c-section-title {
  text-align: center;
  margin-bottom: 0;
}

.p-infrastructure__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: clamp(520px, 60vh, 720px);
  align-items: stretch;
  background: #00A68A;
}

.p-infrastructure__split-left {
  background: #00A68A;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 6vw, 4rem);
  height: 100%;
}

.p-infrastructure__split-inner {
  width: min(560px, 100%);
  margin: 0 auto;
}

.p-infrastructure__badge {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding-bottom: 1rem;
  position: relative;
}
.p-infrastructure__badge::after {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  background: rgba(255, 255, 255, 0.85);
  margin-top: 0.5rem;
}

.p-infrastructure__lead {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
  margin: 1.5rem 0;
}

.p-infrastructure__desc {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.9);
}

.p-infrastructure__split-right {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.p-infrastructure__image-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.p-infrastructure__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: translateZ(0);
}

@media (max-width: 768px) {
  .p-infrastructure__split {
    grid-template-columns: 1fr;
    height: auto;
  }
  .p-infrastructure__split-left {
    padding: 2rem 1.5rem;
    text-align: left;
  }
  .p-infrastructure__split-right {
    min-height: clamp(280px, 45vh, 420px);
  }
}
@media (max-width: 576px) {
  .p-infrastructure__header {
    padding: 2.5rem 0;
  }
  .p-infrastructure__split-left {
    padding: 2rem 1rem;
  }
}
.p-company {
  padding: 4rem 0;
  background: linear-gradient(180deg, #FFFFFF 0%, #FAFAF8 100%);
  position: relative;
  opacity: 1;
  visibility: visible;
  overflow: hidden;
}
.p-company::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 166, 138, 0.2) 50%, transparent 100%);
}

.p-company__inner {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 2fr;
  gap: clamp(2rem, 6vw, 4rem);
  align-items: start;
  position: relative;
}
@media (max-width: 992px) {
  .p-company__inner {
    grid-template-columns: 1fr 1.8fr;
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .p-company__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.p-company__title {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: 120px;
}
@media (max-width: 768px) {
  .p-company__title {
    position: static;
  }
}

.p-company__heading {
  font-size: clamp(1.875rem, 6vw, 2.25rem);
  font-weight: 700;
  color: #000000;
  line-height: 1.1;
  letter-spacing: -0.02em;
  opacity: 1;
  background: linear-gradient(180deg, #000000 0%, #333333 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.p-company__info {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  opacity: 1;
}

.p-company__info-item {
  font-size: 1rem;
  line-height: 1.9;
  color: #000000;
  padding: clamp(1rem, 2vw, 1.5rem) 0;
  border-bottom: 1px solid rgba(224, 224, 224, 0.5);
  display: grid;
  grid-template-columns: minmax(100px, 140px) 1fr;
  gap: 1.5rem;
  align-items: flex-start;
  position: relative;
  transition: background-color 0.3s ease, padding-left 0.3s ease;
  opacity: 1;
}
.p-company__info-item:hover {
  background-color: rgba(0, 255, 184, 0.02);
  padding-left: 0.5rem;
}
.p-company__info-item:first-child {
  border-top: 1px solid rgba(224, 224, 224, 0.5);
}
@media (max-width: 576px) {
  .p-company__info-item {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
}

.p-company__info-label {
  font-weight: 500;
  color: #333333;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  display: flex;
  align-items: flex-start;
  gap: 0.25rem;
}
.p-company__info-label::before {
  content: "";
  width: 4px;
  height: 4px;
  background: #00FFB8;
  border-radius: 50%;
  margin-right: 10px;
  margin-top: 0.7em;
}

.p-company__info-value {
  color: #000000;
  font-weight: 400;
}
.p-company__info-value a {
  color: #00A68A;
  text-decoration: none;
  position: relative;
}
.p-company__info-value a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #00FFB8;
  transition: width 0.3s ease;
}
.p-company__info-value a:hover::after {
  width: 100%;
}

.p-company__year {
  color: #00A68A;
  font-weight: 500;
}

.p-company__business-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.p-company__business-list li {
  position: relative;
  padding-left: 1rem;
}
.p-company__business-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #00FFB8;
}

.p-company__decoration {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0, 255, 184, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
@media (max-width: 768px) {
  .p-company__decoration {
    display: none;
  }
}

@media (max-width: 992px) {
  .p-company {
    padding: 3rem 0;
  }
}
@media (max-width: 768px) {
  .p-company__title {
    text-align: center;
  }
  .p-company__title .c-section-title__tagline {
    margin: 0 auto;
  }
  .p-company__heading {
    text-align: center;
  }
}
@media (max-width: 576px) {
  .p-company {
    padding: 2.5rem 0;
  }
  .p-company__info-item {
    padding: 1rem 0;
    font-size: 0.875rem;
  }
}
.p-cta {
  padding: 100px 0;
  background: linear-gradient(180deg, #0A1628 0%, #0A0F1A 100%);
  background-image: url("../images/cta_background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  opacity: 1;
  visibility: visible;
}
.p-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(10, 22, 40, 0.7) 0%, rgba(10, 15, 26, 0.85) 100%);
  z-index: 0;
}
.p-cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0, 217, 165, 0.3) 0%, transparent 70%);
  opacity: 0.2;
  animation: pulse 4s ease-in-out infinite;
  z-index: 1;
}
.p-cta > * {
  position: relative;
  z-index: 2;
}

.p-cta__content {
  text-align: center;
  margin-bottom: 3rem;
}

.p-cta__title {
  font-size: 3rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1rem;
  text-shadow: 0 0 30px rgba(0, 217, 165, 0.5);
  background: linear-gradient(135deg, #FFFFFF 0%, #00FFB8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 768px) {
  .p-cta__title {
    font-size: 30px;
  }
}

.p-cta__text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  font-weight: 600;
}

.p-cta__action {
  display: flex;
  justify-content: center;
}

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

.u-mt-40 {
  margin-top: 40px;
}

.u-mb-40 {
  margin-bottom: 40px;
}

.u-hidden {
  display: none;
}

.u-visible {
  display: block;
}

/*# sourceMappingURL=style.css.map */
