/* ==========================================================================
   Linqtech — Editorial Tech Experience & Multi-Page System
   ========================================================================== */

/* --- Fonts & Base Variables --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --color-white: #ffffff;
  --color-dark: #09090b;
  --color-text-dark: #18181b;
  --color-text-body: #3f3f46;
  --color-text-muted-dark: #71717a;
  --color-muted: rgba(255, 255, 255, 0.7);
  --color-footer-bg: #f8fafc;
  --color-footer-border: #e2e8f0;
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-main);
  background-color: var(--color-dark);
  color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
}

body.mission-page {
  background-color: var(--color-white);
  color: var(--color-text-dark);
}

/* --- Fixed Top Header --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 30px 60px;
  z-index: 100;
  background: transparent;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: padding 0.4s ease,
              background-color 0.4s ease,
              border-color 0.4s ease,
              box-shadow 0.4s ease;
}

.site-header.scrolled-light {
  padding: 16px 60px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.header-inner {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}

.menu-trigger {
  background: none;
  border: none;
  color: var(--color-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  z-index: 2;
  transition: color 0.4s ease, opacity 0.2s ease;
}

.menu-trigger:hover {
  opacity: 0.8;
}

.menu-trigger svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
}

.site-header.scrolled-light .menu-trigger {
  color: var(--color-dark);
}

.brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 2;
}

.brand-logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter 0.4s ease, height 0.4s ease, opacity 0.2s ease;
}

.site-header.scrolled-light .brand-logo-img {
  filter: none;
  height: 32px;
}

.brand-logo:hover .brand-logo-img {
  opacity: 0.85;
}

/* Hide all native WebKit/iOS media controls & play button overlays */
video::-webkit-media-controls,
video::-webkit-media-controls-play-button,
video::-webkit-media-controls-start-playback-button,
video::-webkit-media-controls-panel,
video::-webkit-media-controls-enclosure,
video::-webkit-media-controls-overlay-play-button {
  display: none !important;
  -webkit-appearance: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* --- Fullscreen Hero Section --- */
.hero-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  height: 100dvh;
  min-height: -webkit-fill-available;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 32px 64px;
  overflow: hidden;
  box-sizing: border-box;
}

.hero-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.25) 50%,
    rgba(0, 0, 0, 0.65) 100%
  );
  z-index: -1;
}

.hero-bottom-content {
  max-width: 860px;
  z-index: 10;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.hero-title {
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--color-white);
  margin-bottom: 28px;
  word-break: break-word;
}

.mission-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--color-white);
  text-decoration: none;
  transition: gap 0.25s ease, opacity 0.25s ease;
}

.mission-link:hover {
  gap: 14px;
  opacity: 0.85;
}

.mission-link svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-white);
  transition: transform 0.25s ease;
}

.mission-link:hover svg {
  transform: translateX(4px);
}

/* --- Section 2: Statement Section --- */
.statement-section {
  background-color: var(--color-white);
  color: var(--color-text-dark);
  padding: 70px 60px 100px;
  position: relative;
  z-index: 2;
}

.statement-container {
  max-width: 940px;
}

/* Scroll Animation Elements */
.reveal-element {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-element.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.12s;
}

.statement-text {
  font-size: clamp(1.8rem, 3.2vw, 2.75rem);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--color-text-dark);
  margin-bottom: 32px;
}

.statement-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--color-text-dark);
  text-decoration: none;
  transition: gap 0.25s ease, opacity 0.25s ease;
}

.statement-link:hover {
  gap: 14px;
  opacity: 0.75;
}

.statement-link svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-text-dark);
  transition: transform 0.25s ease;
}

.statement-link:hover svg {
  transform: translateX(4px);
}

/* --- Mission & About Page Styling --- */
.mission-hero {
  padding: 140px 60px 50px;
  background-color: var(--color-white);
}

.mission-hero-container {
  max-width: 1240px;
  margin: 0 auto;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--color-text-muted-dark);
  text-decoration: none;
  margin-bottom: 36px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.back-link:hover {
  color: var(--color-text-dark);
  transform: translateX(-4px);
}

.back-link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

.mission-hero-title {
  font-size: clamp(2.2rem, 3.8vw, 3.6rem);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--color-text-dark);
  max-width: 980px;
}

.mission-story-section {
  padding: 30px 60px 100px;
  background-color: var(--color-white);
}

.mission-story-container {
  max-width: 1240px;
  margin: 0 auto;
}

/* Card Container for Image Background Overlay (Used for Cloud, Approach & Careers Hero Cards) */
.mission-cloud-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  margin-bottom: 60px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
  min-height: 520px;
  display: flex;
}

.cloud-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.cloud-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(9, 9, 11, 0.82) 0%,
    rgba(9, 9, 11, 0.72) 50%,
    rgba(9, 9, 11, 0.86) 100%
  );
  z-index: 2;
}

.cloud-card-content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  padding: 64px 56px;
  color: var(--color-white);
  align-items: start;
  width: 100%;
}

.careers-hero-card-content {
  grid-template-columns: 1fr;
  padding: 80px 64px;
}

