/* ========================================
   S-Design Portfolio — White + Blue Gradient
   ======================================== */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: clip; }
body {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: none; border: none; background: none; font-family: inherit; }

/* ---------- Design Tokens ---------- */
:root {
  --bg: #ffffff;
  --bg-2: #f5f8ff;
  --bg-3: #eaf0ff;
  --text: #0d1b2e;
  --text-2: #3d5275;
  --text-3: #7a93b8;
  --navy: #0f2147;
  --accent: #1e40af;
  --accent-md: #3b82f6;
  --accent-lt: #60a5fa;
  --grad: linear-gradient(135deg, #0f2147 0%, #1e3a8a 35%, #2563eb 65%, #60a5fa 100%);
  --grad-light: linear-gradient(135deg, #eff6ff 0%, #dbeafe 50%, #bfdbfe 100%);
  --shadow: 0 4px 24px rgba(30,64,175,0.10);
  --shadow-lg: 0 16px 48px rgba(30,64,175,0.18);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --container: 1200px;
}

/* ---------- Scroll Progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px;
  background: var(--grad); width: 0%;
  z-index: 9999; transition: width 0.1s linear;
}

/* ---------- Cursor ---------- */
.cursor-dot {
  position: fixed; width: 8px; height: 8px;
  background: var(--accent); border-radius: 50%;
  pointer-events: none; z-index: 10000;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, background 0.3s;
}
.cursor-ring {
  position: fixed; width: 36px; height: 36px;
  border: 2px solid var(--accent-md);
  border-radius: 50%; pointer-events: none;
  z-index: 9999; transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s;
  opacity: 0.6;
}
.cursor-ring.hovered { width: 56px; height: 56px; border-color: var(--accent-lt); opacity: 0.9; }

/* ---------- Preloader ---------- */
.preloader {
  position: fixed; inset: 0;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  z-index: 99999; transition: opacity 0.6s ease, visibility 0.6s;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.pl-inner { text-align: center; }
.pl-logo {
  width: 80px; height: 80px; object-fit: contain;
  margin: 0 auto 32px;
  filter: brightness(0) invert(1);
  animation: plPulse 1.5s ease-in-out infinite;
}
@keyframes plPulse { 0%,100%{opacity:0.6;transform:scale(0.95)} 50%{opacity:1;transform:scale(1.05)} }
.pl-bar {
  width: 240px; height: 2px; background: rgba(255,255,255,0.15);
  border-radius: 2px; margin: 0 auto 16px; overflow: hidden;
}
.pl-fill { height: 100%; width: 0%; background: var(--grad); border-radius: 2px; transition: width 0.3s; }
.pl-num { color: rgba(255,255,255,0.5); font-size: 0.75rem; letter-spacing: 0.2em; font-family: 'Cormorant Garamond', serif; }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; padding: 0 5%;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(30,64,175,0.08);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(30,64,175,0.12); }
.nav-inner {
  max-width: var(--container); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-img { width: 36px; height: 36px; object-fit: contain; }
.nav-logo-text { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 500; color: var(--navy); letter-spacing: 0.05em; }
.nav-links { display: flex; align-items: center; gap: 40px; }
.nav-link {
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.05em;
  color: var(--text-2); transition: color var(--transition);
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--grad); border-radius: 2px;
  transition: width var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--accent); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-cta {
  background: var(--grad) !important;
  color: #fff !important;
  padding: 10px 24px; border-radius: 50px;
  font-size: 0.8rem; letter-spacing: 0.08em;
  transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(30,64,175,0.35) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Mobile Menu ---------- */
.mobile-menu {
  position: fixed; inset: 0; background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  z-index: 999; opacity: 0; visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu ul { text-align: center; }
.mobile-menu li { margin: 24px 0; }
.mm-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 4vw, 2rem); color: #fff;
  font-weight: 300; letter-spacing: 0.05em;
  transition: color 0.3s;
}
.mm-link:hover { color: var(--accent-lt); }

/* ---------- Container ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 5%; }
.section { padding: clamp(80px, 10vw, 140px) 0; }

/* ---------- Section Header ---------- */
.section-label {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--accent-md);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400; line-height: 1.2;
  color: var(--navy); margin-bottom: 20px;
}
.section-desc { color: var(--text-2); max-width: 520px; }
.section-desc strong { color: var(--accent); font-weight: 700; }
.section-head { text-align: center; margin-bottom: 64px; }
.section-head .section-desc { margin: 0 auto; }

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-block;
  background: var(--grad);
  color: #fff;
  padding: 14px 36px; border-radius: 50px;
  font-size: 0.9rem; font-weight: 500; letter-spacing: 0.06em;
  transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(30,64,175,0.25);
}
.btn-primary:hover { opacity: 0.9; transform: translateY(-3px); box-shadow: 0 12px 32px rgba(30,64,175,0.40); }
.btn-primary.btn-lg { padding: 18px 48px; font-size: 1rem; }
.btn-primary.btn-full { width: 100%; text-align: center; }

