/* ============================================
   リスタート - 就労支援×人材派遣
   Warm Hope: #FFF8F2 + Coral #E07A5F + Sage #7C9A7E
   ============================================ */

:root {
  --white: #FFFFFF;
  --warm-white: #FFF8F2;
  --cream: #FFF0E3;
  --coral: #E07A5F;
  --coral-dark: #C4623F;
  --coral-light: #F0A08C;
  --sage: #7C9A7E;
  --sage-dark: #5E7D60;
  --sage-light: #A8C4AA;
  --amber: #F4A261;
  --text: #3D3330;
  --text-light: #6B5E5A;
  --text-muted: #9A8A85;
  --border: #E8DDD7;
  --shadow-sm: 0 2px 8px rgba(61,51,48,0.06);
  --shadow-md: 0 8px 30px rgba(61,51,48,0.08);
  --shadow-lg: 0 16px 50px rgba(61,51,48,0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--warm-white);
  line-height: 1.8;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

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

/* ---- Sample Banner ---- */
.sample-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--coral);
  color: var(--white);
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  padding: 6px 16px;
  letter-spacing: 0.05em;
}

/* ---- Header ---- */
.header {
  position: fixed;
  top: 30px;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,248,242,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232,221,215,0.5);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.05em;
}

.nav-desktop { display: flex; align-items: center; gap: 28px; }
.nav-desktop a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-light);
  transition: var(--transition);
  position: relative;
}
.nav-desktop a:hover,
.nav-desktop a.active { color: var(--coral); }
.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--coral);
  transition: var(--transition);
  border-radius: 1px;
}
.nav-desktop a:hover::after,
.nav-desktop a.active::after { width: 100%; }
.nav-cta {
  background: var(--coral);
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--coral-dark); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
  border-radius: 1px;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 900px) {
  .nav-desktop { display: none; }
  .hamburger { display: flex; }
}

/* Mobile Nav */
.nav-mobile {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 360px;
  height: 100vh;
  background: var(--warm-white);
  z-index: 1050;
  transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -10px 0 40px rgba(0,0,0,0.1);
  padding-top: 110px;
}
.nav-mobile.active { right: 0; }
.nav-mobile-inner {
  display: flex;
  flex-direction: column;
  padding: 0 32px;
}
.nav-mobile-inner a {
  padding: 16px 0;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.nav-mobile-inner a:hover { color: var(--coral); padding-left: 8px; }
.nav-mobile-cta {
  margin-top: 20px;
  background: var(--coral);
  color: var(--white) !important;
  text-align: center;
  padding: 14px !important;
  border-radius: 50px;
  border: none !important;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.nav-overlay.active { opacity: 1; visibility: visible; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  letter-spacing: 0.03em;
}
.btn-primary {
  background: var(--coral);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(224,122,95,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}
.btn-full { width: 100%; }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 98px;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(61,51,48,0.55) 0%,
    rgba(61,51,48,0.3) 50%,
    rgba(224,122,95,0.15) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
  max-width: 720px;
}
.hero-sub {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
  opacity: 0.9;
}
.hero-title {
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}
.hero-desc {
  font-size: clamp(14px, 2vw, 16px);
  line-height: 2;
  margin-bottom: 40px;
  opacity: 0.92;
  font-weight: 300;
}
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 11px;
  letter-spacing: 0.15em;
  opacity: 0.7;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--white);
  animation: scrollDown 1.8s ease infinite;
}
@keyframes scrollDown {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---- Sections ---- */
.section { padding: 100px 0; }
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--coral);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 16px;
  color: var(--text);
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-desc {
  font-size: 15px;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.9;
}

/* ---- About ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: center;
}
.about-visual { text-align: center; }
.about-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cream), rgba(124,154,126,0.08));
}
.about-text .section-label { display: block; }
.about-lead {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  margin-bottom: 16px;
  color: var(--text);
}
.about-text p {
  color: var(--text-light);
  margin-bottom: 12px;
  line-height: 2;
}

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { order: -1; }
  .about-icon-wrap { width: 180px; height: 180px; }
}

/* ---- Programs ---- */
.programs { background: var(--white); }
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.program-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  position: relative;
  transition: var(--transition);
  border: 1px solid transparent;
}
.program-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--coral-light);
}
.program-card.featured {
  background: linear-gradient(135deg, var(--warm-white), var(--cream));
  border: 2px solid var(--coral-light);
}
.program-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--coral);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  letter-spacing: 0.05em;
}
.program-icon { margin-bottom: 20px; }
.program-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}
.program-subtitle {
  font-size: 13px;
  color: var(--coral);
  font-weight: 500;
  margin-bottom: 20px;
}
.program-list li {
  font-size: 13.5px;
  color: var(--text-light);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}
.program-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage-light);
}
.program-stat {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.program-stat-num {
  font-size: 32px;
  font-weight: 700;
  color: var(--coral);
}
.program-stat-label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

@media (max-width: 900px) {
  .programs-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

/* ---- Training ---- */
.training-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.training-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.training-card:hover {
  border-color: var(--sage-light);
  box-shadow: var(--shadow-md);
}
.training-step {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--sage);
  letter-spacing: 0.15em;
  margin-bottom: 12px;
  padding: 3px 12px;
  background: rgba(124,154,126,0.1);
  border-radius: 50px;
}
.training-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}
.training-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 14px;
}
.training-duration {
  font-size: 12px;
  font-weight: 600;
  color: var(--coral);
}

.training-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 32px;
  padding: 20px 24px;
  background: var(--cream);
  border-radius: var(--radius);
  border-left: 4px solid var(--coral);
}
.training-note svg { flex-shrink: 0; margin-top: 2px; }
.training-note p { font-size: 14px; color: var(--text-light); line-height: 1.8; }