.careers-hero-left {
  max-width: 820px;
}

.careers-hero-subtext {
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  margin-top: 20px;
  font-weight: 300;
}

.cloud-tag {
  display: inline-block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 8px;
}

.mt-12 {
  margin-top: 6px;
}

.cloud-heading {
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-white);
}

.cloud-right-content {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.cloud-paragraph {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
}

/* --- About Us Page Specific Styling --- */
.about-content-section {
  padding: 30px 60px 100px;
  background-color: var(--color-white);
}

.about-container {
  max-width: 1240px;
  margin: 0 auto;
}

.about-story-wrapper {
  max-width: 940px;
  margin-bottom: 75px;
  padding-bottom: 60px;
  border-bottom: 1px solid #e4e4e7;
}

.about-body-text {
  font-size: clamp(1.1rem, 1.45vw, 1.3rem);
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text-body);
  margin-bottom: 28px;
}

.about-body-text:last-child {
  margin-bottom: 0;
}

/* --- Values That Drive Us Clean 2-Column List Layout --- */
.about-values-section {
  margin-top: 80px;
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.about-section-heading {
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--color-text-dark);
}

.values-clean-list {
  border-top: 1px solid #e4e4e7;
  width: 100%;
}

.value-clean-row {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 40px;
  padding: 36px 0;
  border-bottom: 1px solid #e4e4e7;
  align-items: start;
}

.value-clean-title {
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
  font-weight: 500;
  color: var(--color-text-dark);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.value-clean-desc {
  font-size: clamp(0.98rem, 1.2vw, 1.05rem);
  line-height: 1.65;
  color: #475569;
}

/* --- Careers Specific Styling --- */
.careers-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 90px;
  margin-top: 30px;
  margin-bottom: 100px;
  padding-bottom: 80px;
  border-bottom: 1px solid #e4e4e7;
  align-items: start;
}

.careers-intro-left {
  position: sticky;
  top: 100px;
}

.careers-intro-heading {
  font-size: clamp(1.45rem, 2.1vw, 2.1rem);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: var(--color-text-dark);
}

.careers-intro-right {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

/* --- Ultra Simple Minimalist "Find your team" Section --- */
.fyp-simple-section {
  margin-top: 60px;
  margin-bottom: 90px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.fyp-simple-title {
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-text-dark);
}

.fyp-simple-link {
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--color-text-dark);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.25s ease, opacity 0.25s ease;
}

.fyp-simple-link:hover {
  gap: 14px;
  opacity: 0.75;
}

.fyp-simple-link svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-text-dark);
  transition: transform 0.25s ease;
}

.fyp-simple-link:hover svg {
  transform: translateX(4px);
}

/* --- Ultra Simple Contact Section --- */
.contact-page-title {
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--color-text-dark);
}

.contact-simple-block {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #e4e4e7;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-simple-email {
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--color-text-dark);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  width: fit-content;
  transition: border-color 0.25s ease, opacity 0.25s ease;
}

.contact-simple-email:hover {
  border-bottom-color: var(--color-text-dark);
  opacity: 0.8;
}

.job-meta {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  color: #64748b;
  margin-top: 6px;
}

.job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.job-tag-pill {
  font-size: 0.78rem;
  font-weight: 500;
  color: #475569;
  background-color: #f1f5f9;
  border: 1px solid #e2e8f0;
  padding: 4px 12px;
  border-radius: 100px;
}

.careers-cta-box {
  margin-top: 60px;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 40px;
}

.careers-cta-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 10px;
}

.careers-cta-text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--color-text-body);
}

.careers-email-link {
  color: var(--color-text-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.careers-email-link:hover {
  opacity: 0.8;
}

/* ==========================================================================
   Light Color Site Footer System & Brand Logo
   ========================================================================== */
.light-footer {
  background-color: var(--color-footer-bg);
  color: var(--color-text-dark);
  border-top: 1px solid var(--color-footer-border);
  padding: 80px 60px 0;
  position: relative;
  overflow: hidden;
  z-index: 10;
}

.footer-container {
  max-width: 1240px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 20px;
  text-decoration: none;
}

.footer-logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  filter: none;
  display: block;
}

.footer-brand-desc {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--color-text-muted-dark);
  max-width: 340px;
}

.footer-col-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-list a {
  font-size: 0.95rem;
  color: var(--color-text-body);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links-list a:hover {
  color: var(--color-text-dark);
}

.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--color-footer-border);
  padding: 28px 0;
  color: var(--color-text-muted-dark);
  font-size: 0.9rem;
}

/* Massive Brand Watermark at Footer Bottom */
.footer-watermark {
  text-align: center;
  line-height: 0.75;
  margin-top: 10px;
  margin-bottom: -15px;
  pointer-events: none;
  user-select: none;
  overflow: hidden;
}

