/* ============================================================
   hot-chair-863.css — ビジネス文書アカデミー
   Domain: hayakramerxvj.vip
   ============================================================ */

/* --- Custom Properties --- */
:root {
  --bg: #f5f0eb;
  --dark: #1a1a1a;
  --orange: #FF5A1F;
  --accent: #e94560;
  --white: #ffffff;
  --text-muted: rgba(26,26,26,0.55);
  --overlay: rgba(0,0,0,0.45);
  --card-bg: #ffffff;
  --border: rgba(26,26,26,0.1);
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-serif: 'Instrument Serif', Georgia, serif;
  --font-sans: 'Inter', 'Open Sans', sans-serif;
  --font-mono: 'DM Mono', monospace;
  --container: 1100px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--dark);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }
input, textarea, select, button { font-family: inherit; }

/* --- Typography --- */
h1, h2, h3 { font-family: var(--font-serif); font-weight: 400; line-height: 1.2; }
h4, h5, h6 { font-family: var(--font-sans); font-weight: 500; line-height: 1.35; }
.text-h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-family: var(--font-serif); }
.text-h2 { font-size: clamp(1.9rem, 4vw, 3rem); font-family: var(--font-serif); }
.text-h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
.text-h5 { font-size: 1.1rem; font-weight: 500; }
.text-h6 { font-size: 0.95rem; color: var(--text-muted); }
.text-body { font-size: 1rem; }
.text-body.medium { font-weight: 500; }
.text-big { font-size: clamp(1.05rem, 2vw, 1.25rem); line-height: 1.7; }
.text-small { font-size: 0.82rem; }
.label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.label.white { color: rgba(255,255,255,0.65); }
.label.opacity-50 { opacity: 0.5; }
.section-label { display: inline-block; margin-bottom: 12px; }

/* --- Container --- */
.main-container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.main-container.spacer { margin-top: 80px; }

/* --- Section base --- */
.section { padding: 100px 0; }
.section-spacer { height: 40px; }