.btn-ghost {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.7);
  color: #fff;
  padding: 12px 34px; border-radius: 50px;
  font-size: 0.9rem; font-weight: 500; letter-spacing: 0.06em;
  transition: background var(--transition), color var(--transition), transform var(--transition), border-color var(--transition);
}
.btn-ghost:hover { background: rgba(255,255,255,0.15); border-color: #fff; transform: translateY(-3px); }

.btn-outline {
  display: inline-block;
  border: 2px solid var(--accent);
  color: var(--accent);
  padding: 14px 40px; border-radius: 50px;
  font-size: 0.9rem; font-weight: 500; letter-spacing: 0.06em;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-outline:hover { background: var(--grad); border-color: transparent; color: #fff; transform: translateY(-3px); box-shadow: 0 8px 24px rgba(30,64,175,0.30); }

/* ---------- Reveal Animations ---------- */
.reveal-up, .reveal-left, .reveal-right, .reveal-fade {
  opacity: 0; transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22,1,0.36,1);
  transition-delay: var(--delay, 0s);
}
.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-fade { transform: translateY(20px); }
.reveal-up.in, .reveal-left.in, .reveal-right.in, .reveal-fade.in { opacity: 1; transform: none; }

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  justify-content: center; padding-top: 72px;
  position: relative; overflow: hidden;
  background: #0a0f1e;
}
/* Video background */
.hero-video {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  z-index: 0;
  opacity: 0.55;
}
/* Dark overlay for text readability */
.hero-overlay {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(5, 10, 30, 0.72) 0%,
    rgba(10, 20, 55, 0.55) 50%,
    rgba(5, 10, 30, 0.62) 100%
  );
}
.hero-inner {
  max-width: var(--container); margin: 0 auto;
  padding: 0 5%;
  display: flex; align-items: center;
  width: 100%; position: relative; z-index: 2;
}
.hero-eyebrow {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.25em;
  text-transform: uppercase; color: rgba(147, 197, 253, 0.9);
  margin-bottom: 24px; display: block;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 400; line-height: 1.15; color: #ffffff;
  margin-bottom: 28px; overflow: hidden;
  text-shadow:
    0 0 18px rgba(255,255,255,0.35),
    0 0 40px rgba(255,255,255,0.15),
    0 2px 8px rgba(0,0,0,0.6);
}
.ht-line { display: block; overflow: hidden; }
.ht-inner {
  display: block; transform: translateY(110%);
  animation: slideUp 0.9s cubic-bezier(0.22,1,0.36,1) forwards;
}
.ht-line:nth-child(1) .ht-inner { animation-delay: 1.2s; }
.ht-line:nth-child(2) .ht-inner { animation-delay: 1.4s; }
.ht-line:nth-child(3) .ht-inner { animation-delay: 1.6s; }
.ht-line:nth-child(4) .ht-inner { animation-delay: 1.8s; }
@keyframes slideUp { to { transform: translateY(0); } }
.hero-sub {
  color: rgba(226, 232, 240, 0.85); font-size: 1.05rem; line-height: 1.8;
  margin-bottom: 40px; max-width: 560px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats { display: flex; gap: 48px; }
.stat {}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem; font-weight: 400; color: #ffffff; line-height: 1;
  text-shadow: 0 0 12px rgba(255,255,255,0.3);
}
.stat-unit { font-size: 1.1rem; color: rgba(147, 197, 253, 0.9); margin-left: 2px; }
.stat-label { display: block; font-size: 0.75rem; color: rgba(203,213,225,0.7); letter-spacing: 0.1em; margin-top: 6px; }

/* Hero Visual — 3-column infinite scroll */
.hero-visual {
  position: relative;
  height: 480px;
  overflow: hidden;
}

/* Outer stage: 3-col, slight tilt, mask fade */
.hv-scroll-stage {
  display: flex;
  gap: 10px;
  height: 100%;
  width: 100%;
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
}

