@charset "utf-8";

/* ========================================================================
   style-2.css — Page A (Static/Light) & Page B (Rounded/Dark Mode)
   ======================================================================== */

/* Google Fontsから読み込み */
@import url("https://fonts.googleapis.com/css2?family=Inter&family=IBM+Plex+Sans+JP:wght@100;200;300;400;500;600;700&family=Oswald:wght@300;400;500;600;700&family=DM+Sans:wght@400;500;600;700&display=swap");

/* Inter（英数字用）を調整して定義 */
@font-face {
  font-family: "LatinAdjusted";
  src: url("fonts/Inter-VariableFont_opsz,wght.ttf") format("truetype");
  font-weight: 100 700; /* バリアブルフォントの範囲 */
  font-style: normal;
  font-display: swap;
  size-adjust: 106%; /* ← 英数字を6%拡大して日本語とバランス調整 */
}

/* ========================================================================
   CSS Variables
   ======================================================================== */
:root {
  --c-primary: #274353;
  --c-primary-deep: #1a2f3d;
  --c-primary-light: #3a6178;
  --c-green: #86d25b;
  --c-green-dark: #5a9a2e;
  --c-green-light: #a4e87e;
  --c-wine: #6f0827;
  --c-wine-light: #af2346;
  --c-text: #222;
  --c-text-light: #555;
  --c-text-muted: #888;
  --c-bg-white: #ffffff;
  --c-bg-light: #f4f6f8;
  --c-bg-gray: #e8ecef;
  --c-bg-dark-gray: #2a2d32;
  --c-bg-dark: #1a1d22;
  --c-border: #dde2e6;
  --gradient-main: linear-gradient(
    135deg,
    #274353 0%,
    #3a6a5a 50%,
    #86d25b 100%
  );
  --gradient-green-navy: linear-gradient(
    135deg,
    #86d25b 0%,
    #4a8a5a 40%,
    #274353 100%
  );
  --gradient-navy-green: linear-gradient(
    135deg,
    #274353 0%,
    #3a7a5a 60%,
    #86d25b 100%
  );
  --gradient-green: linear-gradient(135deg, #5a9a2e 0%, #86d25b 100%);
  --gradient-dark: linear-gradient(135deg, #1a1d22 0%, #274353 100%);
  --gradient-dark-green: linear-gradient(
    160deg,
    #1a2f3d 0%,
    #1e3a2e 50%,
    #274353 100%
  );
  --font-en: "Oswald", "Inter", sans-serif;
  --font-ja: "Noto Sans JP", "DM Sans", sans-serif;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.14);
  --shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.18);
}

/* ========================================================================
   BASE FONT
   ======================================================================== */
.page-a,
.page-b {
  font-family: "LatinAdjusted", "IBM Plex Sans JP", sans-serif;
  letter-spacing: -0.01em;
  font-weight: 500;
}

h2,
h3,
h4 {
  font-feature-settings: "palt";
}

/* ========================================================================
   SHARED STYLES
   ======================================================================== */

.sec-en-sub {
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-green);
  display: block;
  margin-bottom: 10px;
}

.sec-heading {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.sec-lead {
  font-size: 1.6rem;
  line-height: 2;
  max-width: 800px;
}

.accent-num {
  font-family: var(--font-en);
  font-weight: 700;
  line-height: 1;
  display: inline-block;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- CTA Buttons --- */
.cta-btn {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 700;
  text-decoration: none;
  padding: 16px 40px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.cta-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.cta-btn:hover::before {
  left: 100%;
}

.cta-btn:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.v2-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.v2-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

.v2-divider {
  width: 60px;
  height: 3px;
  background: var(--gradient-main);
  margin: 20px 0;
}

.v2-divider-center {
  margin-left: auto;
  margin-right: auto;
}

/* --- Two column layout helper --- */
.v2-two-col {
  display: flex;
  align-items: center;
  gap: 60px;
}

.v2-two-col .v2-col-content {
  flex: 1;
}

.v2-two-col .v2-col-image {
  flex: 1;
  position: relative;
}

.v2-two-col .v2-col-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Photo overlay styles */
.v2-photo-wrap {
  position: relative;
  overflow: hidden;
}

.v2-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.v2-photo-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(39, 67, 83, 0.1) 0%,
    rgba(134, 210, 91, 0.05) 100%
  );
  pointer-events: none;
}

/* Icon circles for features */
.v2-icon-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  flex-shrink: 0;
}