/* --- Buttons --- */
.cta-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--dark);
  color: var(--white);
  border: 2px solid var(--dark);
  border-radius: 4px;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform 0.2s;
  white-space: nowrap;
}
.cta-main:hover { background: var(--orange); border-color: var(--orange); color: #fff; transform: translateY(-2px); }
.cta-main.light { background: var(--white); color: var(--dark); border-color: var(--white); }
.cta-main.light:hover { background: var(--orange); border-color: var(--orange); color: #fff; }
.cta-main.accent { background: var(--accent); border-color: var(--accent); color: #fff; }
.cta-main.accent:hover { background: #c73350; border-color: #c73350; }
.cta-main.outlined-light { background: transparent; border-color: rgba(255,255,255,0.6); color: #fff; }
.cta-main.outlined-light:hover { background: #fff; color: var(--dark); border-color: #fff; }
.cta-small {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition);
}
.cta-small:hover { background: rgba(255,255,255,0.25); }
.cta-small.dark { background: var(--dark); border-color: var(--dark); color: #fff; }
.cta-small.dark:hover { background: var(--orange); border-color: var(--orange); }

/* --- Navbar --- */
.navbar-master { position: relative; z-index: 100; }
.navbar-master.sticky-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
}
.navbar-master.sticky-nav.visible { transform: translateY(0); }

.navbar {
  background: var(--dark);
  transition: background var(--transition);
}
.navbar.static-nav { background: var(--dark); }
.navbar.sticky-nav { background: var(--dark); }

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: var(--container);
  margin: 0 auto;
}

.nav-left { display: flex; align-items: center; gap: 20px; }
.brand-link-navbar { display: flex; align-items: center; }
.brand-navbar { height: 38px; width: auto; }

.nav-menu-wrap { display: flex; align-items: center; }
.nav-menu { display: flex; align-items: center; gap: 8px; }
.navigation-link-hover-wrap { display: inline-block; }
.nav-link {
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.03em;
  transition: color var(--transition);
  display: block;
}
.nav-link:hover { color: var(--orange); }
.navbar.sticky-nav .nav-link { color: rgba(255,255,255,0.85); }
.navbar.sticky-nav .nav-link:hover { color: var(--orange); }
.navbar.static-nav .nav-link { color: rgba(255,255,255,0.9); }
.menu-divider { width: 1px; height: 20px; background: rgba(255,255,255,0.2); margin: 0 6px; }

.nav-right { display: flex; align-items: center; gap: 12px; }
.menu-cta-wrap { display: flex; align-items: center; gap: 10px; }

.navbar-bottom-line { height: 1px; background: rgba(255,255,255,0.1); }
.navbar-bottom-line.light { background: rgba(255,255,255,0.12); }

/* Hamburger */
.menu-button {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.menu-button span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-mobile-open .menu-button span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-mobile-open .menu-button span:nth-child(2) { opacity: 0; }
.nav-mobile-open .menu-button span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
@media (max-width: 991px) {
  .menu-button { display: flex; }
  .nav-menu-wrap {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--dark);
    padding: 20px 24px 30px;
    z-index: 300;
  }
  .nav-menu-wrap.open { display: block; }
  .nav-menu { flex-direction: column; align-items: flex-start; gap: 0; }
  .nav-link { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.07); width: 100%; color: rgba(255,255,255,0.85); }
  .menu-divider { display: none; }
  .menu-cta-wrap.desktop { display: none; }
}

/* --- Hero Section --- */
.section.hero-home-a {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0;
  color: #fff;
  background: var(--dark);
}
.about-a-video {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.about-a-video .hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.home-a-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.5) 60%, rgba(26,26,26,0.35) 100%);
  z-index: 1;
}
.about-a-video .main-container { position: relative; z-index: 2; width: 100%; }
.home-a-hero-maser { padding: 160px 0 120px; }
.home-a-top-title { margin-bottom: 24px; }
.home-a-title-bottom-tikle { display: flex; align-items: center; gap: 20px; }
.headline-home-a { max-width: 700px; }
.heading-home-a { overflow: hidden; margin-bottom: 32px; }
.heading-home-a h1 { color: #fff; }
.home-a-button-wrap { display: flex; gap: 16px; flex-wrap: wrap; }
.home-a-small-video {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.home-a-scroll-label { color: rgba(255,255,255,0.6); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; font-family: var(--font-mono); }
.scroll-arrow {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* --- Courses Grid Section (hero-careers equivalent) --- */
.section.hero-careers { background: var(--bg); padding: 80px 0; }
.headline-careers {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 60px;
  gap: 40px;
  flex-wrap: wrap;
}
.careers-top-tile { flex: 1; }
.heading-careers { margin-top: 12px; }
.hide { overflow: hidden; }
.heading-hero-about-b-2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-family: var(--font-serif); }
.button-wrap { flex-shrink: 0; }

.w-layout-grid.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.career-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--dark);
  cursor: pointer;
}
.career-image .image-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.career-image:hover .image-cover { transform: scale(1.05); }
.course-info-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: #fff;
}
.course-title { font-family: var(--font-serif); font-size: 1.15rem; margin-bottom: 4px; }
.course-price { font-family: var(--font-mono); font-size: 0.78rem; color: var(--orange); letter-spacing: 0.05em; }
.course-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}

/* --- About Section (typography) --- */
.about-typo-section { padding: 100px 0 80px; background: var(--bg); }

.about-typo-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.about-typo-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  line-height: 1.18;
  color: var(--dark);
  font-weight: 400;
  max-width: 860px;
  margin-bottom: 40px;
}
.about-typo-em {
  font-style: italic;
  color: var(--orange);
}

.about-typo-rule {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin-bottom: 56px;
}

.about-typo-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  margin-bottom: 64px;
}
.about-typo-pillar {
  padding: 36px 40px 36px 0;
  border-right: 1px solid var(--border);
}
.about-typo-pillar:last-child { border-right: none; padding-right: 0; }
.about-typo-pillar:not(:first-child) { padding-left: 40px; }

