/* =============================================
   はたらくナビすぐワーク LP
   Pop & Casual Japanese AD Style Redesign
   ============================================= */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&family=Zen+Maru+Gothic:wght@400;500;700;900&display=swap');

/* --- CSS Custom Properties --- */
:root {
  /* Blue / Light Blue / Blue-Green Palette */
  --turquoise-300: #64B5F6;
  --turquoise-400: #42A5F5;
  --turquoise-500: #1E88E5;
  --turquoise-600: #1976D2;
  --turquoise-700: #1565C0;
  --lime-300: #4DB6AC;
  --lime-400: #26A69A;
  --lime-500: #00897B;
  --lime-600: #00796B;

  /* Pastel Accents */
  --pastel-yellow: #FFE082;
  --pastel-pink: #FF8A80;
  --pastel-coral: #FFAB91;
  --pastel-lavender: #90CAF9;
  --pastel-mint: #80CBC4;
  --pastel-sky: #81D4FA;

  /* Warm Neutrals */
  --cream: #F5F9FC;
  --cream-dark: #E3F2FD;
  --beige: #BBDEFB;
  --warm-gray-50: #FAFBFD;
  --warm-gray-100: #F0F4F8;
  --warm-gray-200: #E2E8F0;
  --warm-gray-300: #CBD5E1;
  --warm-gray-400: #94A3B8;
  --warm-gray-500: #64748B;
  --warm-gray-600: #475569;
  --warm-gray-700: #334155;
  --warm-gray-800: #1E293B;
  --warm-gray-900: #0F172A;

  /* Bright Accents */
  --orange-bright: #FF9800;
  --orange-dark: #F57C00;
  --red-bright: #FF5252;
  --yellow-bright: #FFD54F;
  --green-bright: #66BB6A;

  /* Semantic Colors */
  --primary: var(--turquoise-500);
  --primary-dark: var(--turquoise-700);
  --primary-light: var(--turquoise-300);
  --accent: var(--orange-bright);
  --accent-pink: var(--pastel-pink);
  --accent-yellow: var(--pastel-yellow);
  --text-dark: #1E293B;
  --text-body: #334155;
  --text-light: #64748B;
  --text-on-dark: #FFFFFF;
  --bg-page: var(--cream);
  --bg-white: #FFFFFF;
  --bg-mint: #E0F2F1;
  --bg-lavender: #E8EAF6;
  --line-green: #06c755;

  /* Gradient */
  --gradient-vitamin: linear-gradient(135deg, var(--turquoise-500) 0%, var(--lime-500) 100%);
  --gradient-vitamin-bright: linear-gradient(135deg, var(--turquoise-400) 0%, var(--lime-400) 100%);
  --gradient-warm: linear-gradient(135deg, #FF9800 0%, #FF5722 100%);
  --gradient-sunset: linear-gradient(135deg, var(--pastel-pink) 0%, var(--pastel-yellow) 100%);
  --gradient-sky: linear-gradient(135deg, var(--pastel-sky) 0%, var(--pastel-lavender) 100%);

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;

  /* Layout */
  --content-width: 430px;
  --content-padding: 1.25rem;

  /* Radius - more rounded for pop feel */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Soft Shadows (Flat Design 2.0) */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.1);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.12);
  --shadow-colored: 0 4px 20px rgba(0,188,212,0.2);
  --shadow-pop: 0 6px 0 rgba(0,0,0,0.06);

  /* Glass */
  --glass-bg: rgba(255,255,255,0.65);
  --glass-border: rgba(255,255,255,0.5);
  --glass-blur: 16px;

  /* Font */
  --font-heading: 'Noto Sans JP', sans-serif;
  --font-body: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background: #0a0a0a;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--bg-page);
  line-height: 1.8;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 80px;
  max-width: var(--content-width);
  margin: 0 auto;
  box-shadow: 0 0 60px rgba(0,0,0,0.15);
  position: relative;
}

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

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

ul, ol {
  list-style: none;
}

/* --- SVG Icon Base --- */
.svg-icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: -0.125em;
  flex-shrink: 0;
}

