/* ================================================
   光の道ヨガスタジオ — good-home-911.css
   Template: Darkroom Agency style (template41)
   ================================================ */

:root {
  --dark: #0d0d0d;
  --dark-alt: #1e1e1e;
  --near-black: #090909;
  --white: #fffffe;
  --white-pure: #fff;
  --accent: #e2ffc5;
  --muted-text: rgb(111, 111, 111);
  --label-gray: rgb(148, 148, 148);
  --card-bg: #f2f2f2;
  --faq-bg: #edebdc;
  --divider-dark: rgb(53, 53, 53);
  --border-outline: rgb(80, 82, 83);
  --font-main: 'Inter', sans-serif;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 100px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
}

a:hover {
  opacity: 0.75;
}

img {
  max-width: 100%;
  display: block;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--divider-dark); border-radius: 3px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 30px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(25px);
  background: rgba(13, 13, 13, 0.75);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  mix-blend-mode: normal;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--white);
  text-decoration: none;
}

.navbar-logo svg {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.logo-text-jp {
  font-size: 11px;
  opacity: 0.5;
  font-weight: 400;
  letter-spacing: 0.5px;
  display: block;
  line-height: 1.2;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.navbar-links a {
  padding: 7px 14px;
  font-size: 12px;
  letter-spacing: 0.24px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  background: rgba(251, 251, 251, 0.05);
  backdrop-filter: blur(25px);
  color: var(--white);
  transition: background 0.2s;
}

.navbar-links a:hover,
.navbar-links a.active {
  background: rgba(251, 251, 251, 0.12);
  opacity: 1;
}

.navbar-cta {
  background: var(--white) !important;
  color: #222 !important;
  font-weight: 600 !important;
}

.navbar-cta:hover {
  background: var(--accent) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
  display: block;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--near-black);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-size: 22px;
  letter-spacing: -0.3px;
  color: var(--white);
  font-weight: 500;
}

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 130px 0 60px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,13,13,0.55) 0%, rgba(13,13,13,0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 914px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-label {
  font-size: 12px;
  letter-spacing: 0.48px;
  color: var(--accent);
  margin-bottom: 24px;
  text-transform: uppercase;
  font-weight: 500;
}

.hero h1 {
  font-size: 62px;
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 28px;
}

.hero h1 .muted {
  color: rgba(255, 255, 255, 0.35);
}

.hero-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.6;
  max-width: 420px;
  margin-bottom: 36px;
}

.hero-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--white);
  color: #191919;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  background: var(--accent);
  opacity: 1;
}

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2px;
  border: 1px solid var(--border-outline);
  cursor: pointer;
  transition: border-color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline:hover {
  border-color: var(--white);
  opacity: 1;
}

/* ===== STATS ===== */
.stats-section {
  background: var(--dark-alt);
  padding: 80px 0;
}

.stats-inner {
  max-width: 914px;
  margin: 0 auto;
  padding: 0 24px;
}

.stats-heading {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.4px;
  line-height: 1.1;
  margin-bottom: 56px;
  color: var(--white);
}

.stats-heading .muted {
  color: rgba(255, 255, 255, 0.22);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.stat-item {
  padding: 0 30px;
  border-left: 1px solid rgba(255, 255, 254, 0.08);
}

.stat-item:first-child {
  padding-left: 0;
  border-left: none;
}

.stat-number {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: rgb(116, 116, 120);
  line-height: 1.2;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 8px;
}

.stat-desc {
  font-size: 14px;
  color: var(--muted-text);
  line-height: 1.5;
}

/* ===== SERVICES / CLASSES ===== */
.services-section {
  background: var(--white-pure);
  color: var(--dark);
  padding: 100px 0;
}

.services-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px;
  align-items: start;
}

.services-sticky-col {
  position: sticky;
  top: 100px;
}

.services-sticky-col img {
  width: 100%;
  border-radius: var(--radius-md);
  aspect-ratio: 3/4;
  object-fit: cover;
}

.services-right {
  padding-top: 0;
}

.section-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 16px;
}

.section-heading {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.4px;
  line-height: 1.1;
  margin-bottom: 48px;
  color: var(--dark);
}

.section-heading .muted {
  color: rgba(0, 0, 0, 0.35);
}

.progress-bar {
  width: 100%;
  height: 4px;
  background: #e8e8e8;
  border-radius: 2px;
  margin-bottom: 40px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  width: 40%;
  background: linear-gradient(90deg, var(--accent) 0%, #95d45e 100%);
  border-radius: 2px;
  transition: width 0.5s ease;
}

.service-card {
  padding: 32px 0;
  border-bottom: 1px solid #e8e8e8;
  opacity: 1;
  transition: opacity 0.4s;
}

.service-card:first-of-type {
  padding-top: 0;
}

.service-card h3 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  color: var(--dark);
}

.service-card p {
  font-size: 15px;
  color: var(--muted-text);
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-price-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.price-label {
  font-size: 12px;
  color: #aaa;
}

.price-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
}