/* ========================================================================
   HERO — SHARED BASE
   ======================================================================== */
.v2-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 1;
}

.v2-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* Hero background animations */
.v2-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

/* Geometric shapes */
.v2-hero-bg .shape {
  position: absolute;
  opacity: 0.07;
  animation: floatShape 20s infinite ease-in-out;
}

.v2-hero-bg .shape-1 {
  width: 300px;
  height: 300px;
  border: 3px solid var(--c-primary);
  top: 10%;
  right: 5%;
  transform: rotate(45deg);
}

.v2-hero-bg .shape-2 {
  width: 200px;
  height: 200px;
  background: var(--c-green);
  border-radius: 50%;
  bottom: 15%;
  left: 5%;
  animation-delay: -5s;
}

.v2-hero-bg .shape-3 {
  width: 150px;
  height: 150px;
  border: 3px solid var(--c-wine);
  top: 60%;
  right: 20%;
  animation-delay: -10s;
  transform: rotate(30deg);
}

.v2-hero-bg .shape-4 {
  width: 100px;
  height: 100px;
  background: var(--c-primary);
  top: 20%;
  left: 30%;
  animation-delay: -7s;
  transform: rotate(60deg);
}

.v2-hero-bg .shape-5 {
  width: 250px;
  height: 250px;
  border: 2px solid var(--c-green);
  border-radius: 50%;
  bottom: 5%;
  right: 35%;
  animation-delay: -12s;
}

@keyframes floatShape {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-30px) rotate(5deg);
  }
  50% {
    transform: translateY(-15px) rotate(-3deg);
  }
  75% {
    transform: translateY(-40px) rotate(7deg);
  }
}

/* Gradient orbs */
.v2-hero-bg .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.2;
  animation: pulseOrb 8s infinite ease-in-out;
}

.v2-hero-bg .orb-1 {
  width: 500px;
  height: 500px;
  background: var(--c-green);
  top: -10%;
  right: -5%;
}

.v2-hero-bg .orb-2 {
  width: 400px;
  height: 400px;
  background: var(--c-primary);
  bottom: -10%;
  left: -5%;
  animation-delay: -3s;
}

.v2-hero-bg .orb-3 {
  width: 300px;
  height: 300px;
  background: var(--c-green-light);
  top: 40%;
  left: 40%;
  animation-delay: -5s;
}

@keyframes pulseOrb {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.2;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.3;
  }
}

/* Grid overlay */
.v2-hero-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(39, 67, 83, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(39, 67, 83, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
}

/* Moving scan line */
.v2-hero-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-main);
  z-index: 3;
}

.v2-hero-line::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -100%;
  width: 60%;
  height: 7px;
  background: linear-gradient(90deg, transparent, var(--c-green), transparent);
  animation: scanLine 3s infinite linear;
}

@keyframes scanLine {
  0% {
    left: -60%;
  }
  100% {
    left: 100%;
  }
}

/* Hero split layout */
.v2-hero-split {
  display: flex;
  min-height: 100vh;
  width: 100%;
}

.v2-hero-split-left {
  width: 50%;
  display: flex;
  align-items: center;
  padding: 120px 60px 60px;
  position: relative;
  z-index: 2;
}

.v2-hero-split-right {
  width: 50%;
  position: relative;
  overflow: hidden;
}

.v2-hero-split-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ========================================================================
   PAGE A — STATIC / PROFESSIONAL (Light backgrounds dominant)
   ======================================================================== */

/* --- Hero A: Split with blurred business photo --- */
.page-a .v2-hero {
  background: var(--c-bg-light);
}

.page-a .v2-hero-split-right::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.page-a .v2-hero-split-right img {
  filter: brightness(0.85);
}

.page-a .v2-hero-tag {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-green-dark);
  border: 2px solid var(--c-green-dark);
  padding: 8px 24px;
  margin-bottom: 24px;
}

