/* index.scss - Design System & Styles for Nurse Recruitment LP */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&family=Outfit:wght@400;600;800&display=swap");
:root {
  /* Colors */
  --primary: #0d9488; /* Teal 600 - Clean & Trustworthy */
  --primary-dark: #0f766e; /* Teal 700 */
  --primary-light: #ccfbf1; /* Teal 100 */
  --secondary: #0ea5e9; /* Sky 500 - Professional Medical */
  --secondary-dark: #0369a1; /* Sky 700 */
  --accent: #f59e0b; /* Amber 500 - Warm Accent */
  --bg-main: #f8fafc; /* Slate 50 - Background */
  --bg-soft: #f0fdfa; /* Teal 50 - Warm light teal */
  --bg-card: #ffffff;
  --text-main: #0f172a; /* Slate 900 */
  --text-muted: #475569; /* Slate 600 */
  --border-color: #e2e8f0; /* Slate 200 */
  /* Fonts */
  --font-base: "Noto Sans JP", sans-serif;
  --font-heading: "Outfit", "Noto Sans JP", sans-serif;
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md:
    0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.08);
  --shadow-xl:
    0 20px 25px -5px rgba(13, 148, 136, 0.1),
    0 8px 10px -6px rgba(13, 148, 136, 0.05);
  --shadow-glow: 0 0 15px rgba(245, 158, 11, 0.4);
  /* Animations & Transitions */
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  /* Container Width */
  --container-max: 1200px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  font-feature-settings: "palt";
}

body {
  font-family: var(--font-base);
  color: var(--text-main);
  background-color: var(--bg-main);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
}

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

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

ul,
ol {
  list-style: none;
}

/* Typography Utilities */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-base);
  font-weight: 700;
  line-height: 1.3;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Base Layout */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}
@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
}

/* Header */
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-fast);
}
.header--scrolled {
  box-shadow: var(--shadow-md);
  background-color: rgba(255, 255, 255, 0.95);
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header__logo-text {
  display: flex;
  flex-direction: column;
}
.header__clinic-name {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.05em;
}
.header__logo-main {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 768px) {
  .header__nav {
    display: none; /* Mobile menu can be toggled */
  }
}
.header__link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
}
.header__link::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition-fast);
}
.header__link:hover {
  color: var(--primary);
}
.header__link:hover::after {
  width: 100%;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-normal);
  border: none;
  text-align: center;
}
.btn--primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  box-shadow: 0 4px 14px rgba(13, 148, 136, 0.3);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 148, 136, 0.4);
}
.btn--accent {
  background: linear-gradient(135deg, var(--accent) 0%, #f59e0b 100%);
  color: white;
  box-shadow: var(--shadow-glow);
  position: relative;
  overflow: hidden;
}
.btn--accent::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}
.btn--accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.6);
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}
.btn--accent:hover::before {
  left: 100%;
  transition: 0.5s;
}
.btn--outline {
  background-color: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}
.btn--outline:hover {
  background-color: #00aec1;
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 148, 136, 0.4);
}

/* Hero Section */
.hero {
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: var(--bg-soft);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: white;
  border: 1px solid var(--primary-light);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.hero__badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
.hero__title {
  font-size: 3.25rem;
  line-height: 1.25;
  color: var(--text-main);
  margin-bottom: 24px;
}
.hero__title span {
  display: block;
}
.hero__title-small {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.hero__title-large {
  font-weight: 900;
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 2.25rem;
  }
  .hero__title-small {
    font-size: 1.2rem;
  }
}
.hero__lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 540px;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  border-top: 1px solid var(--border-color);
  padding-top: 32px;
}
.hero__stat-item {
  display: flex;
  flex-direction: column;
}
.hero__stat-val {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
}
.hero__stat-lbl {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.hero__content--single {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__content--single .hero__badge {
  margin: 0 auto 24px;
}
.hero__content--single .hero__title {
  margin-left: auto;
  margin-right: auto;
}
.hero__content--single .hero__lead {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.hero__content--single .hero__actions {
  justify-content: center;
  width: 100%;
}
.hero__content--single .hero__stats {
  justify-content: center;
  width: 100%;
  gap: 60px;
}
@media (max-width: 768px) {
  .hero__content--single .hero__stats {
    gap: 30px;
    flex-wrap: wrap;
  }
}

@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(0.9);
    opacity: 0.6;
  }
}
/* Sections General */
.section-title-wrapper {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-main);
}
@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }
}
.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  margin: 16px auto 0;
  border-radius: 2px;
}