.hv-col {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.hv-col-track {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Scroll animations */
@keyframes hv-scroll-up {
  from { transform: translateY(0); }
  to   { transform: translateY(calc(-50% - 7px)); }
}
@keyframes hv-scroll-down {
  from { transform: translateY(calc(-50% - 7px)); }
  to   { transform: translateY(0); }
}
.hv-col--up        .hv-col-track { animation: hv-scroll-up   24s linear infinite; }
.hv-col--down      .hv-col-track { animation: hv-scroll-down 30s linear infinite; }
.hv-col--up.hv-col--mid .hv-col-track { animation-duration: 20s; }

/* Pause on hover */
.hv-scroll-stage:hover .hv-col-track { animation-play-state: paused; }

/* Thumbnail card */
.hv-thumb {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(0,0,0,0.22);
  flex-shrink: 0;
  transition: box-shadow 0.3s;
}
.hv-thumb:hover { box-shadow: 0 14px 40px rgba(0,0,0,0.35); }
.hv-thumb img {
  width: 100%;
  display: block;
  aspect-ratio: 9/16;
  object-fit: cover;
  object-position: top;
}

/* Scroll Hint */
.hero-scroll-hint {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%); text-align: center;
  color: rgba(203,213,225,0.6); font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase; z-index: 2;
}
.scroll-line {
  width: 1px; height: 40px; background: var(--grad);
  margin: 8px auto 0; animation: scrollDown 1.5s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- Mock Carousel (FV下) ---------- */
.mock-carousel-section {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  padding: 28px 0;
  border-top: 1px solid rgba(30,64,175,0.07);
  border-bottom: 1px solid rgba(30,64,175,0.07);
  pointer-events: none;
  user-select: none;
  touch-action: none;
  -webkit-user-select: none;
}
.mock-carousel-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: mockScroll 60s linear infinite;
  will-change: transform;
  animation-play-state: running !important;
}
@keyframes mockScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Compact mock card */
.mck-item {
  flex-shrink: 0;
  width: 260px;
  display: block;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  background: #fff;
  pointer-events: none;
  user-select: none;
}

/* Stage (laptop + phone) */
.mck-stage {
  position: relative;
  background: linear-gradient(160deg, #e8ecf2 0%, #d4dae6 100%);
  padding: 14px 12px 0;
  min-height: 110px;
  overflow: visible;
}
.mck-laptop { width: 80%; position: relative; z-index: 1; }
.mck-laptop-bezel {
  background: #1c1c1e;
  border-radius: 5px 5px 0 0;
  padding: 3px 3px 0;
  border: 1.5px solid #3a3a3c;
  box-shadow: 0 3px 10px rgba(0,0,0,0.28);
}
.mck-laptop-bezel img {
  width: 100%; display: block;
  border-radius: 2px 2px 0 0;
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: top;
}
.mck-laptop-chin {
  background: linear-gradient(to bottom, #2c2c2e, #1c1c1e);
  height: 9px;
  border-radius: 0 0 2px 2px;
  border: 1.5px solid #3a3a3c;
  border-top: none;
  display: flex; align-items: center; justify-content: center;
}
.mck-laptop-dot { width: 18px; height: 2px; background: #3c3c3e; border-radius: 2px; }
.mck-laptop-base {
  height: 7px;
  background: linear-gradient(to bottom, #b8b8bc, #989899);
  margin: 0 -2px;
  border-radius: 0 0 4px 4px;
}
/* Phone */
.mck-phone {
  position: absolute;
  right: 5px; bottom: 0;
  width: 27%;
  background: #1c1c1e;
  border-radius: 9px;
  padding: 4px 3px 6px;
  border: 1.5px solid #3a3a3c;
  box-shadow: 0 4px 14px rgba(0,0,0,0.42);
  z-index: 2;
}
.mck-phone-notch { width: 14px; height: 3px; background: #2c2c2e; border-radius: 3px; margin: 0 auto 3px; }
.mck-phone img {
  width: 100%; display: block;
  border-radius: 4px;
  aspect-ratio: 9/16;
  object-fit: cover;
  object-position: top;
}
.mck-phone-bar { width: 12px; height: 2px; background: #3c3c3e; border-radius: 2px; margin: 3px auto 0; }



/* ---------- About ---------- */
/* about-grid legacy removed */
.about-media { position: relative; }
.about-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--grad);
  padding: 48px;
  display: flex; align-items: center; justify-content: center;
  aspect-ratio: 1;
}
.about-img { width: 100%; max-width: 300px; margin: 0 auto; object-fit: contain; }
.about-badge {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--grad); color: #fff;
  padding: 20px 28px; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); text-align: center;
}
.badge-num { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 400; display: block; line-height: 1; }
.badge-num sup { font-size: 1.2rem; }
.badge-text { font-size: 0.75rem; letter-spacing: 0.15em; opacity: 0.85; margin-top: 4px; display: block; }
.about-lead { font-size: 1.1rem; font-weight: 500; color: var(--navy); margin-bottom: 20px; line-height: 1.7; }
.about-text { color: var(--text-2); margin-bottom: 32px; }
.about-features { margin-bottom: 40px; }
.about-features li {
  padding: 12px 0; border-bottom: 1px solid rgba(30,64,175,0.08);
  display: flex; align-items: center; gap: 12px;
  color: var(--text-2); font-size: 0.9rem;
}
.af-icon { color: var(--accent-md); font-size: 0.6rem; }

/* ---------- Works ---------- */
.works { background: var(--bg-2); }
.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-bottom: 48px;
}
.work-card {
  background: #fff; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.work-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.work-card-link { display: block; }
.work-thumb {
  height: 220px; position: relative; overflow: hidden;
}
.wt-1 { background: linear-gradient(135deg, #0f2147 0%, #1e3a8a 50%, #2563eb 100%); }
.wt-2 { background: linear-gradient(135deg, #1e40af 0%, #3b82f6 55%, #93c5fd 100%); }
.wt-3 { background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 40%, #60a5fa 100%); }
.wt-4 { background: linear-gradient(135deg, #0f2147 0%, #1d4ed8 60%, #3b82f6 100%); }
.wt-5 { background: linear-gradient(135deg, #1e40af 0%, #0ea5e9 50%, #7dd3fc 100%); }
.wt-6 { background: linear-gradient(135deg, #0f2147 0%, #2563eb 45%, #93c5fd 100%); }
.wt-inner {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.wt-geo {
  position: absolute; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.15);
}
.wt-g1 { width: 160px; height: 160px; top: -40px; right: -40px; }
.wt-g2 { width: 100px; height: 100px; bottom: 10px; left: 20px; background: rgba(255,255,255,0.05); }
.wt-g3 { width: 120px; height: 120px; top: 20px; left: -20px; border-style: dashed; }
.wt-g4 { width: 80px; height: 80px; bottom: -20px; right: 40px; background: rgba(255,255,255,0.08); }
.wt-g5 { width: 200px; height: 200px; top: -60px; left: -60px; }
.wt-g6 { width: 60px; height: 60px; bottom: 20px; right: 20px; background: rgba(255,255,255,0.12); border: none; }
.wt-label {
  position: relative; z-index: 1;
  color: rgba(255,255,255,0.85); font-size: 0.75rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  font-weight: 500;
}
.work-thumb::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(15,33,71,0.4);
  opacity: 0; transition: opacity var(--transition);
}
.work-card:hover .work-thumb::after { opacity: 1; }
.work-info { padding: 24px 28px; position: relative; }
.work-cat {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--accent-md);
  display: block; margin-bottom: 8px;
}
.work-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 500; color: var(--navy);
  margin-bottom: 8px; line-height: 1.3;
}
.work-desc { font-size: 0.85rem; color: var(--text-2); line-height: 1.6; margin-bottom: 16px; }
.work-arrow {
  font-size: 1.2rem; color: var(--accent-md);
  display: inline-block;
  transition: transform var(--transition);
}
.work-card:hover .work-arrow { transform: translateX(6px); }
.works-more { text-align: center; }

/* ---------- Services ---------- */
.services { background: var(--bg); }
.services-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 28px; margin-bottom: 48px;
}

.service-card {
  background: var(--bg-2);
  border: 1px solid rgba(30,64,175,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

/* Illustration banner */
.sv-img-wrap {
  width: 100%; height: 120px;
  position: relative; overflow: hidden;
}
.sv-illust { width: 100%; height: 100%; display: block; }

.sv-content { padding: 28px 28px 24px; flex: 1; display: flex; flex-direction: column; }

.sv-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.2em; color: var(--accent-md);
  margin-bottom: 8px; display: block;
}
.sv-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; font-weight: 500;
  color: var(--navy); margin-bottom: 14px; line-height: 1.3;
}
.sv-text {
  font-size: 0.85rem; color: var(--text-2);
  line-height: 1.75; flex: 1; margin-bottom: 16px;
}
.sv-tags {
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto;
}
.sv-tags li {
  background: var(--bg-3);
  border: 1px solid rgba(30,64,175,0.15);
  border-radius: 50px;
  padding: 3px 12px;
  font-size: 0.7rem; color: var(--accent);
  font-weight: 500; letter-spacing: 0.04em;
}

/* Speech bubble */
.sv-bubble {
  background: linear-gradient(135deg, #eff6ff 0%, #f0fdf4 100%);
  border: 1.5px solid rgba(30,64,175,0.15);
  border-radius: var(--radius);
  padding: 28px 32px;
  display: flex; gap: 20px; align-items: flex-start;
  position: relative;
}
.sv-bubble::before {
  content: '';
  position: absolute; top: -10px; left: 40px;
  width: 18px; height: 10px;
  background: linear-gradient(135deg, #eff6ff 0%, #f0fdf4 100%);
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
  border-top: 1.5px solid rgba(30,64,175,0.15);
}
.sv-bubble-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--grad);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 4px 14px rgba(30,64,175,0.25);
}
.sv-bubble-icon svg { width: 22px; height: 22px; }
.sv-bubble-text {
  font-size: 0.88rem; color: var(--text-2);
  line-height: 1.85;
}
.sv-bubble-text strong { color: var(--navy); font-weight: 600; }

/* ---------- LP Works "and more" ---------- */
.lp-and-more { margin-top: 40px; }
.lp-and-more-inner {
  text-align: center;
  background: #fff;
  border: 2px dashed rgba(30,64,175,0.2);
  border-radius: var(--radius);
  padding: 40px 24px;
}
.lp-more-dots {
  font-size: 1.5rem; color: var(--accent-md);
  letter-spacing: 0.3em; margin-bottom: 8px;
}
.lp-more-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 400;
  color: var(--navy); margin-bottom: 16px;
  font-style: italic;
}
.lp-more-text {
  font-size: 0.9rem; color: var(--text-2);
  line-height: 1.9;
}
.lp-more-text strong { color: var(--accent); font-weight: 700; }

/* ---------- Process ---------- */
.process { background: var(--grad); }
.process .section-head { margin-bottom: 56px; }

.process-label { color: rgba(255,255,255,0.65) !important; }
.process-heading { color: #fff !important; }
.process-desc { color: rgba(255,255,255,0.8) !important; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* White card */
.process-step {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 24px 28px;
  position: relative;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  transition: transform var(--transition), box-shadow var(--transition);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.process-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.22);
}
.process-step::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, #1e40af 0%, #0ea5e9 50%, #10b981 100%);
}

/* Icon */
.ps-icon {
  width: 40px; height: 40px;
  color: #fff;
  margin-bottom: 14px;
  background: linear-gradient(135deg, #1e40af 0%, #10b981 100%);
  border-radius: 10px;
  padding: 8px;
  box-shadow: 0 4px 12px rgba(30,64,175,0.28);
  flex-shrink: 0;
}
.ps-icon svg { width: 100%; height: 100%; }

/* Step number — blue→green gradient */
.ps-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem; font-weight: 300;
  background: linear-gradient(135deg, #1e40af 0%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1; margin-bottom: 10px;
  letter-spacing: -0.02em;
}

/* Title — navy→blue gradient */
.ps-title {
  font-size: 1rem; font-weight: 700;
  background: linear-gradient(135deg, #0f2147 0%, #1e40af 60%, #0ea5e9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  line-height: 1.35;
}

/* Body text */
.ps-text {
  font-size: 0.83rem;
  color: #2d2d2d;
  line-height: 1.8;
}

/* Arrow connector */
.process-step:not(:nth-child(3n))::after {
  content: '→';
  position: absolute;
  right: -18px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: rgba(255,255,255,0.7);
  z-index: 1;
}

/* ---------- CTA Banner ---------- */
.cta-banner { background: var(--bg-2); }
.cta-inner {
  text-align: center;
  padding: 80px 40px;
  background: #fff;
  border-radius: calc(var(--radius) * 1.5);
  border: 1px solid rgba(30,64,175,0.1);
  box-shadow: var(--shadow);
}
.cta-sub {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--accent-md);
  margin-bottom: 20px;
}
.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400; color: var(--navy);
  line-height: 1.3; margin-bottom: 40px;
}

/* ---------- Contact ---------- */
.contact { background: var(--bg); }

.contact-center {
  max-width: 680px;
  margin: 0 auto;
}
.contact-form-wrap {
  background: var(--bg-2); border-radius: var(--radius);
  padding: 48px 52px; border: 1px solid rgba(30,64,175,0.08);
  box-shadow: var(--shadow);
}
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.08em; color: var(--navy);
  margin-bottom: 8px; text-transform: uppercase;
}
.req { color: var(--accent-md); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; background: #fff;
  border: 1.5px solid rgba(30,64,175,0.15);
  border-radius: var(--radius-sm); padding: 14px 18px;
  font-size: 0.9rem; color: var(--text); font-family: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none; resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-md);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.12);
}


.form-result {
  margin-top: 14px; padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem; display: none;
}
.form-result--ok {
  display: block;
  background: #eff6ff; border: 1px solid #bfdbfe; color: var(--accent);
}
.form-result--ng {
  display: block;
  background: #fff0f0; border: 1px solid #fca5a5; color: #dc2626;
}
.form-note {
  margin-top: 20px; text-align: center;
  font-size: 0.8rem; color: var(--text-3);
}
.form-note a {
  color: var(--accent-md);
  text-decoration: underline;
  transition: color 0.2s;
}
.form-note a:hover { color: var(--accent); }

/* ---------- Footer ---------- */
.footer { background: var(--navy); color: rgba(255,255,255,0.7); padding: 72px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px;
}
.footer-logo-img {
  width: 36px; height: 36px; object-fit: contain;
  filter: brightness(0) invert(1);
}
.footer-logo span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; color: #fff; letter-spacing: 0.05em;
}
.footer-tagline { font-size: 0.875rem; line-height: 1.7; }
.footer-nav h4, .footer-links h4 {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer-nav ul li, .footer-links ul li { margin-bottom: 12px; }
.footer-nav a, .footer-links a {
  font-size: 0.875rem; color: rgba(255,255,255,0.6);
  transition: color 0.3s;
}
.footer-nav a:hover, .footer-links a:hover { color: var(--accent-lt); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
  font-size: 0.8rem;
}
.footer-credit { color: rgba(255,255,255,0.35); font-size: 0.75rem; }
.footer-legal { font-size: 0.75rem; color: rgba(255,255,255,0.35); }
.footer-legal a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.8); }

/* ---------- Back to Top ---------- */
.back-to-top {
  position: fixed; bottom: 32px; right: 32px;
  width: 48px; height: 48px;
  background: var(--grad); color: #fff;
  border-radius: 50%; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg); z-index: 500;
  opacity: 0; visibility: hidden; transform: translateY(16px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px); }

/* ---------- Tilt Cards ---------- */
.tilt { transform-style: preserve-3d; }


/* ---------- About Profile (Personal) ---------- */
.about { background: var(--bg); }

.about-profile-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 72px;
  align-items: start;
}

/* -- Profile Image -- */
.profile-img-wrap {
  position: relative;
  width: 320px; height: 320px;
  margin: 0 auto 36px;
}
.profile-img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
  position: relative; z-index: 1;
  box-shadow: 0 20px 60px rgba(30,64,175,0.25);
}
.profile-img-ring {
  position: absolute; inset: -10px;
  border-radius: 50%;
  border: 3px solid transparent;
  background: var(--grad) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  animation: spinDeco 12s linear infinite;
}
.profile-img-ring2 {
  position: absolute; inset: -22px;
  border-radius: 50%;
  border: 1.5px dashed rgba(30,64,175,0.25);
  animation: spinDeco 20s linear infinite reverse;
}
/* fallback when image fails */
.img-fallback .profile-img { display: none; }
.img-fallback {
  background: var(--grad);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 5rem; color: rgba(255,255,255,0.8);
}
.img-fallback::after { content: "S"; }

/* -- Profile Stats -- */
.profile-stats {
  display: flex; justify-content: space-around;
  background: var(--bg-2);
  border: 1px solid rgba(30,64,175,0.08);
  border-radius: var(--radius);
  padding: 20px 12px; margin-bottom: 28px;
}
.pst-item { text-align: center; }
.pst-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem; font-weight: 400; color: var(--navy); line-height: 1;
}
.pst-unit { font-size: 0.9rem; color: var(--accent-md); }
.pst-label {
  display: block; font-size: 0.65rem; color: var(--text-3);
  letter-spacing: 0.08em; margin-top: 6px;
}