.page-a .v2-hero-title {
  font-size: 4.8rem;
  font-weight: 900;
  line-height: 1.25;
  color: var(--c-primary);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.page-a .v2-hero-title .highlight {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-a .v2-hero-sub {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--c-text);
  margin-bottom: 16px;
}

.page-a .v2-hero-desc {
  font-size: 1.6rem;
  line-height: 1.9;
  color: var(--c-text-light);
  margin-bottom: 40px;
  max-width: 520px;
}

.page-a .v2-hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.page-a .cta-btn-primary {
  color: #fff;
  background: var(--c-primary);
  border: none;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(39, 67, 83, 0.3);
}

.page-a .cta-btn-primary:hover {
  box-shadow: 0 6px 25px rgba(39, 67, 83, 0.4);
  background: var(--c-primary-deep);
  color: #fff;
}

.page-a .cta-btn-secondary {
  color: var(--c-primary);
  background: transparent;
  border: 2px solid var(--c-primary);
  border-radius: 4px;
}

.page-a .cta-btn-secondary:hover {
  background: var(--c-primary);
  color: #fff;
}

/* Hero floating badge */
.page-a .v2-hero-badge-float {
  position: absolute;
  bottom: 40px;
  left: 40px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--c-primary);
  padding: 30px 40px;
  z-index: 3;
  box-shadow: var(--shadow-lg);
  border-left: 6px solid var(--c-green);
}

.page-a .v2-hero-badge-float .big {
  font-family: var(--font-en);
  font-size: 8rem;
  font-weight: 700;
  color: var(--c-green-dark);
  line-height: 1;
}

.page-a .v2-hero-badge-float .label {
  font-size: 2.8rem;
  font-weight: 700;
}

/* --- Section: Problems A (light gray bg) --- */
.page-a .sec-problems {
  background: var(--c-bg-light);
  padding: 100px 0;
  border-top: 1px solid var(--c-border);
}

.page-a .sec-problems .sec-heading {
  color: var(--c-text);
}

.page-a .problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.page-a .problem-card {
  background: #fff;
  padding: 36px 30px;
  border-left: 4px solid var(--c-wine);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
}

.page-a .problem-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.page-a .problem-card .num {
  font-family: var(--font-en);
  font-size: 5rem;
  font-weight: 700;
  color: var(--c-wine);
  opacity: 0.12;
  position: absolute;
  top: 8px;
  right: 20px;
  line-height: 1;
}

.page-a .problem-card h3 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 12px;
  color: var(--c-text);
}

.page-a .problem-card p {
  font-size: 1.5rem;
  line-height: 1.8;
  color: var(--c-text-light);
}

/* --- Section: Strengths A (navy gradient bg) --- */
.page-a .sec-strengths {
  background: var(--gradient-dark);
  color: #fff;
  padding: 100px 0;
}

.page-a .sec-strengths .sec-en-sub {
  color: var(--c-green);
}

.page-a .sec-strengths .sec-heading {
  color: #fff;
}

.page-a .sec-strengths .sec-heading .green {
  color: var(--c-green);
}

.page-a .strength-row {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
}

.page-a .strength-item {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-a .strength-item:last-child {
  border-bottom: none;
}

.page-a .strength-item .accent-num {
  font-size: 8rem;
  background: var(--gradient-green);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  min-width: 120px;
  text-align: center;
}

.page-a .strength-item-body h3 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
}

.page-a .strength-item-body p {
  font-size: 1.5rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.7);
}

/* --- Section: Services A (white bg) --- */
.page-a .sec-services {
  padding: 100px 0;
  background: #fff;
}

.page-a .sec-services .sec-heading {
  color: var(--c-text);
}

.page-a .sec-services .sec-heading .green {
  color: var(--c-green-dark);
}

.page-a .service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.page-a .service-card {
  background: #fff;
  border: 1px solid var(--c-border);
  transition: all 0.35s ease;
  overflow: hidden;
}

.page-a .service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.page-a .service-card-header {
  background: var(--c-primary);
  padding: 30px 28px 24px;
  color: #fff;
  position: relative;
}