.svg-icon-sm {
  width: 0.9em;
  height: 0.9em;
  display: inline-block;
  vertical-align: -0.1em;
  flex-shrink: 0;
}

.svg-icon-star {
  width: 0.85rem;
  height: 0.85rem;
  display: inline-block;
  vertical-align: middle;
  color: var(--orange-bright);
}

/* --- Utility Classes --- */
.inner {
  width: 100%;
  padding-left: var(--content-padding);
  padding-right: var(--content-padding);
}

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

/* --- Section Titles (Magazine Style) --- */
.section-label {
  display: inline-block;
  background: var(--gradient-vitamin);
  color: var(--text-on-dark);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 900;
  padding: 0.35rem 1.4rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.08em;
  margin-bottom: var(--space-sm);
  box-shadow: var(--shadow-colored);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1.5;
  color: var(--text-dark);
  margin-bottom: var(--space-lg);
}

.section-title .highlight {
  background: linear-gradient(transparent 55%, var(--pastel-yellow) 55%);
  padding: 0 0.15em;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
  font-weight: 500;
  margin-bottom: var(--space-xl);
}

/* =============================================
   DECORATIVE ELEMENTS
   ============================================= */

/* --- Dot Pattern Background --- */
.dot-pattern {
  position: relative;
}

.dot-pattern::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(circle, var(--turquoise-500) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}

/* --- Ribbon Decoration --- */
.ribbon {
  position: relative;
  display: inline-block;
  background: var(--gradient-warm);
  color: white;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 900;
  padding: 0.35rem 1.2rem 0.35rem 0.9rem;
  border-radius: 4px 0 0 4px;
  box-shadow: 0 3px 8px rgba(255,87,34,0.3);
}

.ribbon::after {
  content: '';
  position: absolute;
  right: -12px;
  top: 0;
  border-style: solid;
  border-width: 14px 12px 14px 0;
  border-color: transparent transparent transparent var(--orange-dark);
}

.ribbon-right {
  border-radius: 0 4px 4px 0;
  padding: 0.35rem 0.9rem 0.35rem 1.2rem;
}

.ribbon-right::after {
  right: auto;
  left: -12px;
  border-width: 14px 0 14px 12px;
  border-color: transparent var(--orange-dark) transparent transparent;
}

/* Corner ribbon */
.corner-ribbon {
  position: absolute;
  top: 12px;
  left: -6px;
  background: var(--red-bright);
  color: white;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 900;
  padding: 0.25rem 1rem 0.25rem 0.6rem;
  z-index: 5;
  border-radius: 2px;
  box-shadow: 0 2px 6px rgba(255,82,82,0.35);
}

.corner-ribbon::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  border-style: solid;
  border-width: 5px 6px 0 0;
  border-color: #c62828 transparent transparent transparent;
}

.corner-ribbon::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 0;
  bottom: 0;
  border-style: solid;
  border-width: 13px 8px 13px 0;
  border-color: transparent transparent transparent var(--red-bright);
}

/* --- Speech Bubble --- */
.speech-bubble {
  position: relative;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-md);
}

.speech-bubble::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 28px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 8px 0 8px;
  border-color: var(--bg-white) transparent transparent transparent;
}

/* --- Glass Card --- */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* --- Handwritten Marker --- */
.marker {
  background: linear-gradient(transparent 55%, var(--pastel-yellow) 55%);
  padding: 0 0.15em;
}

.marker-pink {
  background: linear-gradient(transparent 55%, var(--pastel-pink) 55%);
  padding: 0 0.15em;
}

.marker-mint {
  background: linear-gradient(transparent 55%, var(--pastel-mint) 55%);
  padding: 0 0.15em;
}