/* CPA highlight stat */
.pst-highlight { text-align: center; }
.pst-cpa {
  display: block;
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--accent-md);
  margin-bottom: 2px;
}
.pst-cpa-val {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem; font-weight: 500; color: var(--navy);
  line-height: 1.1;
}

/* -- Tools -- */
.profile-tools { }
.tools-label {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--accent-md);
  margin-bottom: 12px;
}
.tools-icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.ti-item {
  display: flex; flex-direction: column;
  align-items: center; gap: 6px;
  cursor: default;
}
.ti-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s;
}
.ti-icon svg { width: 28px; height: 28px; }
.ti-item:hover .ti-icon {
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 10px 28px rgba(0,0,0,0.28);
}
.ti-name {
  font-size: 0.65rem; color: var(--text-3);
  text-align: center; letter-spacing: 0.02em;
  line-height: 1.2; max-width: 56px;
  transition: color 0.2s;
}
.ti-item:hover .ti-name { color: var(--accent); }

/* -- Right text block -- */
.about-lead {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem; font-weight: 400; line-height: 1.8;
  color: var(--navy); margin-bottom: 36px;
}

/* -- Career Timeline -- */
.career-timeline { margin-bottom: 32px; }
.ct-item {
  display: flex; gap: 20px;
  padding-bottom: 28px;
  position: relative;
}
.ct-item:not(:last-child)::before {
  content: '';
  position: absolute; left: 7px; top: 18px;
  width: 2px; bottom: 0;
  background: rgba(30,64,175,0.15);
}
.ct-dot {
  width: 16px; height: 16px; border-radius: 50%;
  background: #fff;
  border: 3px solid rgba(30,64,175,0.3);
  flex-shrink: 0; margin-top: 4px;
  position: relative; z-index: 1;
}
.ct-dot--accent {
  background: var(--grad);
  border-color: transparent;
  box-shadow: 0 0 0 4px rgba(37,99,235,0.15);
}
.ct-period {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--accent-md);
  display: block; margin-bottom: 4px;
}
.ct-title {
  font-size: 1rem; font-weight: 600; color: var(--navy);
  margin-bottom: 8px;
}
.ct-text { font-size: 0.875rem; color: var(--text-2); line-height: 1.7; }