.page-a .service-card-header .accent-num {
  font-size: 7rem;
  background: linear-gradient(
    135deg,
    rgba(134, 210, 91, 0.5) 0%,
    rgba(134, 210, 91, 0.1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: absolute;
  top: -8px;
  right: 15px;
}

.page-a .service-card-header h3 {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 8px;
}

.page-a .service-card-header .price {
  font-family: var(--font-en);
  font-size: 3.6rem;
  font-weight: 700;
  color: var(--c-green);
}

.page-a .service-card-header .price small {
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.7);
}

.page-a .service-card-body {
  padding: 28px;
}

.page-a .service-card-body p {
  font-size: 1.4rem;
  line-height: 1.9;
  color: var(--c-text-light);
}

/* --- Section: Process A (green-navy gradient bg) --- */
.page-a .sec-process {
  padding: 100px 0;
  background: linear-gradient(160deg, #e8f5e0 0%, #dce8f0 50%, #e0eaf0 100%);
}

.page-a .sec-process .sec-heading {
  color: var(--c-text);
}

.page-a .sec-process .sec-heading .green {
  color: var(--c-green-dark);
}

.page-a .process-timeline {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  position: relative;
}

.page-a .process-timeline::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: var(--gradient-main);
}

.page-a .process-step {
  text-align: center;
  width: 18%;
  position: relative;
  z-index: 1;
}

.page-a .process-step .step-num {
  width: 80px;
  height: 80px;
  background: var(--c-primary);
  color: #fff;
  font-family: var(--font-en);
  font-size: 3.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 15px rgba(39, 67, 83, 0.3);
}

.page-a .process-step h4 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--c-text);
  line-height: 1.5;
}

.page-a .process-step p {
  font-size: 1.3rem;
  line-height: 1.7;
  color: var(--c-text-light);
}

/* --- Section: Feature with image A (dark gray bg) --- */
.page-a .sec-feature-image {
  padding: 100px 0;
  background: var(--c-bg-dark-gray);
  color: #fff;
}

.page-a .sec-feature-image .sec-en-sub {
  color: var(--c-green);
}

.page-a .sec-feature-image .sec-heading {
  color: #fff;
}

.page-a .sec-feature-image .sec-lead {
  color: rgba(255, 255, 255, 0.7);
}

.page-a .sec-feature-image .v2-photo-wrap {
  border-radius: 0;
  box-shadow: var(--shadow-xl);
}

/* --- Section: Final CTA A (navy bg) --- */
.page-a .sec-final-cta {
  padding: 80px 0;
  background: var(--c-primary);
  color: #fff;
  text-align: center;
}

.page-a .sec-final-cta .sec-en-sub {
  color: var(--c-green);
  opacity: 0.7;
}

.page-a .sec-final-cta .sec-heading {
  color: #fff;
  margin-bottom: 16px;
}

.page-a .sec-final-cta .sec-lead {
  color: rgba(255, 255, 255, 0.8);
  margin: 0 auto 40px;
}