@media (max-width: 768px) {
  .training-grid { grid-template-columns: 1fr; }
}

/* ---- Services ---- */
.services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  text-align: center;
  padding: 36px 20px;
  border-radius: var(--radius-lg);
  background: var(--warm-white);
  transition: var(--transition);
  border: 1px solid transparent;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--sage-light);
}
.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--white);
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}
.service-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 13.5px;
  color: var(--text-light);
  line-height: 1.8;
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
}

/* ---- Numbers ---- */
.numbers {
  background: linear-gradient(135deg, var(--text) 0%, #4A3F3C 100%);
  color: var(--white);
}
.numbers .section-label { color: var(--coral-light); }
.numbers .section-title { color: var(--white); }
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.number-item {
  padding: 24px 16px;
}
.number-value {
  font-size: 48px;
  font-weight: 700;
  color: var(--coral-light);
  line-height: 1.2;
  margin-bottom: 8px;
}
.number-unit {
  font-size: 18px;
  font-weight: 500;
  margin-left: 4px;
}
.number-label {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  font-weight: 400;
}

@media (max-width: 768px) {
  .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .number-value { font-size: 36px; }
}

/* ---- Voices ---- */
.voices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.voice-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}
.voice-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--coral-light);
}
.voice-quote { margin-bottom: 16px; }
.voice-text {
  font-size: 14px;
  color: var(--text-light);
  line-height: 2;
  margin-bottom: 20px;
}
.voice-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.voice-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--coral);
  background: rgba(224,122,95,0.1);
  padding: 3px 10px;
  border-radius: 50px;
}
.voice-attr {
  font-size: 12px;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .voices-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
}

/* ---- Flow ---- */
.flow { background: var(--white); }
.flow-steps {
  max-width: 680px;
  margin: 0 auto;
}
.flow-step {
  display: flex;
  gap: 28px;
  padding: 28px 0;
  position: relative;
}
.flow-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 27px;
  top: 70px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--coral-light), var(--sage-light));
}
.flow-num {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--amber));
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flow-content h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}
.flow-content p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.9;
}

@media (max-width: 560px) {
  .flow-step { gap: 20px; }
  .flow-num { width: 44px; height: 44px; font-size: 14px; }
  .flow-step:not(:last-child)::after { left: 21px; }
}

/* ---- Company ---- */
.company-table-wrap {
  max-width: 760px;
  margin: 0 auto;
}
.company-table {
  width: 100%;
  border-collapse: collapse;
}
.company-table tr { border-bottom: 1px solid var(--border); }
.company-table th,
.company-table td { padding: 16px 20px; text-align: left; font-size: 14px; }
.company-table th {
  width: 160px;
  font-weight: 600;
  color: var(--text);
  background: rgba(124,154,126,0.05);
  white-space: nowrap;
}
.company-table td { color: var(--text-light); }

@media (max-width: 560px) {
  .company-table th { width: 110px; font-size: 13px; padding: 12px; }
  .company-table td { font-size: 13px; padding: 12px; }
}

/* ---- Contact ---- */
.contact { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.contact-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 20px;
}
.contact-box h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
}
.contact-phone {
  font-size: 28px;
  font-weight: 700;
  color: var(--coral);
  letter-spacing: 0.03em;
}
.contact-hours {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 6px;
}
.contact-box p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.9;
}
.contact-message {
  padding: 20px 0;
}
.contact-message p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 2;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}
.req {
  font-size: 11px;
  color: var(--coral);
  font-weight: 600;
  margin-left: 4px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: var(--warm-white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(224,122,95,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' fill='none' stroke='%239A8A85' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
}

/* ---- Footer ---- */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo .logo-text { color: var(--white); }
.footer-desc {
  margin-top: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.footer-links { display: flex; gap: 48px; }
.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  padding: 4px 0;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--coral-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}
.footer-credit a { color: var(--coral-light); }
.footer-credit a:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .footer-top { flex-direction: column; gap: 32px; }
  .footer-links { gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ---- CTA Section ---- */
.cta-section { padding: 0; }
.cta-banner {
  background: linear-gradient(135deg, var(--coral), #D4694D);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 48px 52px;
}
.cta-icon { flex-shrink: 0; }
.cta-text { flex: 1; color: var(--white); }
.cta-text h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}
.cta-text p {
  font-size: 14px;
  opacity: 0.9;
  line-height: 1.8;
}
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}
.btn-white {
  background: var(--white);
  color: var(--coral);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}
.pc-only { display: inline; }

@media (max-width: 900px) {
  .cta-inner { flex-direction: column; text-align: center; padding: 36px 28px; }
  .cta-actions { flex-direction: row; width: 100%; }
  .cta-actions .btn { flex: 1; }
  .pc-only { display: none; }
}
@media (max-width: 560px) {
  .cta-actions { flex-direction: column; }
}

/* ---- Promise ---- */
.promise { background: var(--warm-white); }
.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.promise-item {
  text-align: center;
  padding: 36px 24px;
}
.promise-num {
  font-size: 40px;
  font-weight: 700;
  color: var(--sage-light);
  margin-bottom: 12px;
  line-height: 1;
}
.promise-item h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}
.promise-item p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.9;
}

@media (max-width: 768px) {
  .promise-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

/* ---- Animations ---- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* ---- Utility ---- */
@media (max-width: 560px) {
  .section { padding: 70px 0; }
  .section-header { margin-bottom: 40px; }
  .hero-btns .btn { width: 100%; }
}
