:root {
  /* Colors - Light Theme */
  --color-bg: #ffffff;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-primary: #0056b3;
  /* Deep Blue */
  --color-accent: #00a8cc;
  /* Cyan/Light Blue */
  --color-border: #e0e0e0;
  --color-bg-gray: #f5f5f5;

  /* Fonts */
  --font-jp: "Noto Sans JP", sans-serif;
  --font-en: "Oswald", sans-serif;

  /* Spacing */
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 8rem;

  /* Transitions */
  --transition-base: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  cursor: none !important;
  /* Globally hide cursor */
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-jp);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
  /* Hide default cursor */
}

/* Custom Cursor */
#custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  background-image: url("../images/tetrapod_cursor.png");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  /* Allow clicks to pass through */
  z-index: 9999;
  /* Rotate animation on the pseudo-element or container if we want position static relative to transform? 
     Actually, if we transform translate the container, rotating it might add up complex. 
     Better to rotate a child or use multiple transforms. 
     Let's try rotating the background or using an inner element.
     But simple solution: Animation that rotates 0-360deg. 
     Wait, if we update transform translate in JS, it overwrites the rotation transform if we put it on the same element.
     We should wrap it or use a pseudo element for the image.
  */
}

#custom-cursor::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("../images/tetrapod_cursor.png");
  background-size: contain;
  background-repeat: no-repeat;
  animation: cursorRotate 10s linear infinite;
}

/* We need to remove the background from the main element if using ::after */
#custom-cursor {
  background-image: none;
  margin-left: -16px;
  /* Center cursor */
  margin-top: -16px;
}

@keyframes cursorRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

a,
button,
input,
textarea,
select {
  cursor: none !important;
  /* Ensure system cursor stays hidden on interactive elements */
}

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

ul {
  list-style: none;
}

ol {
  list-style: none;
}

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

/* Pricing Table */
.pricing-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 2rem;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px;
  /* Ensure table doesn't cramp on mobile */
  background: #fff;
}

.pricing-table th,
.pricing-table td {
  padding: 1.5rem 1rem;
  text-align: center;
  border-bottom: 1px solid #eee;
  vertical-align: middle;
}

.pricing-table thead th {
  background: #fff;
  border-bottom: 2px solid #ddd;
}

.pricing-table .feature-head {
  text-align: left;
  min-width: 200px;
  background: #f9f9f9;
  font-weight: 700;
}

.pricing-table tbody th {
  text-align: left;
  background: #f9f9f9;
  font-weight: 500;
}

.plan-col {
  min-width: 180px;
}

.plan-name {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}

.plan-price {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  font-family: var(--font-en);
}

.plan-col.entry {
  background: #fffcf0;
  border: 2px solid #d4af37;
  position: relative;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
  /* 枠を目立たせるために左右のボーダーを表示 */
  border-top: 4px solid #d4af37;
}

.plan-col.entry .plan-name {
  color: #d4af37;
  font-size: 1.2rem;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.plan-col.basic .plan-name {
  color: #3498db;
}

.plan-col.business .plan-name {
  color: #9b59b6;
}

.check {
  color: var(--color-primary);
  font-size: 1.2rem;
}

.dash {
  color: #ccc;
}

.pricing-notes p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.5rem;
}

/* Footer Redesign */
.footer {
  background: #222;
  color: #fff;
  padding: 5rem 0 2rem;
  font-size: 0.9rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 4rem;
  margin-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 3rem;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.footer-address {
  line-height: 1.8;
  color: #999;
}

.footer-sitemap {
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
}

.sitemap-col ul {
  list-style: none;
}

.sitemap-title {
  font-family: var(--font-en);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--color-primary);
  opacity: 0.8;
}

.sitemap-col li {
  margin-bottom: 0.8rem;
}

.sitemap-col a {
  color: #ccc;
  transition: color 0.3s;
}

.sitemap-col a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  color: #666;
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    gap: 3rem;
  }

  .footer-sitemap {
    gap: 2rem;
    flex-direction: column;
  }
}

/* Utilities */
.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

@media (max-width: 768px) {
  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }
}

.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

.container-fluid {
  width: 100%;
  padding: 0 5%;
}

.center {
  text-align: center;
}