.page-a .sec-final-cta .cta-btn-white {
  color: var(--c-primary);
  background: #fff;
  border: none;
  border-radius: 4px;
  font-size: 1.8rem;
  padding: 18px 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.page-a .sec-final-cta .cta-btn-white:hover {
  background: var(--c-green);
  color: #fff;
  box-shadow: 0 6px 25px rgba(134, 210, 91, 0.4);
}

/* ========================================================================
   PAGE B — ROUNDED / DARK MODE
   ======================================================================== */

/* --- Hero B: Split with gradient bg --- */
.page-b .v2-hero {
  background: linear-gradient(160deg, #1a2a1e 0%, #1a2f3d 40%, #274353 100%);
  color: #fff;
}

.page-b .v2-hero-split-right {
  background: linear-gradient(
    135deg,
    rgba(134, 210, 91, 0.15) 0%,
    rgba(39, 67, 83, 0.3) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-b .v2-hero-split-right img {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.page-b .v2-hero-tag {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  background: var(--gradient-green);
  padding: 10px 28px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.page-b .v2-hero-title {
  font-size: 5.4rem;
  font-weight: 900;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 24px;
}

.page-b .v2-hero-title .highlight {
  color: var(--c-green);
}

.page-b .v2-hero-sub {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
}

.page-b .v2-hero-desc {
  font-size: 1.6rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 40px;
  max-width: 520px;
}

.page-b .v2-hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.page-b .cta-btn-primary {
  color: #fff;
  background: var(--gradient-green);
  border: none;
  border-radius: 999px;
  box-shadow: 0 4px 20px rgba(134, 210, 91, 0.35);
}

.page-b .cta-btn-primary:hover {
  box-shadow: 0 8px 30px rgba(134, 210, 91, 0.5);
  color: #fff;
}

.page-b .cta-btn-secondary {
  color: var(--c-green);
  background: transparent;
  border: 2px solid var(--c-green);
  border-radius: 999px;
}

.page-b .cta-btn-secondary:hover {
  background: var(--c-green);
  color: #fff;
}

/* Hero badge for B */
.page-b .v2-hero-badge-float {
  position: absolute;
  bottom: 60px;
  right: 60px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 30px 40px;
  border-radius: 20px;
  z-index: 3;
  border: 1px solid rgba(134, 210, 91, 0.3);
}

.page-b .v2-hero-badge-float .big {
  font-family: var(--font-en);
  font-size: 8rem;
  font-weight: 700;
  color: var(--c-green);
  line-height: 1;
}

.page-b .v2-hero-badge-float .label {
  font-size: 2.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
}

/* Wave divider */
.v2-wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  position: relative;
  z-index: 1;
}

.v2-wave-divider svg {
  width: 100%;
  height: 80px;
  display: block;
}

.v2-wave-divider.flip {
  transform: rotate(180deg);
}

.page-b .v2-wave-divider {
  background: linear-gradient(160deg, #1a2a1e 0%, #1a2f3d 40%, #274353 100%);
}

/* --- Section: Reasons B (dark bg) --- */
.page-b .sec-reasons {
  padding: 100px 0;
  background: var(--c-bg-dark);
  color: #fff;
}

.page-b .sec-reasons .sec-heading {
  color: #fff;
}

.page-b .sec-reasons .sec-heading .green {
  color: var(--c-green);
}

.page-b .reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.page-b .reason-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px 28px;
  text-align: center;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.page-b .reason-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-green);
  border-radius: 0 0 20px 20px;
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.page-b .reason-card:hover::after {
  transform: scaleX(1);
}

.page-b .reason-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
  border-color: rgba(134, 210, 91, 0.2);
}

.page-b .reason-card .accent-num {
  font-size: 7rem;
  background: var(--gradient-green);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.page-b .reason-card h3 {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 16px;
  color: #fff;
}

.page-b .reason-card p {
  font-size: 1.4rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.6);
  text-align: left;
}

/* --- Section: Benefits B (dark gray with green accent) --- */
.page-b .sec-benefits {
  padding: 100px 0;
  background: linear-gradient(160deg, #1e2a20 0%, #222830 50%, #1a2530 100%);
  color: #fff;
}

.page-b .sec-benefits .sec-heading {
  color: #fff;
}

.page-b .benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.page-b .benefit-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px 34px;
  transition: all 0.35s ease;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.page-b .benefit-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
  border-color: rgba(134, 210, 91, 0.2);
}

.page-b .benefit-card .accent-num {
  font-size: 6rem;
  background: var(--gradient-navy-green);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  min-width: 80px;
}

.page-b .benefit-card h3 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 12px;
  color: #fff;
}

.page-b .benefit-card h3 .green {
  color: var(--c-green);
  font-family: var(--font-en);
  font-size: 130%;
}

.page-b .benefit-card p {
  font-size: 1.4rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.6);
}

/* --- Section: Services B (slightly lighter dark) --- */
.page-b .sec-services {
  padding: 100px 0;
  background: var(--c-bg-dark-gray);
  color: #fff;
}

.page-b .sec-services .sec-heading {
  color: #fff;
}

.page-b .sec-services .sec-heading .green {
  color: var(--c-green);
}

.page-b .service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.page-b .service-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.35s ease;
}

.page-b .service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(134, 210, 91, 0.3);
  box-shadow: 0 8px 40px rgba(134, 210, 91, 0.1);
}

.page-b .service-card-header {
  background: var(--gradient-green);
  padding: 30px 28px 24px;
  color: #fff;
  position: relative;
  border-radius: 0 0 24px 24px;
}

.page-b .service-card-header .accent-num {
  font-size: 6rem;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(255, 255, 255, 0.1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: absolute;
  top: -5px;
  right: 18px;
}

.page-b .service-card-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 8px;
}