/* -- Detail Text -- */
.about-detail { margin-bottom: 32px; }
.about-detail p {
  font-size: 0.9rem; color: var(--text-2); line-height: 1.9;
  margin-bottom: 16px;
}
.about-detail strong { color: var(--navy); font-weight: 600; }
.about-closing {
  font-style: italic; color: var(--accent) !important;
  font-size: 0.95rem !important; padding-left: 16px;
  border-left: 3px solid var(--accent-md);
}

/* -- Strengths -- */
.about-strengths {
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 36px;
  background: var(--bg-2);
  border: 1px solid rgba(30,64,175,0.08);
  border-radius: var(--radius); padding: 24px 28px;
}
.strength-item {
  display: flex; align-items: flex-start; gap: 14px;
}
.strength-icon { color: var(--accent-md); font-size: 0.55rem; margin-top: 6px; flex-shrink: 0; }
.strength-item div { display: flex; flex-direction: column; gap: 2px; }
.strength-item strong { font-size: 0.875rem; color: var(--navy); font-weight: 600; }
.strength-item span { font-size: 0.8rem; color: var(--text-2); }

/* -- Responsive about -- */
@media (max-width: 900px) {
  .about-profile-grid { grid-template-columns: 1fr; gap: 48px; }
  .profile-img-wrap { width: 240px; height: 240px; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .works-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-step::after { display: none; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-inner { padding: 0 5%; min-height: auto; }
  .hero-text { padding: 40px 0 24px; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-badge { bottom: 16px; right: 16px; }
  .works-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .cursor-dot, .cursor-ring { display: none; }
  body { cursor: auto; }
  button { cursor: pointer; }
  a { cursor: pointer; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .contact-form-wrap { padding: 28px 20px; }
  .cta-inner { padding: 48px 24px; }
}


/* ===== LP Works ===== */
.lp-works { background: #f7f7f9; }

.lp-works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Card */
.lp-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.lp-card:hover { transform: translateY(-8px); box-shadow: 0 16px 40px rgba(0,0,0,0.14); }

/* Device stage */
.lp-device-stage {
  position: relative;
  background: linear-gradient(160deg, #e8ecf2 0%, #d4dae6 100%);
  padding: 24px 20px 0;
  min-height: 200px;
  overflow: visible;
}

/* Laptop */
.lp-laptop-mock { width: 80%; position: relative; z-index: 1; }

.lp-laptop-bezel {
  background: #1c1c1e;
  border-radius: 8px 8px 0 0;
  padding: 5px 5px 0;
  border: 2px solid #3a3a3c;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.lp-laptop-bezel img {
  width: 100%; display: block;
  border-radius: 3px 3px 0 0;
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: top;
}

.lp-laptop-chin {
  background: linear-gradient(to bottom, #2c2c2e, #1c1c1e);
  height: 18px;
  border-radius: 0 0 2px 2px;
  border: 2px solid #3a3a3c;
  border-top: none;
  display: flex; align-items: center; justify-content: center;
}
.lp-laptop-dot {
  width: 36px; height: 4px;
  background: #3c3c3e; border-radius: 2px;
}

.lp-laptop-base {
  height: 14px;
  background: linear-gradient(to bottom, #b8b8bc, #989899);
  margin: 0 -2px;
  border-radius: 0 0 6px 6px;
  position: relative;
}
.lp-laptop-base::after {
  content: '';
  position: absolute; bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 30%; height: 6px;
  background: #8a8a8c;
  border-radius: 0 0 6px 6px;
}

/* Phone */
.lp-phone-mock {
  position: absolute;
  right: 10px; bottom: 0;
  width: 30%;
  background: #1c1c1e;
  border-radius: 18px;
  padding: 8px 5px 12px;
  border: 2px solid #3a3a3c;
  box-shadow: 0 8px 30px rgba(0,0,0,0.45);
  z-index: 2;
}
.lp-phone-notch {
  width: 26px; height: 6px;
  background: #2c2c2e;
  border-radius: 4px;
  margin: 0 auto 5px;
}
.lp-phone-mock img {
  width: 100%; display: block;
  border-radius: 8px;
  aspect-ratio: 9/16;
  object-fit: cover;
  object-position: top;
}
.lp-phone-home-bar {
  width: 22px; height: 3px;
  background: #3c3c3e;
  border-radius: 2px;
  margin: 7px auto 0;
}

/* Card footer */
.lp-card-footer {
  padding: 20px 18px 18px;
}
.lp-client-box {
  display: inline-block;
  border: 1.5px solid #c8c8cc;
  border-radius: 4px;
  padding: 5px 14px;
  font-size: 0.78rem;
  color: #555;
  margin-bottom: 8px;
  font-weight: 500;
}
.lp-work-title {
  font-size: 0.88rem;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.4;
}
.lp-site-btn {
  display: block;
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: background 0.25s, transform 0.25s;
}
.lp-site-btn:hover { background: var(--accent); transform: translateY(-2px); }

/* ===== PS Service Section ===== */
.ps-service { background: var(--bg); }

.ps-inner {
  border: 2px solid rgba(30,64,175,0.12);
  border-radius: calc(var(--radius) * 1.5);
  padding: 64px 56px;
  background: linear-gradient(135deg, #fafcff 0%, #f0f5ff 100%);
  position: relative;
  overflow: hidden;
}
.ps-inner::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(37,99,235,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.ps-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  background: var(--grad);
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem; font-weight: 600;
  border-radius: 50%;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(30,64,175,0.3);
}

.ps-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400; color: var(--navy);
  margin-bottom: 16px; line-height: 1.3;
}
.ps-lead {
  color: var(--text-2); font-size: 1rem;
  line-height: 1.8; margin-bottom: 48px;
}

.ps-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-bottom: 48px;
}

.ps-card {
  background: #fff;
  border: 1px solid rgba(30,64,175,0.1);
  border-radius: var(--radius);
  padding: 32px 24px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.ps-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.ps-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad); border-radius: var(--radius) var(--radius) 0 0;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}
.ps-card:hover::before { transform: scaleX(1); }

.ps-card-icon {
  width: 44px; height: 44px;
  color: var(--accent);
  margin-bottom: 16px;
}
.ps-card-icon svg { width: 100%; height: 100%; }

.ps-card h3 {
  font-size: 0.95rem; font-weight: 600;
  color: var(--navy); margin-bottom: 10px;
  line-height: 1.4;
}
.ps-card p {
  font-size: 0.82rem; color: var(--text-2);
  line-height: 1.75;
}

.ps-cta { text-align: center; }
.ps-cta p {
  color: var(--text-2); font-size: 0.9rem;
  margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
  .lp-works-grid { grid-template-columns: repeat(2, 1fr); }
  .ps-cards { grid-template-columns: repeat(2, 1fr); }
  .ps-inner { padding: 48px 36px; }
}
@media (max-width: 600px) {
  .lp-works-grid { grid-template-columns: 1fr; }
  .ps-cards { grid-template-columns: 1fr; }
  .ps-inner { padding: 32px 20px; }
  .lp-phone-mock { width: 28%; }
}