.price-divider {
  width: 1px;
  height: 24px;
  background: #d9d9d9;
}

.learn-more-pill {
  background: #e3e3e3;
  border-radius: var(--radius-sm);
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-block;
}

.learn-more-pill:hover {
  background: var(--accent);
  opacity: 1;
}

.testimonial-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: 20px 20px 24px;
  margin-top: 16px;
}

.quote-mark {
  font-size: 30px;
  font-weight: 600;
  color: #ccc;
  line-height: 1;
  margin-bottom: 8px;
}

.testimonial-card blockquote {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 16px;
  font-style: normal;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ccc;
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--dark);
}

.testimonial-role {
  font-size: 12px;
  color: var(--muted-text);
}

/* ===== ABOUT / TICKER IMAGES ===== */
.image-ticker-section {
  background: var(--dark);
  padding: 60px 0;
  overflow: hidden;
}

.ticker-row {
  display: flex;
  gap: 16px;
  overflow: hidden;
  margin-bottom: 16px;
}

.ticker-row-inner {
  display: flex;
  gap: 16px;
  animation: tickerLeft 30s linear infinite;
  will-change: transform;
}

.ticker-row:nth-child(2) .ticker-row-inner {
  animation-direction: reverse;
}

.ticker-card {
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.ticker-card.wide {
  width: 380px;
  height: 260px;
}

.ticker-card.tall {
  width: 200px;
  height: 260px;
}

.ticker-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.ticker-card:hover img {
  transform: scale(1.04);
}

@keyframes tickerLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== PROCESS / HOW IT WORKS ===== */
.process-section {
  background: var(--white-pure);
  color: var(--dark);
  padding: 100px 0;
}

.process-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 56px;
}

.process-card {
  padding: 32px 0;
  border-top: 1px solid #e0e0e0;
}

.process-index {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark);
}

.process-card h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  color: var(--dark);
}

.process-card p {
  font-size: 15px;
  color: var(--muted-text);
  line-height: 1.6;
}

/* ===== FAQ ===== */
.faq-section {
  background: var(--faq-bg);
  padding: 100px 0;
}

.faq-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
}

.faq-heading-col h2 {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.4px;
  line-height: 1.1;
  color: var(--dark);
}

.faq-heading-col h2 .muted {
  color: rgba(0, 0, 0, 0.22);
}

.faq-list {
  list-style: none;
}

.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  font-size: 17px;
  font-weight: 500;
  color: var(--dark);
  cursor: pointer;
  user-select: none;
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  transition: transform 0.25s;
  color: var(--dark);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  font-size: 15px;
  color: var(--muted-text);
  line-height: 1.65;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, padding 0.25s;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: 20px;
}

.faq-cta {
  margin-top: 56px;
  grid-column: 1 / -1;
  text-align: center;
}

/* ===== CONTACT CTA SECTION ===== */
.cta-section {
  background: var(--dark);
  padding: 100px 0;
  text-align: center;
}

.cta-inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 24px;
}

.cta-inner h2 {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.8px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.cta-inner p {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 36px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--near-black);
  padding: 100px 0 48px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand {
  grid-column: 1 / 2;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-logo svg {
  width: 32px;
  height: 32px;
}

.footer-logo-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}

.footer-desc {
  font-size: 14px;
  color: var(--muted-text);
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 240px;
}

.footer-contact-info {
  font-size: 13px;
  color: var(--muted-text);
  line-height: 1.8;
}

.footer-contact-info a {
  color: rgba(255,255,255,0.6);
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  color: var(--label-gray);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  font-size: 15px;
  color: rgba(246, 246, 246, 0.7);
  position: relative;
  padding-bottom: 2px;
}

.footer-col ul li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: rgba(247, 247, 247, 0.4);
  transition: width 0.25s;
}

.footer-col ul li a:hover::after {
  width: 100%;
}

.footer-col ul li a:hover {
  opacity: 1;
  color: var(--white);
}

.footer-divider {
  height: 1px;
  background: var(--divider-dark);
  margin: 0 0 32px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copyright {
  font-size: 13px;
  color: var(--muted-text);
}

.footer-legal-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.footer-legal-links a {
  font-size: 13px;
  color: var(--muted-text);
}

.footer-social-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-social-links a {
  font-size: 13px;
  color: var(--muted-text);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-social-links a:hover {
  color: var(--white);
  opacity: 1;
}

/* ===== COOKIES GDPR ===== */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 9999;
  background: rgba(20, 20, 20, 0.97);
  border: 1px solid var(--divider-dark);
  border-radius: var(--radius-md);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.6);
  transform: translateY(0);
  transition: transform 0.35s ease, opacity 0.35s ease;
  max-width: 900px;
  margin: 0 auto;
}

.cookie-banner.hidden {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}

.cookie-text {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  flex: 1;
}

.cookie-text a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn-accept {
  background: var(--accent);
  color: var(--dark);
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s;
}