.page-b .service-card-header .price {
  font-family: var(--font-en);
  font-size: 3.6rem;
  font-weight: 700;
}

.page-b .service-card-header .price small {
  font-size: 1.5rem;
  opacity: 0.8;
}

.page-b .service-card-body {
  padding: 28px;
}

.page-b .service-card-body p {
  font-size: 1.4rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.6);
}

/* --- Section: Feature Image B (dark with photo) --- */
.page-b .sec-feature-image {
  padding: 100px 0;
  background: var(--c-bg-dark);
  color: #fff;
}

.page-b .sec-feature-image .sec-en-sub {
  color: var(--c-green);
}

.page-b .sec-feature-image .sec-heading {
  color: #fff;
}

.page-b .sec-feature-image .sec-lead {
  color: rgba(255, 255, 255, 0.6);
}

.page-b .sec-feature-image .v2-photo-wrap {
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

/* --- Section: Steps B (dark-green gradient) --- */
.page-b .sec-steps {
  padding: 100px 0;
  background: linear-gradient(160deg, #1a2a1e 0%, #1e3530 50%, #1a2f3d 100%);
  color: #fff;
}

.page-b .sec-steps .sec-heading {
  color: #fff;
}

.page-b .sec-steps .sec-heading .green {
  color: var(--c-green);
}

.page-b .step-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.page-b .step-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 36px 24px;
  text-align: center;
  transition: all 0.35s ease;
  position: relative;
}

.page-b .step-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
  border-color: rgba(134, 210, 91, 0.2);
}

.page-b .step-card .step-num {
  width: 64px;
  height: 64px;
  background: var(--gradient-green);
  color: #fff;
  font-family: var(--font-en);
  font-size: 2.8rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 15px rgba(134, 210, 91, 0.3);
}

.page-b .step-card h4 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
  line-height: 1.5;
}

.page-b .step-card p {
  font-size: 1.3rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

.page-b .step-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -16px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 12px solid var(--c-green);
  transform: translateY(-50%);
  z-index: 1;
}

/* --- Section: Final CTA B (navy/dark — NOT green) --- */
.page-b .sec-final-cta {
  padding: 80px 0;
  background: var(--c-primary);
  color: #fff;
  text-align: center;
  border-radius: 40px 40px 0 0;
  margin-top: -40px;
  position: relative;
  z-index: 2;
}

.page-b .sec-final-cta .sec-en-sub {
  color: var(--c-green);
  opacity: 0.7;
}

.page-b .sec-final-cta .sec-heading {
  color: #fff;
  margin-bottom: 16px;
}

.page-b .sec-final-cta .sec-lead {
  color: rgba(255, 255, 255, 0.8);
  margin: 0 auto 40px;
}

.page-b .sec-final-cta .cta-btn-white {
  color: var(--c-primary);
  background: #fff;
  border: none;
  border-radius: 999px;
  font-size: 1.8rem;
  padding: 18px 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.page-b .sec-final-cta .cta-btn-white:hover {
  background: var(--c-green);
  color: #fff;
  box-shadow: 0 8px 30px rgba(134, 210, 91, 0.4);
}

/* ========================================================================
   SCROLL ANIMATION
   ======================================================================== */
.v2-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.v2-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.v2-stagger > *:nth-child(1) {
  transition-delay: 0s;
}
.v2-stagger > *:nth-child(2) {
  transition-delay: 0.1s;
}
.v2-stagger > *:nth-child(3) {
  transition-delay: 0.2s;
}
.v2-stagger > *:nth-child(4) {
  transition-delay: 0.3s;
}
.v2-stagger > *:nth-child(5) {
  transition-delay: 0.4s;
}

/* ========================================================================
   HOVER EFFECTS
   ======================================================================== */
.hover-lift {
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.hover-lift:hover {
  transform: translateY(-6px);
}

.hover-underline {
  position: relative;
  display: inline-block;
}

.hover-underline::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-main);
  transition: width 0.3s ease;
}

.hover-underline:hover::after {
  width: 100%;
}

.hover-glow:hover {
  box-shadow: 0 0 30px rgba(134, 210, 91, 0.4);
}

/* ========================================================================
   RESPONSIVE — TABLET
   ======================================================================== */