.en {
  font-family: var(--font-en);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.jp {
  font-weight: 500;
}

/* Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-logo {
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 3rem;
  transition: var(--transition-base);
  /* Use a gradient or solid background for better visibility on all sections?
     Planners has a clean header. Let's make it transparent initially, 
     but we might need a background if we scroll. 
     For now, sticking to mix-blend-mode might conflict with the "corporate" look 
     if the background is complex. 
     Let's try to mimic a clean style: Dark text on light background usually, 
     but here we have a dark hero. 
     Maybe keep white text on Hero, but change to Header styling.
  */
  color: #fff;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5) 0%,
    transparent 100%
  );
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  font-family: var(--font-en);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.header-contact-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
  border: 1px solid #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  transition: var(--transition-base);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
}

.header-contact-btn:hover {
  background: #fff;
  color: var(--color-primary);
}

.header-contact-btn .en {
  font-size: 0.8rem;
  font-weight: 700;
}

.header-contact-btn .jp {
  font-size: 0.6rem;
  opacity: 0.9;
}

/* Hamburger */
.hamburger {
  width: 30px;
  height: 20px;
  position: relative;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #fff;
  transition: var(--transition-base);
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 9px;
}

.hamburger span:nth-child(3) {
  top: 18px;
}

.hamburger.active span:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  top: 9px;
  transform: rotate(-45deg);
}

/* Global Nav */
.global-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 999;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #deb887;
  transform: translateY(-100%);
  transition: transform 0.6s cubic-bezier(0.7, 0, 0.3, 1);
  z-index: -1;
}

.global-nav.active {
  pointer-events: auto;
}

.global-nav.active .nav-bg {
  transform: translateY(0);
}

.nav-list {
  position: relative;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.4s ease 0.2s;
}

.global-nav.active .nav-list {
  opacity: 1;
  transform: translateY(0);
}

.nav-list li {
  margin: 1.5rem 0;
}

.nav-list a {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nav-list .en {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.nav-list .jp {
  font-size: 0.9rem;
  margin-top: 0.5rem;
  opacity: 0.8;
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url("../images/hero_ocean.webp");
  background-size: cover;
  background-position: center;
}

.hero-canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-content {
  text-align: center;
  z-index: 1;
  padding: 0 1rem;
}

.hero-title {
  font-family: var(--font-en);
  font-size: clamp(3rem, 10vw, 8rem);
  font-weight: 700;
  line-height: 0.9;
  color: #ffffff;
  margin-bottom: 2rem;
}

.hero-title .line {
  display: block;
}

.hero-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.scroll-indicator span {
  font-family: var(--font-en);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: #ffffff;
}

.scroll-indicator .line {
  width: 1px;
  height: 60px;
  background: #ffffff;
  animation: scrollLine 2s infinite;
  transform-origin: top;
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
  }

  50% {
    transform: scaleY(1);
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* Sections General */
.section {
  padding: var(--spacing-xl) 0;
  position: relative;
}

.section-header {
  margin-bottom: var(--spacing-lg);
}

.section-label {
  font-family: var(--font-en);
  font-size: 1rem;
  color: var(--color-primary);
  display: block;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--color-text-light);
  margin-top: 1rem;
}

/* Mission */
.mission-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.mission-text p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 2;
}

.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-weight: 700;
  border-bottom: 1px solid var(--color-text);
  padding-bottom: 0.25rem;
}

.btn-arrow:hover {
  gap: 1.5rem;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.img-placeholder {
  width: 100%;
  height: 100%;
  background: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-family: var(--font-en);
  font-size: 1.5rem;
}

.mission-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mission-image {
  aspect-ratio: 4/3;
  overflow: hidden;
}

/* Strength */
.strength {
  background-color: var(--color-bg-gray);
  background-image: url("../images/bg_pattern_hibiscus.webp");
  background-size: cover;
  /* Display as single image covering the area */
  background-repeat: no-repeat;
  background-position: center;
  background-blend-mode: multiply;
  /* Ensure it blends well with gray */
}

.strength-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.strength-item {
  background: #fff;
  padding: 2rem;
  position: relative;
  transition: var(--transition-base);
}

.strength-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.strength-num {
  font-family: var(--font-en);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-primary);
  opacity: 0.2;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

.strength-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}

.strength-desc {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

/* Strength Backgrounds & Overlay */
.strength-item {
  z-index: 1;
}

.strength-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  z-index: -1;
  transition: var(--transition-base);
}

.strength-item:hover::before {
  background: rgba(255, 255, 255, 0.85);
}

.item-onestop {
  background-image: url("../images/strength-onestop.webp");
  background-size: cover;
  background-position: center;
}

.item-local {
  background-image: url("../images/strength-local.webp");
  background-size: cover;
  background-position: center;
}