/* --- Wave Section Divider --- */
.wave-divider {
  width: 100%;
  line-height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

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

/* --- Decorative Dots --- */
.deco-dots {
  position: absolute;
  width: 60px;
  height: 60px;
  background-image: radial-gradient(circle, var(--turquoise-400) 3px, transparent 3px);
  background-size: 12px 12px;
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}

/* --- Decorative Circle --- */
.deco-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* --- Confetti Shapes --- */
.deco-confetti {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

/* =============================================
   HEADER (Glassmorphism)
   ============================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,249,240,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,188,212,0.12);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem var(--content-padding);
  width: 100%;
}

.header-logo {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 900;
  color: var(--turquoise-600);
  display: flex;
  align-items: center;
}

.header-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.header-phone {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--turquoise-600);
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.header-phone .phone-icon {
  font-size: 0.9rem;
}

.header-phone .svg-icon {
  width: 0.9rem;
  height: 0.9rem;
}

.header-line-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--line-green);
  color: white;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-full);
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 3px 10px rgba(6,199,85,0.25);
}

.header-line-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(6,199,85,0.35);
}

.header-line-btn .svg-icon {
  width: 0.85rem;
  height: 0.85rem;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  position: relative;
  background: #2c3e5a;
  overflow: hidden;
  padding-bottom: 0;
}

.hero-bg-image {
  display: none;
}

/* Dot pattern overlay on hero - disabled for image hero */
.hero::before {
  display: none;
}

/* Decorative circles - disabled for image hero */
.hero::after {
  display: none;
}

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

.hero-main-image {
  width: 100%;
  margin-bottom: 0;
  overflow: hidden;
}

.hero-main-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.hero-content .cta-group {
  padding: 1.5rem var(--content-padding) 0;
}

.hero-content .cta-note {
  padding: 0 var(--content-padding);
}

.hero-badge-row {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: rgba(255,255,255,0.9);
  color: var(--turquoise-700);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 900;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.hero-badge .badge-icon {
  font-size: 0.85rem;
}

.hero-badge .badge-icon .svg-icon {
  stroke: var(--turquoise-600);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 900;
  color: white;
  line-height: 1.5;
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.hero-title .em {
  color: var(--pastel-yellow);
  position: relative;
}

.hero-title .em-orange {
  color: var(--yellow-bright);
  position: relative;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.hero-stat {
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: var(--radius-md);
  padding: 0.6rem 0.4rem;
  text-align: center;
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--pastel-yellow);
  line-height: 1.2;
}

.hero-stat-number .unit {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.85);
}

.hero-stat-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.9);
  font-weight: 700;
  margin-top: 0.15rem;
}

/* CTA Buttons - Pop Style */
.cta-group {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.1rem 1.5rem;
  border-radius: var(--radius-lg);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 900;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
  padding: 1.1rem 1.5rem;
}

.cta-btn:hover {
  transform: translateY(-3px);
}

.cta-btn:active {
  transform: translateY(0);
}

.cta-line {
  background: var(--line-green);
  color: white;
  box-shadow: 0 4px 0 #04a03c, 0 6px 20px rgba(6,199,85,0.35);
  border-radius: var(--radius-xl);
}

.cta-line:hover {
  box-shadow: 0 4px 0 #04a03c, 0 8px 28px rgba(6,199,85,0.45);
}

.cta-btn .cta-icon {
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-line .cta-icon .svg-icon {
  width: 2.2rem;
  height: 2.2rem;
}

.cta-line .cta-sub {
  font-size: 0.72rem;
  font-weight: 500;
  opacity: 0.9;
  display: block;
}

.cta-phone {
  background: white;
  color: var(--turquoise-600);
  box-shadow: 0 4px 0 rgba(0,0,0,0.06), 0 6px 20px rgba(0,0,0,0.08);
  border-radius: var(--radius-xl);
}

.cta-phone:hover {
  box-shadow: 0 4px 0 rgba(0,0,0,0.06), 0 8px 28px rgba(0,0,0,0.12);
}

.cta-phone .cta-icon .svg-icon {
  width: 1.8rem;
  height: 1.8rem;
}

.cta-phone .cta-sub {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-light);
  display: block;
}

.cta-note {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
  margin-top: 0.5rem;
}

/* Pulse for LINE CTA - bouncy */
@keyframes bounce-glow {
  0%, 100% {
    box-shadow: 0 4px 0 #04a03c, 0 6px 20px rgba(6,199,85,0.35);
  }
  50% {
    box-shadow: 0 4px 0 #04a03c, 0 6px 30px rgba(6,199,85,0.55), 0 0 0 8px rgba(6,199,85,0.1);
  }
}

.cta-line {
  animation: bounce-glow 2.5s ease-in-out infinite;
}

/* =============================================
   EMPATHY SECTION - Speech Bubble Cards
   ============================================= */
.empathy {
  background: var(--bg-white);
  padding: var(--space-3xl) 0 0;
  position: relative;
}

.empathy-intro {
  position: relative;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: var(--space-xl);
  line-height: 1.7;
  z-index: 1;
}

.empathy-intro::after {
  content: '?';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  font-size: 8rem;
  font-weight: 900;
  color: var(--warm-gray-300);
  opacity: 0.3;
  z-index: -1;
  line-height: 1;
  pointer-events: none;
}

.empathy-intro .worry-text {
  color: var(--red-bright);
  font-size: 1.7rem;
  font-weight: 900;
  position: relative;
  display: inline-block;
}

/* Empathy Table */
.empathy-table-wrap {
  margin-bottom: var(--space-xl);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--warm-gray-200);
}