.about-typo-pillar-num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 16px;
}
.about-typo-pillar-text {
  font-size: 0.98rem;
  line-height: 1.78;
  color: var(--dark);
  opacity: 0.78;
}

.about-typo-stats {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 40px;
}
.about-typo-stat {
  flex: 1;
  text-align: center;
}
.about-typo-stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}
.about-typo-stat-num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--dark);
  line-height: 1;
}
.about-typo-stat-num span {
  font-size: 1rem;
  font-family: var(--font-mono);
  color: var(--orange);
  margin-left: 2px;
}
.about-typo-stat-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-top: 6px;
  text-transform: uppercase;
}
.about-typo-cta {
  flex: 1;
  display: flex;
  justify-content: center;
}

@media (max-width: 991px) {
  .about-typo-pillars { grid-template-columns: 1fr; }
  .about-typo-pillar { border-right: none; border-bottom: 1px solid var(--border); padding: 28px 0; }
  .about-typo-pillar:not(:first-child) { padding-left: 0; }
  .about-typo-pillar:last-child { border-bottom: none; }
  .about-typo-stats { flex-wrap: wrap; gap: 32px; }
  .about-typo-stat-divider { display: none; }
  .about-typo-stat { flex: 0 0 40%; }
  .about-typo-cta { flex: 0 0 100%; justify-content: flex-start; }
}
@media (max-width: 767px) {
  .about-typo-label-row { flex-direction: column; align-items: flex-start; gap: 6px; }
  .about-typo-headline { font-size: clamp(2rem, 8vw, 2.8rem); }
}

/* --- About Section (column section) --- */
.section.home-a-column-section { padding: 100px 0; }