.footer-watermark span {
  font-size: clamp(4.5rem, 16vw, 17rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  background: linear-gradient(180deg, rgba(24, 24, 27, 0.18) 0%, rgba(24, 24, 27, 0.01) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  display: block;
}

/* --- Minimal Fullscreen Overlay Navigation --- */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(9, 9, 11, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 200;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 60px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.nav-overlay-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-overlay-header .brand-logo-img {
  filter: brightness(0) invert(1) !important;
}

.close-btn {
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 1.8rem;
  cursor: pointer;
  padding: 8px;
}

.nav-overlay-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.nav-overlay-links a {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--color-white);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.nav-overlay-links a:hover {
  opacity: 0.6;
}

.nav-overlay-footer {
  display: flex;
  justify-content: space-between;
  color: var(--color-muted);
  font-size: 0.95rem;
}

/* --- Mobile Responsiveness & iOS/Android Optimization --- */
@media (max-width: 900px) {
  .site-header {
    padding: 20px 24px;
  }

  .site-header.scrolled-light {
    padding: 14px 24px;
  }

  .careers-intro-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    margin-bottom: 50px !important;
    padding-bottom: 40px !important;
  }

  .careers-intro-left {
    position: static !important;
    top: auto !important;
    width: 100% !important;
  }

  .careers-intro-right {
    width: 100% !important;
  }

  .cloud-card-content {
    grid-template-columns: 1fr !important;
    gap: 32px;
    padding: 40px 28px;
  }

  .careers-hero-card-content {
    padding: 48px 28px;
  }

  .about-story-wrapper {
    margin-bottom: 50px;
    padding-bottom: 45px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-clean-grid {
    grid-template-columns: 1fr !important;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  html, body {
    -webkit-text-size-adjust: 100%;
    touch-action: manipulation;
  }

  .site-header {
    padding: max(14px, env(safe-area-inset-top)) 20px 14px;
  }
  
  .site-header.scrolled-light {
    padding: max(12px, env(safe-area-inset-top)) 20px 12px;
  }

  .menu-trigger, .close-btn {
    min-width: 44px;
    min-height: 44px;
    -webkit-tap-highlight-color: transparent;
  }

  .hero-wrapper {
    height: 100vh;
    height: 100svh;
    height: 100dvh;
    min-height: -webkit-fill-available;
    padding: max(20px, env(safe-area-inset-top)) 20px max(84px, env(safe-area-inset-bottom));
  }

  .hero-bottom-content {
    margin-bottom: 24px;
  }

  .hero-video-bg {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  .brand-logo-img {
    height: 26px;
  }

  .site-header.scrolled-light .brand-logo-img {
    height: 24px;
  }

  .hero-title {
    font-size: clamp(1.75rem, 6.2vw, 2.35rem);
    line-height: 1.18;
    margin-bottom: 18px;
    word-break: break-word;
  }

  .mission-hero-title {
    font-size: clamp(1.65rem, 5.8vw, 2.2rem);
    line-height: 1.2;
    letter-spacing: -0.015em;
    word-break: break-word;
  }

  .statement-section {
    padding: 50px 20px 60px;
  }

  .statement-text {
    font-size: clamp(1.25rem, 4.5vw, 1.75rem);
    line-height: 1.38;
    margin-bottom: 24px;
  }

  .mission-hero {
    padding: 105px 20px 30px;
  }

  .mission-story-section, .about-content-section {
    padding: 20px 20px 60px;
  }

  .about-story-wrapper {
    margin-bottom: 40px;
    padding-bottom: 35px;
  }

  .about-body-text {
    font-size: 0.98rem;
    line-height: 1.6;
    color: #475569;
    word-break: break-word;
  }

  .careers-intro-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 50px;
    padding-bottom: 40px;
  }

  .careers-intro-heading {
    font-size: clamp(1.35rem, 4.8vw, 1.8rem);
    line-height: 1.25;
  }

  .cloud-heading {
    font-size: clamp(1.35rem, 4.8vw, 1.8rem);
    line-height: 1.25;
  }

  .mission-cloud-card {
    border-radius: 20px;
    min-height: auto;
  }

  .cloud-paragraph {
    font-size: 0.98rem;
    line-height: 1.6;
    color: var(--color-white);
  }

  .light-footer {
    padding: 50px 20px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom-row {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .mission-link, .statement-link, .fyp-simple-link {
    font-size: 1rem;
    -webkit-tap-highlight-color: transparent;
  }

  .nav-overlay {
    padding: max(20px, env(safe-area-inset-top)) 20px max(24px, env(safe-area-inset-bottom));
    height: 100vh;
    height: 100svh;
    height: 100dvh;
    min-height: -webkit-fill-available;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-overlay-links a {
    font-size: clamp(1.75rem, 5.8vw, 2.35rem);
  }

  .about-section-heading {
    font-size: clamp(1.35rem, 4.8vw, 1.8rem);
    margin-bottom: 24px;
  }

  .value-clean-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px 0;
  }

  .value-clean-title {
    font-size: 1.1rem;
    font-weight: 500;
  }

  .value-clean-desc {
    font-size: 0.95rem;
    line-height: 1.55;
    color: #475569;
  }

  .contact-simple-email {
    font-size: clamp(1.6rem, 6.2vw, 2.5rem);
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-watermark span {
    font-size: clamp(3.2rem, 14vw, 6rem);
  }

  .careers-cta-box {
    padding: 28px 20px;
  }
}