.cookie-btn-decline {
  background: transparent;
  color: rgba(255,255,255,0.55);
  border: 1px solid var(--divider-dark);
  border-radius: var(--radius-sm);
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s;
}

.cookie-btn-decline:hover {
  border-color: rgba(255,255,255,0.3);
}

/* ===== INNER PAGE HERO ===== */
.inner-hero {
  padding: 160px 0 80px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.inner-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 400px;
  background: radial-gradient(ellipse at 50% 0%, rgba(226,255,197,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.inner-hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
}

.inner-hero h1 {
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.08;
  margin-bottom: 20px;
}

.inner-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

/* ===== CONTENT SECTION (inner pages) ===== */
.content-section {
  background: var(--white-pure);
  color: var(--dark);
  padding: 80px 0 100px;
}

.content-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
}

.content-inner h2 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 16px;
  margin-top: 48px;
  color: var(--dark);
}

.content-inner h2:first-child {
  margin-top: 0;
}

.content-inner h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  margin-top: 32px;
  color: var(--dark);
}

.content-inner p {
  font-size: 16px;
  color: #444;
  line-height: 1.75;
  margin-bottom: 18px;
}

.content-inner ul,
.content-inner ol {
  padding-left: 24px;
  margin-bottom: 20px;
}

.content-inner li {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 8px;
}

/* ===== CONTACT FORM ===== */
.contact-section {
  background: var(--white-pure);
  padding: 80px 0 100px;
}

.contact-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 40px;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: var(--font-main);
  color: var(--dark);
  background: #fafafa;
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #a0c870;
  background: #fff;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-submit .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 15px;
}

.required-note {
  font-size: 12px;
  color: #aaa;
  margin-bottom: 24px;
}

/* ===== CAREERS / OPENINGS ===== */
.openings-section {
  background: var(--white-pure);
  padding: 80px 0 100px;
}

.openings-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
}

.job-card {
  border: 1.5px solid #e8e8e8;
  border-radius: var(--radius-md);
  padding: 28px 32px;
  margin-bottom: 20px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.job-card:hover {
  border-color: #b8d990;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.job-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.job-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.job-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 4px 10px;
  border-radius: 20px;
  background: #f0f0f0;
  color: #666;
}

.job-tag.green {
  background: #e5f5d0;
  color: #4a7c2a;
}

.job-card p {
  font-size: 15px;
  color: var(--muted-text);
  line-height: 1.65;
  margin-bottom: 20px;
}

.no-openings-box {
  background: var(--faq-bg);
  border-radius: var(--radius-md);
  padding: 48px 40px;
  text-align: center;
}

.no-openings-box h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.no-openings-box p {
  font-size: 15px;
  color: #666;
  line-height: 1.65;
  margin-bottom: 24px;
}

/* ===== ABOUT PAGE ===== */
.about-image-section {
  background: var(--dark);
  padding: 0 0 80px;
}

.about-full-image {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.about-body-section {
  background: var(--white-pure);
  padding: 80px 0 100px;
}

.about-body-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-text h2 {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  color: var(--dark);
}

.about-text p {
  font-size: 16px;
  color: #555;
  line-height: 1.75;
  margin-bottom: 18px;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.value-item {
  padding: 24px;
  background: #f7f7f7;
  border-radius: var(--radius-md);
  border-left: 3px solid var(--accent);
}

.value-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.value-item p {
  font-size: 14px;
  color: var(--muted-text);
  line-height: 1.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1279px) {
  .hero h1 { font-size: 52px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 909px) {
  .hamburger { display: flex; }
  .navbar-links { display: none; }

  .hero h1 { font-size: 42px; letter-spacing: -1px; }
  .hero-sub { font-size: 15px; }

  .stats-row { grid-template-columns: 1fr; gap: 32px; }
  .stat-item { border-left: none; padding-left: 0; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px; }
  .stat-item:first-child { border-top: none; padding-top: 0; }

  .services-inner { grid-template-columns: 1fr; }
  .services-sticky-col { display: none; }

  .process-grid { grid-template-columns: 1fr; }

  .faq-inner { grid-template-columns: 1fr; gap: 40px; }

  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-legal-links, .footer-social-links { gap: 20px; }

  .about-grid { grid-template-columns: 1fr; }
  .inner-hero h1 { font-size: 38px; }

  .cookie-banner { bottom: 0; left: 0; right: 0; border-radius: var(--radius-md) var(--radius-md) 0 0; flex-direction: column; }

  .faq-inner, .about-body-inner, .process-inner, .services-inner, .footer-inner { padding: 0 24px; }
}

@media (max-width: 480px) {
  .hero { padding: 120px 0 50px; }
  .hero h1 { font-size: 34px; }
  .stats-heading, .section-heading { font-size: 30px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-legal-links { flex-wrap: wrap; }
  .footer-social-links { flex-wrap: wrap; }
  .contact-inner, .content-inner, .openings-inner { padding: 0 20px; }
}