/* Feature Section */
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 768px) {
  .features__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.feature-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}
.feature-card__number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(13, 148, 136, 0.15);
  position: absolute;
  top: 20px;
  right: 32px;
}
.feature-card__icon {
  width: 56px;
  height: 56px;
  background-color: var(--bg-soft);
  color: var(--secondary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.5rem;
}
.feature-card__title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.feature-card__text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Clinical Appeal / Specialty Section */
.specialty {
  background-color: var(--bg-soft);
}
.specialty__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .specialty__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .specialty__image-order {
    order: -1;
  }
}
.specialty__img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
@media (max-width: 768px) {
  .specialty__img-wrapper {
    max-width: 400px;
    margin-inline: auto;
  }
}
.specialty__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.specialty__title {
  font-size: 1.8rem;
  color: var(--primary-dark);
  position: relative;
  padding-bottom: 12px;
}
.specialty__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--secondary);
}
.specialty__text {
  color: var(--text-muted);
}
.specialty__list {
  display: grid;
  gap: 16px;
}
.specialty__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background-color: white;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--primary);
}
.specialty__item-icon {
  color: var(--primary);
  font-weight: bold;
}
.specialty__item-title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
}
.specialty__item-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Environment & Staff Section */
.env__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .env__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.env__img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
@media (max-width: 768px) {
  .env__img-wrapper {
    max-width: 400px;
    margin-inline: auto;
  }
}
.env__qa {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.env__qa-item {
  border: 1px solid var(--border-color);
  background-color: white;
  border-radius: var(--radius-md);
  padding: 20px 24px;
  transition: var(--transition-fast);
}
.env__qa-item:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
}
.env__q {
  font-weight: 700;
  color: var(--primary-dark);
  font-size: 1.1rem;
  margin-bottom: 8px;
  display: flex;
  gap: 8px;
}
.env__a {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Info / Job Details Table */
.job-info {
  background-color: white;
}

.table-wrapper {
  background-color: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-color);
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}

.job-table {
  width: 100%;
  border-collapse: collapse;
}
.job-table tr {
  border-bottom: 1px solid var(--border-color);
}
.job-table tr:last-child {
  border-bottom: none;
}
@media (max-width: 768px) {
  .job-table th,
  .job-table td {
    display: block;
    width: 100%;
    border-right: none;
  }
}
.job-table th {
  background-color: var(--bg-soft);
  color: var(--primary-dark);
  font-weight: 700;
  text-align: left;
  padding: 24px 32px;
  width: 25%;
  vertical-align: top;
  border-right: 1px solid var(--border-color);
}
@media (max-width: 768px) {
  .job-table th {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
    width: 100%;
  }
}
.job-table td {
  padding: 24px 32px;
  color: var(--text-main);
  line-height: 1.6;
}
@media (max-width: 768px) {
  .job-table td {
    padding: 16px 20px;
  }
}
.job-table__badge {
  display: inline-block;
  background-color: #fee2e2;
  color: #ef4444;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 8px;
  vertical-align: middle;
}

/* CTA / Application Section */
.cta {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}
.cta__content {
  position: relative;
  z-index: 10;
  max-width: 700px;
  margin: 0 auto;
}
.cta__title {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cta__title {
    font-size: 1.8rem;
  }
}
.cta__text {
  font-size: 1.1rem;
  margin-bottom: 40px;
  opacity: 0.9;
}
.cta__actions {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cta__note {
  margin-top: 24px;
  font-size: 0.875rem;
  opacity: 0.9;
}

/* Footer */
footer {
  background-color: #0f172a;
  color: #cdcdcd;
  padding: 60px 0;
}
footer .footer__name {
  font-size: 20px;
  font-weight: 700;
}
footer .footer__address {
  font-size: 0.9rem;
}
footer .footer__copy {
  text-align: center;
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid #333;
  font-size: 0.9rem;
}

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