.item-ai {
  background-image: url("../images/strength-ai.webp");
  background-size: cover;
  background-position: center;
}

.item-okinawa {
  background-image: url("../images/strength-okinawa.webp");
  background-size: cover;
  background-position: center;
}

.btn-block {
  display: inline-block;
  border: 1px solid var(--color-text);
  padding: 1rem 3rem;
  text-align: center;
  transition: var(--transition-base);
}

.btn-block:hover {
  background: var(--color-text);
  color: #fff;
}

.hero-particle {
  position: absolute;
  width: 40px;
  /* Adjust size as needed */
  height: 40px;
  object-fit: contain;
  pointer-events: none;
  z-index: 5;
  will-change: transform;
}

.btn-block .en {
  display: block;
  font-size: 1.2rem;
}

.btn-block .jp {
  font-size: 0.8rem;
}

/* Service */
.service {
  background-color: var(--color-bg-gray);
  /* Optional: match strength base color if needed, or keep white/transparent */
  background-image: url("../images/bg_pattern_hibiscus.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-blend-mode: multiply;
}

.service-wrapper {
  display: block;
  /* Background removed to be full width on section */
}

.service-header {
  text-align: center;
  margin-bottom: 4rem;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.service-card {
  display: block;
  position: relative;
  overflow: hidden;
  background: #fff;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 1px solid #f0f0f0;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  border-color: transparent;
}

.service-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  margin-bottom: 1rem;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-img img {
  transform: scale(1.05);
}

.service-info {
  padding: 1.5rem;
  background: #fff;
  position: relative;
}

.service-info .cat {
  font-family: var(--font-en);
  font-size: 0.8rem;
  color: var(--color-text-light);
  display: block;
  margin-bottom: 0.5rem;
}

.service-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0;
  /* Ensure spacing or handled by padding */
}

.service-info .arrow {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  font-size: 1.2rem;
  transition: var(--transition-base);
}

.service-card:hover .arrow {
  transform: translateX(5px);
  color: var(--color-primary);
}

/* Company */
.company-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* Removed blue background and pattern from container */
  color: var(--color-text);
  /* Change text to dark */
}

.company-content {
  padding: 4rem;
  background-image: url("../images/bg_pattern_minsa.webp");
  background-size: 300px;
  background-repeat: repeat;
  /* No blend mode needed if just pattern on normal bg */
}

.company-content .section-label {
  color: var(--color-primary);
  /* Reset label color */
}

.company-content .btn-arrow {
  border-color: var(--color-text);
  color: var(--color-text);
}

.company-content .btn-arrow:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.company-content .btn-note {
  margin-left: 1.5rem;
  /* Space between buttons */
}

.company-content .btn-note:hover {
  color: #228b22;
  /* Note brand greenish color */
  border-color: #228b22;
}

.company-dl {
  margin: 3rem 0;
  border-top: 1px solid var(--color-border);
}

.company-dl .row {
  display: grid;
  grid-template-columns: 8em 1fr;
  gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--color-border);
  align-items: baseline;
}

.company-dl dd {
  white-space: nowrap;
}

.company-bg {
  position: relative;
  min-height: 400px;
}

.company-bg iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Contact */
.contact {
  background: #fff;
}

.contact-title {
  font-family: var(--font-en);
  font-size: 4rem;
  margin-bottom: 1rem;
}

.contact-actions {
  text-align: center;
}

.contact-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: var(--color-text);
  color: #fff;
  padding: 1.5rem 4rem;
  border-radius: 50px;
  transition: var(--transition-base);
}

.contact-btn:hover {
  background: var(--color-primary);
  transform: scale(1.05);
}

.contact-btn .sub {
  font-size: 0.8rem;
  margin-bottom: 0.25rem;
}

/* Free Materials */
.free-materials {
  background: var(--color-bg-gray);
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  /* Responsive grid */
  gap: 2rem;
  max-width: 800px;
  /* Limit width for single item or small grid */
  margin: 0 auto;
  justify-content: center;
}

.material-item {
  background: #fff;
  border-radius: 8px;
  /* Slight rounding for a premium card feel */
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: var(--transition-base);
  display: flex;
  flex-direction: column;
}

.material-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.material-img {
  width: 100%;
  aspect-ratio: 16/9;
  /* Or 4/3 depending on the image */
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
}

.material-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.material-item:hover .material-img img {
  transform: scale(1.05);
}

.material-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.material-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.material-desc {
  font-size: 0.95rem;
  color: var(--color-text-light);
  margin-bottom: 2rem;
  line-height: 1.6;
  flex-grow: 1;
}