@media only screen and (max-width: 1024px) {
  .page-a .v2-hero-title,
  .page-b .v2-hero-title {
    font-size: 4rem;
  }

  .page-a .v2-hero-sub,
  .page-b .v2-hero-sub {
    font-size: 2rem;
  }

  .sec-heading {
    font-size: 2.8rem;
  }

  .page-a .service-grid,
  .page-b .reason-grid,
  .page-b .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-b .step-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-b .step-card:nth-child(2)::after {
    display: none;
  }

  .page-a .process-timeline {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }

  .page-a .process-timeline::before {
    display: none;
  }

  .page-a .process-step {
    width: 30%;
  }

  .v2-two-col {
    flex-direction: column;
    gap: 40px;
  }

  .v2-hero-split-left {
    padding: 120px 40px 40px;
  }
}

/* ========================================================================
   RESPONSIVE — MOBILE
   ======================================================================== */
@media only screen and (max-width: 767px) {
  .v2-hero {
    min-height: auto;
  }

  .v2-hero-split {
    flex-direction: column;
    min-height: auto;
  }

  .v2-hero-split-left {
    width: 100%;
    padding: 80px 20px 40px;
  }

  .v2-hero-split-right {
    width: 100%;
    height: 300px;
  }

  .page-b .v2-hero-split-right {
    display: block;
    height: 430px;
    text-align: center;
  }

  .page-b .v2-hero-split-right img {
    max-width: 240px;
    margin: 20px auto;
  }

  .page-a .v2-hero-title,
  .page-b .v2-hero-title {
    font-size: 3rem;
  }

  .page-a .v2-hero-sub,
  .page-b .v2-hero-sub {
    font-size: 1.8rem;
  }

  .sec-heading {
    font-size: 2.3rem;
  }

  .sec-en-sub {
    font-size: 1.6rem;
  }

  .v2-inner {
    padding: 0 20px;
  }

  .page-a .problem-grid {
    grid-template-columns: 1fr;
  }

  .page-a .service-grid,
  .page-b .reason-grid,
  .page-b .service-grid {
    grid-template-columns: 1fr;
  }

  .page-b .benefit-grid {
    grid-template-columns: 1fr;
  }

  .page-b .benefit-card {
    flex-direction: column;
    text-align: center;
  }

  .page-b .step-grid {
    grid-template-columns: 1fr;
  }

  .page-b .step-card::after {
    display: none !important;
  }

  .page-a .process-step {
    width: 100%;
  }

  .page-a .v2-hero-cta,
  .page-b .v2-hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-btn {
    text-align: center;
  }

  .page-a .sec-problems,
  .page-a .sec-strengths,
  .page-a .sec-services,
  .page-a .sec-process,
  .page-a .sec-feature-image,
  .page-b .sec-reasons,
  .page-b .sec-benefits,
  .page-b .sec-services,
  .page-b .sec-steps,
  .page-b .sec-feature-image {
    padding: 60px 0;
  }

  .page-a .strength-item {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .page-a .strength-item .accent-num {
    font-size: 5rem;
    min-width: auto;
  }

  .page-a .sec-final-cta,
  .page-b .sec-final-cta {
    padding: 60px 0;
  }

  .page-b .sec-final-cta {
    border-radius: 24px 24px 0 0;
  }

  .v2-hero-bg .shape {
    opacity: 0.04;
  }

  .v2-hero-bg .orb {
    opacity: 0.1;
  }

  .page-a .v2-hero-badge-float,
  .page-b .v2-hero-badge-float {
    position: relative;
    bottom: auto;
    right: auto;
    left: auto;
    display: inline-block;
    margin: 20px;
  }

  .page-a .v2-hero-badge-float {
    bottom: 130px;
    padding: 20px 30px;
  }

  .page-a .v2-hero-badge-float .big,
  .page-b .v2-hero-badge-float .big {
    font-size: 4rem;
  }

  .page-a .v2-hero-badge-float .label,
  .page-b .v2-hero-badge-float .label {
    font-size: 2.1rem;
  }

  .v2-two-col {
    flex-direction: column;
    gap: 30px;
  }

  .page-a .service-card-header .price,
  .page-b .service-card-header .price {
    font-size: 2.8rem;
  }

  .page-a .service-card-header .accent-num {
    font-size: 5rem;
  }
}