/* Logo marquee */
.master-marquees { overflow: hidden; position: relative; }
.marquee-shadow-light {
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.marquee-shadow-light.left { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.marquee-shadow-light.right { right: 0; background: linear-gradient(to left, var(--bg), transparent); }
.marquee-text-wrap {
  display: flex;
  animation: marquee 24s linear infinite;
  width: max-content;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.single-text-marquee { display: flex; gap: 40px; align-items: center; padding-right: 40px; }
.marquee-logo { height: 32px; width: auto; opacity: 0.45; filter: grayscale(1); transition: opacity 0.3s; }
.marquee-logo:hover { opacity: 0.8; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 10px; }
.stat-item { border-left: 3px solid var(--orange); padding-left: 16px; }
.stat-num { font-family: var(--font-serif); font-size: 2rem; color: var(--dark); line-height: 1; }
.stat-label { font-size: 0.82rem; color: var(--text-muted); margin-top: 4px; font-family: var(--font-mono); letter-spacing: 0.05em; }

/* --- Features Section --- */
.section.home-a-features-section { padding: 100px 0; background: var(--dark); color: var(--white); }
.w-layout-grid.process-halves {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.features-image-placeholder { border-radius: 8px; overflow: hidden; }
.features-image-placeholder .image-2 { width: 100%; height: 520px; object-fit: cover; border-radius: 8px; }
.headline-home-a-process { margin-bottom: 40px; }
.heading-process { margin-top: 16px; }
.heading-process h2 { color: #fff; font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 16px; }
.heading-process p { color: rgba(255,255,255,0.7); line-height: 1.75; font-size: 1.05rem; }
.features-list { display: flex; flex-direction: column; gap: 20px; }
.feature-item { display: flex; gap: 16px; align-items: flex-start; }
.feature-icon { width: 40px; height: 40px; background: rgba(255,90,31,0.15); border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--orange); font-size: 1rem; }
.feature-text h4 { color: #fff; font-size: 1rem; margin-bottom: 4px; }
.feature-text p { color: rgba(255,255,255,0.6); font-size: 0.92rem; line-height: 1.6; }

/* --- Testimonials / Student voices section --- */
.section.home-a-testimonials-section { padding: 100px 0; background: var(--bg); }
.headline-home-a-story { margin-bottom: 60px; }
.heading-home-a-story { margin-top: 12px; }
.w-layout-grid.testimonial-thirds {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: 10px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.1); }
.testimonial-stars { color: var(--orange); font-size: 0.9rem; }
.testimonial-text blockquote { font-size: 0.98rem; line-height: 1.7; color: var(--dark); font-style: italic; }
.testimonial-info { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--border); display: flex; align-items: center; gap: 12px; }
.testimonial-author img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.testimonial-author-info .text-body.medium { font-size: 0.92rem; font-weight: 600; }
.testimonial-author-info .label { font-size: 0.7rem; }

/* --- Story / Team Preview Section --- */
.section.home-a-story-section { padding: 100px 0; background: #f0ebe4; }
.headline-story-halves { max-width: 660px; margin-bottom: 60px; }
.heading-home-a-about { margin-top: 12px; }
.heading-home-a-about h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
.text-big { font-size: 1.1rem; line-height: 1.75; color: rgba(26,26,26,0.75); margin-top: 16px; }

.w-layout-grid.thirds-image-grid.padding {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 20px;
}
.thirds-image-wrap { border-radius: 8px; overflow: hidden; aspect-ratio: 3/4; }
.thirds-image-wrap .image-cover { width: 100%; height: 100%; object-fit: cover; }

/* Tabs — Curriculum */
.home-b-tabs { margin-top: 60px; }
.expandable-tabs { display: flex; flex-direction: column; gap: 2px; }
.expandable-tab {
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  background: var(--white);
}
.expandable-title-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  cursor: pointer;
  user-select: none;
}
.expandable-rotated-title h3 { font-size: 1rem; font-weight: 500; }
.icon-rotate {
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: transform 0.3s;
}
.expandable-tab.active .icon-rotate { transform: rotate(45deg); color: var(--orange); }
.expanable-tab-expand-content {
  display: none;
  padding: 0 24px 24px;
  border-top: 1px solid var(--border);
}
.expandable-tab.active .expanable-tab-expand-content { display: block; }
.tab-b-text-wrap { margin-top: 16px; }
.tab-b-text-wrap p { font-size: 0.95rem; line-height: 1.7; color: rgba(26,26,26,0.75); }
.tab-b-text-wrap ul { list-style: none; margin-top: 12px; display: flex; flex-direction: column; gap: 8px; }
.tab-b-text-wrap ul li { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; }
.tab-b-text-wrap ul li::before { content: ''; display: block; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }

/* --- Services Marquee Section (features marquee) --- */
.section.home-a-services-section { padding: 80px 0; background: var(--bg); overflow: hidden; }
.headline-moving-features { text-align: center; margin-bottom: 50px; }
.heading-home-a-services { margin-top: 12px; }
.heading-home-a-services h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
.text-block-25 { font-size: 1rem; color: var(--text-muted); margin-top: 12px; }
.services-marquee { overflow: hidden; }
.marquee-services-master {
  display: flex;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.single-services-marquee { display: flex; gap: 24px; padding-right: 24px; }
.service-card {
  background: var(--white);
  border-radius: 10px;
  padding: 28px 24px;
  width: 240px;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.icon-service-card { margin-bottom: 16px; color: var(--orange); font-size: 1.6rem; }
.service-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.service-card .text-block { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* --- CTA Section --- */
.section.cta-section {
  position: relative;
  padding: 120px 0;
  background: var(--dark);
  color: #fff;
  overflow: hidden;
}
.cta-bg-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.3;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.9) 0%, rgba(26,26,26,0.5) 100%);
}
.cta-gradient {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--dark), transparent);
}
.cta-master { position: relative; z-index: 2; max-width: 600px; }
.cta-top-tile { margin-bottom: 32px; }
.heading-cta h2 { color: #fff; font-size: clamp(2rem, 4vw, 3.2rem); margin-top: 16px; }
.cta-button-wrap { display: flex; gap: 16px; flex-wrap: wrap; }

/* --- Footer --- */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 80px 0 30px;
}
.w-layout-grid.footer-halves {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 60px;
}
.footer-left { display: flex; flex-direction: column; gap: 30px; }
.brand-link img { height: 38px; width: auto; }

/* Newsletter */
.newsletter-form { display: flex; flex-direction: column; gap: 10px; }
.newsletter-form-top { display: flex; flex-direction: column; gap: 8px; }
.newsletter-form-top .label { color: rgba(255,255,255,0.5); }
.newsletter-field-master { display: flex; gap: 0; }
.text-field.newsletter {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-right: none;
  border-radius: 4px 0 0 4px;
  color: #fff;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s;
}
.text-field.newsletter::placeholder { color: rgba(255,255,255,0.35); }
.text-field.newsletter:focus { border-color: var(--orange); }
.submit-button-wrap { display: flex; }
.submit-button {
  padding: 12px 18px;
  background: var(--orange);
  border: none;
  border-radius: 0 4px 4px 0;
  color: #fff;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 500;
  transition: background 0.3s;
}
.submit-button:hover { background: #e04e15; }
.text-small.opacity-50 { color: rgba(255,255,255,0.35); }

.footer-right {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.footer-column { display: flex; flex-direction: column; gap: 12px; }
.footer-links-column { display: flex; flex-direction: column; gap: 8px; }
.footer-link {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  transition: color 0.3s;
  display: block;
}
.footer-link:hover { color: var(--orange); }
.footer-contact-item { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.5; margin-bottom: 4px; }
.footer-contact-item a { color: rgba(255,255,255,0.55); }
.footer-contact-item a:hover { color: var(--orange); }

.footer-logo-big {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 300px;
  width: auto;
  opacity: 0.04;
  pointer-events: none;
}

.footer-bottom-tile {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  margin-top: 20px;
}
.footer-last-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-rights-wrap { display: flex; align-items: center; gap: 20px; }
.footer-social-wrap { display: flex; gap: 12px; }
.social-link {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  transition: border-color 0.3s, color 0.3s;
}
.social-link:hover { border-color: var(--orange); color: var(--orange); }

/* --- Cookies GDPR Banner --- */
.cookies-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--dark);
  color: rgba(255,255,255,0.85);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
  border-top: 2px solid var(--orange);
  transform: translateY(100%);
  transition: transform 0.5s 0.8s ease;
}
.cookies-banner.show { transform: translateY(0); }
.cookies-text { flex: 1; min-width: 280px; font-size: 0.88rem; line-height: 1.6; }
.cookies-text a { color: var(--orange); text-decoration: underline; }
.cookies-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookies-accept {
  padding: 10px 22px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s;
  font-family: inherit;
}
.cookies-accept:hover { background: #e04e15; }
.cookies-decline {
  padding: 10px 22px;
  background: transparent;
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s;
  font-family: inherit;
}
.cookies-decline:hover { border-color: rgba(255,255,255,0.4); color: rgba(255,255,255,0.8); }

/* --- Page Hero (inner pages) --- */
.section.page-hero {
  background: var(--dark);
  color: #fff;
  padding: 160px 0 80px;
  text-align: center;
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); color: #fff; }
.page-hero .text-h6 { color: rgba(255,255,255,0.55); margin-top: 16px; font-size: 1.05rem; }

/* --- Team Page --- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 60px;
}
.team-card { background: var(--white); border-radius: 10px; overflow: hidden; box-shadow: 0 2px 16px rgba(0,0,0,0.06); }
.team-card-photo { aspect-ratio: 3/4; overflow: hidden; }
.team-card-photo .image-cover { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.team-card:hover .image-cover { transform: scale(1.04); }
.team-card-info { padding: 24px; }
.team-card-info h3 { font-size: 1.1rem; margin-bottom: 4px; }
.team-card-role { font-size: 0.8rem; color: var(--orange); font-family: var(--font-mono); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 12px; }
.team-card-bio { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-info-item { display: flex; gap: 16px; }
.contact-info-icon { width: 44px; height: 44px; background: rgba(255,90,31,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--orange); flex-shrink: 0; }
.contact-info-text h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 4px; }
.contact-info-text p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.5; }
.contact-form-wrap { background: var(--white); border-radius: 12px; padding: 40px; box-shadow: 0 4px 30px rgba(0,0,0,0.08); }
.contact-form h3 { font-size: 1.4rem; margin-bottom: 8px; }
.contact-form .form-sub { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 28px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-group label { font-size: 0.82rem; font-weight: 500; color: var(--dark); letter-spacing: 0.03em; }
.form-control {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-size: 0.92rem;
  color: var(--dark);
  background: var(--bg);
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
  font-family: inherit;
}
.form-control:focus { border-color: var(--orange); background: #fff; }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--dark);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.3s;
  font-family: inherit;
}
.form-submit:hover { background: var(--orange); }
.required-note { font-size: 0.75rem; color: var(--text-muted); margin-top: 12px; text-align: center; }

/* --- Legal Pages --- */
.section.legal-content { padding: 80px 0 100px; }
.legal-content-inner { max-width: 820px; margin: 0 auto; }
.legal-content-inner h1 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 8px; }
.legal-meta { font-size: 0.82rem; color: var(--text-muted); font-family: var(--font-mono); margin-bottom: 50px; }
.legal-content-inner h2 { font-size: 1.3rem; font-family: var(--font-sans); font-weight: 600; margin: 40px 0 12px; color: var(--dark); }
.legal-content-inner h3 { font-size: 1.05rem; font-family: var(--font-sans); font-weight: 600; margin: 28px 0 10px; }
.legal-content-inner p { font-size: 0.97rem; line-height: 1.75; color: rgba(26,26,26,0.8); margin-bottom: 14px; }
.legal-content-inner ul, .legal-content-inner ol { padding-left: 24px; margin-bottom: 14px; }
.legal-content-inner li { font-size: 0.95rem; line-height: 1.7; color: rgba(26,26,26,0.8); margin-bottom: 6px; }
.legal-divider { border: none; border-top: 1px solid var(--border); margin: 36px 0; }

/* --- Scroll Animation --- */
@keyframes fade-in-fallback {
  to { opacity: 1; transform: translateY(0); }
}
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  animation: fade-in-fallback 0.01s 1.8s forwards;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
  animation: none;
}
.fade-in-delay-1 { transition-delay: 0.12s; animation-delay: 1.9s; }
.fade-in-delay-2 { transition-delay: 0.22s; animation-delay: 2.0s; }
.fade-in-delay-3 { transition-delay: 0.32s; animation-delay: 2.1s; }

/* --- Responsive --- */
@media (max-width: 991px) {
  .home-a-about-columns { grid-template-columns: 1fr; gap: 40px; }
  .w-layout-grid.process-halves { grid-template-columns: 1fr; gap: 40px; }
  .w-layout-grid.testimonial-thirds { grid-template-columns: 1fr 1fr; }
  .w-layout-grid.footer-halves { grid-template-columns: 1fr; gap: 40px; }
  .footer-right { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .w-layout-grid.thirds-image-grid.padding { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .section { padding: 60px 0; }
  .w-layout-grid.testimonial-thirds { grid-template-columns: 1fr; }
  .headline-careers { flex-direction: column; align-items: flex-start; }
  .w-layout-grid.grid { grid-template-columns: repeat(2, 1fr); }
  .footer-right { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .w-layout-grid.grid { grid-template-columns: 1fr; }
  .home-a-button-wrap { flex-direction: column; }
  .team-grid { grid-template-columns: 1fr; }
  .w-layout-grid.thirds-image-grid.padding { grid-template-columns: 1fr; }
  .cookies-banner { flex-direction: column; align-items: flex-start; }
}