.material-btn {
  width: 100%;
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.material-btn:hover {
  background: var(--color-primary);
  color: #fff;
}

.contact-btn .main {
  font-family: var(--font-en);
  font-size: 1.5rem;
  font-weight: 700;
}

/* Footer */
.footer {
  background: #1a1a1a;
  color: #fff;
  padding: 4rem 0 2rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

.footer-logo {
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 700;
}

.footer-links {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 3rem;
  margin-bottom: 3rem;
}

.footer-menu {
  display: flex;
  gap: 2rem;
}

.footer-menu a {
  font-family: var(--font-en);
  font-size: 1rem;
  font-weight: 500;
}

.footer-sub {
  display: flex;
  gap: 1.5rem;
}

.footer-sub a {
  font-size: 0.8rem;
  color: #888;
}

.footer-bottom {
  text-align: center;
  font-size: 0.8rem;
  color: #666;
}

/* Animations */
.reveal-text {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-text.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-100 {
  transition-delay: 0.1s;
}

.delay-200 {
  transition-delay: 0.2s;
}

.delay-300 {
  transition-delay: 0.3s;
}

.delay-400 {
  transition-delay: 0.4s;
}

.delay-500 {
  transition-delay: 0.5s;
}

/* Page Hero */
.page-hero {
  height: 60vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #f5f5f5;
}

/* Pricing */
.pricing-note {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.pricing-card {
  background: #fff;
  border: 1px solid var(--color-border);
  padding: 3rem 2rem;
  text-align: center;
  transition: var(--transition-base);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border-color: var(--color-primary);
}

.pricing-card.featured {
  border-color: var(--color-primary);
  background: #f0f9ff;
  position: relative;
}

.pricing-card.featured::before {
  content: "RECOMMENDED";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--color-primary);
  color: #fff;
  padding: 0.25rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 50px;
}

.plan-name {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.plan-price {
  margin-bottom: 2rem;
}

.plan-price .amount {
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--font-en);
  color: var(--color-primary);
}

.plan-features {
  margin-bottom: 2rem;
  text-align: left;
}

.plan-features li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.plan-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-primary);
}

/* Samples Gallery */
.samples-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.sample-card {
  display: block;
  transition: var(--transition-base);
}

.sample-card:hover {
  transform: translateY(-5px);
}

.sample-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  margin-bottom: 1rem;
  border: 1px solid var(--color-border);
}

.sample-img .img-placeholder {
  transition: transform 0.6s ease;
}

.sample-card:hover .sample-img .img-placeholder {
  transform: scale(1.05);
}

.sample-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.sample-link {
  font-size: 0.9rem;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.original-design-box {
  background: var(--color-bg-gray);
  padding: 4rem;
  text-align: center;
  border-radius: 4px;
}

.original-design-box h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.original-design-box p {
  margin-bottom: 2rem;
  color: var(--color-text-light);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  /* Main Page Responsive */
  .header {
    padding: 1rem;
    mix-blend-mode: normal;
    color: var(--color-text);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    height: auto;
    min-height: 60px;
  }

  .hamburger span {
    background: var(--color-text);
  }

  .header-contact-btn {
    border-color: var(--color-text);
  }

  .header-contact-btn:hover {
    background: var(--color-text);
    color: #fff;
  }

  .hero-title {
    font-size: 3rem;
  }

  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .mission-body {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .mission-image {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    order: -1;
  }

  .strength-grid,
  .service-list {
    grid-template-columns: 1fr;
  }

  .company-inner {
    grid-template-columns: 1fr;
  }

  .company-content {
    padding: 2rem;
  }

  .company-dl .row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 1rem 0;
  }

  .company-dl dd {
    white-space: normal;
    /* Allow text wrapping on mobile */
  }

  .footer-top {
    justify-content: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    align-items: center;
  }

  .footer-menu {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .footer-sub {
    justify-content: center;
    margin-top: 1rem;
  }

  /* Global Image Responsive */
  img {
    max-width: 100%;
    height: auto;
  }

  /* Page Header Responsive */
  .page-header {
    padding-top: 100px;
    padding-bottom: 40px;
  }

  .page-header .section-title {
    font-size: 2rem;
  }

  /* Content Container Responsive */
  .content-container {
    padding: 0 20px;
  }

  /* Samples Page Responsive */
  .page-hero {
    height: 40vh;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .samples-grid {
    grid-template-columns: 1fr;
  }

  .original-design-box {
    padding: 2rem;
  }
}