.empathy-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  background: var(--bg-white);
}

.empathy-table thead tr {
  background: var(--gradient-vitamin);
}

.empathy-table th {
  color: white;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 900;
  padding: 0.65rem 0.5rem;
  text-align: left;
  letter-spacing: 0.03em;
}

.empathy-th-icon {
  width: 48px;
  text-align: center !important;
}

.empathy-table tbody tr {
  border-bottom: 1px solid var(--warm-gray-200);
  transition: background 0.2s;
}

.empathy-table tbody tr:last-child {
  border-bottom: none;
}

.empathy-table tbody tr:nth-child(even) {
  background: var(--warm-gray-50);
}

.empathy-table tbody tr:hover {
  background: #E3F2FD;
}

.empathy-table td {
  padding: 0.75rem 0.5rem;
  vertical-align: middle;
}

.empathy-td-icon {
  text-align: center;
  width: 48px;
}

.empathy-td-icon .svg-icon {
  width: 1.3rem;
  height: 1.3rem;
}

.empathy-sky .svg-icon { stroke: #1565C0; }
.empathy-pink .svg-icon { stroke: #E53935; }
.empathy-yellow .svg-icon { stroke: #F57C00; }
.empathy-lavender .svg-icon { stroke: #7B1FA2; }

.empathy-sky { background: #E1F5FE; border-radius: 0; }
.empathy-pink { background: #FCE4EC; }
.empathy-yellow { background: #FFF8E1; }
.empathy-lavender { background: #F3E5F5; }

.empathy-td-title {
  font-family: var(--font-heading);
  font-weight: 900;
  color: var(--text-dark);
  font-size: 0.95rem;
  white-space: nowrap;
}

.empathy-td-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
  font-weight: 500;
}

.empathy-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-white);
  border: 2px solid var(--warm-gray-200);
  border-radius: var(--radius-lg);
  padding: 1rem;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  position: relative;
}

.empathy-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
  border-color: var(--turquoise-400);
}

/* Alternate pastel tints on cards */
.empathy-card:nth-child(1) { border-left: 4px solid var(--pastel-sky); }
.empathy-card:nth-child(2) { border-left: 4px solid var(--pastel-pink); }
.empathy-card:nth-child(3) { border-left: 4px solid var(--pastel-yellow); }
.empathy-card:nth-child(4) { border-left: 4px solid var(--pastel-lavender); }

.empathy-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.empathy-card:nth-child(1) .empathy-card-icon { background: #E1F5FE; }
.empathy-card:nth-child(2) .empathy-card-icon { background: #FCE4EC; }
.empathy-card:nth-child(3) .empathy-card-icon { background: #FFF8E1; }
.empathy-card:nth-child(4) .empathy-card-icon { background: #F3E5F5; }

.empathy-card-icon .svg-icon {
  width: 1.3rem;
  height: 1.3rem;
  stroke: var(--turquoise-600);
}

.empathy-card-text {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.5;
}

.empathy-message {
  background: var(--gradient-vitamin);
  color: white;
  border-radius: 0;
  padding: 3rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: none;
  margin: 0;
  width: 100%;
}

.empathy-message h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 0.75rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.empathy-message .empathy-em {
  font-size: 2.2rem;
  position: relative;
  display: inline-block;
  padding: 0 0.15em;
}

.empathy-message .empathy-em::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.1em;
  height: 0.35em;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
  z-index: -1;
}

.empathy-message p {
  font-size: 1.05rem;
  opacity: 0.95;
  line-height: 1.8;
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* =============================================
   USP (Unique Selling Points) - Glass Cards
   ============================================= */
.usp {
  background: var(--bg-mint);
  padding: var(--space-3xl) 0;
  position: relative;
}

/* Dot pattern on USP section */
.usp::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(circle, var(--turquoise-500) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.04;
  pointer-events: none;
}

.usp .inner {
  position: relative;
  z-index: 1;
}

/* USP Zig Zag List (Frameless) */
.usp-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 0;
}

.usp-row {
  display: flex;
  align-items: center;
  gap: 1.0rem;
}

.usp-row-reverse {
  flex-direction: row-reverse;
}

.usp-row-image {
  flex: 0 0 150px;
  max-width: 150px;
  margin-left: calc(-1 * var(--content-padding));
  position: relative;
  z-index: 2;
}

.usp-row-reverse .usp-row-image {
  margin-left: 0;
  margin-right: calc(-1 * var(--content-padding));
}

.usp-row-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.usp-row-text {
  flex: 1;
}

.usp-row-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.usp-row-title .usp-num {
  display: inline-block;
  background: var(--gradient-vitamin);
  color: white;
  width: 1.5rem;
  height: 1.5rem;
  text-align: center;
  line-height: 1.5rem;
  border-radius: 50%;
  font-size: 0.85rem;
  vertical-align: middle;
  margin-right: 0.3rem;
  box-shadow: 0 2px 6px rgba(0,188,212,0.3);
}

.usp-row-title .number {
  color: var(--orange-bright);
  font-size: 1.4rem;
}

.usp-row-desc {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.6;
  font-weight: 600;
}

.usp-divider {
  border: none;
  border-top: 1px solid rgba(0,0,0,0.1);
  margin: 0;
  width: 100%;
}

/* =============================================
   JOBS SECTION - Magazine Style Cards
   ============================================= */
.jobs {
  background: var(--bg-white);
  padding: var(--space-3xl) 0;
}

.jobs-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0.5rem 1.25rem 1rem;
  scroll-padding-inline: 1.25rem;
}

.jobs-scroll::-webkit-scrollbar {
  height: 4px;
}

.jobs-scroll::-webkit-scrollbar-track {
  background: var(--warm-gray-100);
  border-radius: 2px;
}

.jobs-scroll::-webkit-scrollbar-thumb {
  background: var(--turquoise-400);
  border-radius: 2px;
}

.job-card {
  min-width: 260px;
  max-width: 280px;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--warm-gray-100);
  scroll-snap-align: start;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.job-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.job-card-header {
  background: var(--gradient-vitamin);
  color: white;
  padding: 0.75rem 1rem;
  position: relative;
}

.job-card-category {
  font-size: 0.75rem;
  font-weight: 900;
  opacity: 0.9;
  font-family: var(--font-heading);
}

.job-card-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 900;
  margin-top: 0.15rem;
}

.job-card-name .svg-icon-sm {
  width: 1em;
  height: 1em;
  stroke: white;
}

.job-card-badge {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: var(--pastel-yellow);
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 900;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.job-card-image {
  width: 100%;
  border-bottom: 1px solid var(--warm-gray-100);
}

.job-card-image img {
  width: 100%;
  aspect-ratio: 5 / 1;
  object-fit: cover;
  display: block;
}

.job-card-body {
  padding: 1rem;
}

.job-detail-row {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  padding: 0.45rem 0;
  border-bottom: 1px dashed var(--warm-gray-200);
  font-size: 0.88rem;
}

.job-detail-row:last-of-type {
  border-bottom: none;
}

.job-detail-label {
  font-family: var(--font-heading);
  font-weight: 900;
  color: var(--turquoise-600);
  white-space: nowrap;
  font-size: 0.8rem;
}

.job-detail-value {
  color: var(--text-dark);
  font-weight: 700;
}

.job-detail-value.salary {
  color: var(--red-bright);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.05rem;
}

.job-card-cta {
  display: block;
  background: var(--line-green);
  color: white;
  text-align: center;
  padding: 0.75rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 900;
  margin: 0.75rem 0 0;
  border-radius: var(--radius-md);
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 3px 0 #04a03c;
}

.job-card-cta .svg-icon-sm {
  width: 0.85em;
  height: 0.85em;
  vertical-align: -0.1em;
}

.job-card-cta:hover {
  background: #05b04a;
  transform: translateY(-1px);
}

.scroll-hint {
  text-align: center;
  font-size: 0.82rem;
  color: var(--warm-gray-400);
  font-weight: 500;
  margin-top: 0.5rem;
}

/* =============================================
   TESTIMONIALS - Speech Bubble Style
   ============================================= */
.testimonials {
  background: var(--bg-lavender);
  padding: var(--space-3xl) 0;
  position: relative;
}

/* Subtle dot pattern */
.testimonials::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(circle, var(--pastel-lavender) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.2;
  pointer-events: none;
}

.testimonials .inner {
  position: relative;
  z-index: 1;
}

.testimonial-cards {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.testimonial-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 1.25rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(179,157,219,0.15);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

/* Speech bubble tail */
.testimonial-card::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 36px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 7px 0 7px;
  border-color: white transparent transparent transparent;
  filter: drop-shadow(0 2px 2px rgba(0,0,0,0.04));
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-vitamin-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(0,188,212,0.2);
}

.testimonial-avatar .svg-icon {
  width: 1.3rem;
  height: 1.3rem;
  stroke: white;
}

.testimonial-meta {
  flex: 1;
}

.testimonial-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 900;
  color: var(--text-dark);
}

.testimonial-tag {
  font-size: 0.78rem;
  color: var(--turquoise-600);
  font-weight: 700;
}

.testimonial-stars {
  color: var(--orange-bright);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.testimonial-text {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.8;
  font-weight: 500;
}

.testimonial-text strong {
  color: var(--turquoise-700);
  font-weight: 900;
}

/* =============================================
   FLOW (Steps) - Pop Timeline
   ============================================= */
.flow {
  background: var(--bg-white);
  padding: var(--space-3xl) 0;
}

.flow-steps {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Dashed connector line for hand-drawn feel */
.flow-steps::before {
  content: '';
  position: absolute;
  top: 30px;
  bottom: 30px;
  left: 28px;
  width: 3px;
  background: repeating-linear-gradient(
    to bottom,
    var(--turquoise-400) 0px,
    var(--turquoise-400) 8px,
    transparent 8px,
    transparent 14px
  );
  border-radius: 2px;
}

.flow-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  position: relative;
}

.flow-step-number {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 50%;
  background: var(--gradient-vitamin);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.5rem;
  font-weight: 700;
  z-index: 2;
  box-shadow: 0 4px 14px rgba(0,188,212,0.3);
}

.flow-step-number .step-num {
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1;
}

.flow-step-body {
  flex: 1;
  padding-top: 0.3rem;
}

.flow-step-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}

.flow-step-title .svg-icon-sm {
  width: 1em;
  height: 1em;
  vertical-align: -0.15em;
}

.flow-step-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  font-weight: 500;
}

/* =============================================
   FINAL CTA - Celebration Style
   ============================================= */
.final-cta {
  background: var(--gradient-vitamin);
  padding: var(--space-3xl) 0 0;
  position: relative;
  overflow: hidden;
}

/* Confetti dot pattern */
.final-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(circle, var(--pastel-yellow) 3px, transparent 3px) 10px 20px,
    radial-gradient(circle, var(--pastel-pink) 2px, transparent 2px) 45px 60px,
    radial-gradient(circle, rgba(255,255,255,0.3) 2px, transparent 2px) 80px 15px,
    radial-gradient(circle, var(--pastel-yellow) 2px, transparent 2px) 120px 80px,
    radial-gradient(circle, rgba(255,255,255,0.25) 3px, transparent 3px) 200px 40px,
    radial-gradient(circle, var(--pastel-pink) 2px, transparent 2px) 170px 100px,
    radial-gradient(circle, rgba(255,255,255,0.2) 2px, transparent 2px) 300px 30px,
    radial-gradient(circle, var(--pastel-yellow) 2px, transparent 2px) 350px 70px;
  background-size: 400px 120px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

/* Decorative big circle */
.final-cta::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  z-index: 0;
}

.final-cta .inner {
  position: relative;
  z-index: 2;
}

.final-cta-badge {
  display: inline-block;
  background: var(--pastel-yellow);
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 900;
  padding: 0.45rem 1.4rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.final-cta-badge .svg-icon-sm {
  width: 0.9em;
  height: 0.9em;
  vertical-align: -0.1em;
  stroke: var(--text-dark);
}

.final-cta-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 900;
  color: white;
  line-height: 1.5;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.final-cta-title .number {
  color: var(--pastel-yellow);
  font-size: 2.5rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.final-cta-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-weight: 500;
}

.final-cta .cta-group {
  margin-bottom: 1rem;
}

.final-cta .cta-note {
  color: rgba(255,255,255,0.7);
}

/* Staff image */
.final-cta-image {
  margin-top: 2rem;
  width: 100%;
  line-height: 0;
}

.final-cta-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

/* =============================================
   FOOTER - Warm Dark
   ============================================= */
.footer {
  background: var(--warm-gray-800);
  color: rgba(255,255,255,0.7);
  padding: var(--space-xl) 0 var(--space-lg);
}

.footer-company {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 900;
  color: white;
  margin-bottom: 0.75rem;
}

.footer-info {
  font-size: 0.82rem;
  line-height: 2;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--turquoise-300);
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1rem;
  text-align: center;
}

/* =============================================
   FAB - Glassmorphism Bottom Bar
   ============================================= */
.fab {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--content-width);
  z-index: 999;
  background: rgba(255,249,240,0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(0,188,212,0.12);
  padding: 0.5rem var(--content-padding);
  display: flex;
  gap: 0.5rem;
  box-shadow: 0 -2px 16px rgba(0,0,0,0.06);
}

.fab-line {
  flex: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: var(--line-green);
  color: white;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 900;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 3px 0 #04a03c;
  position: relative;
}

.fab-line .cta-icon {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
}

.fab-line .cta-icon .svg-icon {
  width: 1.8rem;
  height: 1.8rem;
}

.fab-line:hover {
  background: #05b04a;
  transform: translateY(-1px);
}

.fab-phone {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  background: var(--turquoise-500);
  color: white;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 900;
  padding: 0.8rem 0.5rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 3px 0 var(--turquoise-700);
  position: relative;
}

.fab-phone .cta-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
}

.fab-phone .cta-icon .svg-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.fab-phone:hover {
  background: var(--turquoise-600);
  transform: translateY(-1px);
}

/* =============================================
   WAVE DIVIDERS
   ============================================= */
.wave-divider-white {
  fill: var(--bg-white);
}

.wave-divider-cream {
  fill: var(--cream);
}

.wave-divider-mint {
  fill: var(--bg-mint);
}

.wave-divider-lavender {
  fill: var(--bg-lavender);
}

.wave-divider-vitamin {
  fill: var(--turquoise-500);
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.fade-up {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays */
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.18s; }
.fade-up:nth-child(4) { transition-delay: 0.26s; }
.fade-up:nth-child(5) { transition-delay: 0.34s; }

/* =============================================
   COUNTER ANIMATION
   ============================================= */
@keyframes countUp {
  from { opacity: 0; transform: scale(0.5); }
  to { opacity: 1; transform: scale(1); }
}

.count-animate {
  animation: countUp 0.5s ease-out forwards;
}

/* =============================================
   FUN ANIMATIONS
   ============================================= */
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-8px) rotate(3deg); }
  66% { transform: translateY(4px) rotate(-2deg); }
}

.float-animation {
  animation: float 5s ease-in-out infinite;
}

@keyframes wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(3deg); }
  75% { transform: rotate(-3deg); }
}

@keyframes sparkle {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.15); }
}

/* Shimmer */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.shimmer {
  background: linear-gradient(90deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}
