/* Anmira Technologies - Design System */

:root {
  /* Colors strictly matching design */
  --bg-dark-hero: #030b20;
  --bg-dark-footer: #02091c;
  --bg-main: #FAFAFA;
  --bg-card: #ffffff;
  
  --primary-blue: #2557e0;
  --primary-blue-hover: #1d46be;
  --primary-blue-light: #eef2ff;
  
  --teal-accent: #0d9488;
  --teal-bg: #f0fdfa;
  --teal-border: #ccfbf1;
  --teal-pill-bg: #ecfdf5;
  --teal-pill-text: #059669;
  
  --purple-accent: #6d28d9;
  --purple-border: #7c3aed;
  --purple-bg: #f5f3ff;
  --purple-pill-bg: #ede9fe;
  --purple-pill-text: #6d28d9;
  
  /* Text colors: #000033 for header menu and body text */
  --text-dark: #000033;
  --text-heading: #000033;
  --text-body: #000033;
  --text-muted: #000033;
  --text-light: #94a3b8;
  --text-white: #ffffff;
  
  --border-light: #e2e8f0;
  --border-subtle: #edf2f7;
  
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --transition-fast: 0.2s ease;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.07);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 18px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-main);
  color: #000033;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

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

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

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* Material Symbols */
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 40;
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  vertical-align: middle;
}

/* ==========================================================================
   Container: Max-Width 1440px
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 36px;
  padding-right: 36px;
}

/* ==========================================================================
   Header & Navigation (Transparent over Stage, Sticky Dark on Scroll)
   ========================================================================== */
.site-header {
  background-color: transparent;
  border-bottom: 1px solid transparent;
  position: fixed;
  top: 16px;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: 80px;
  display: flex;
  align-items: center;
  transition: top 0.3s ease, background 0.35s ease, backdrop-filter 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.site-header.scrolled {
  top: 0;
  background-image: linear-gradient(180deg, #001876 0%, #0B0B36 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 100%;
}

.brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo-img {
  height: 32px;
  width: auto;
  max-width: 100%;
  display: block;
}

.footer-logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  height: 100%;
  margin: 0 auto;
}

.nav-link {
  font-size: 1rem;
  font-weight: 400;
  color: #ffffff;
  height: 100%;
  display: inline-flex;
  align-items: center;
  padding: 0 4px;
  position: relative;
  transition: color 0.15s ease;
  white-space: nowrap;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.nav-link:hover {
  color: #27B4FF;
}

.nav-link.active {
  color: #27B4FF;
  font-weight: 400;
}

.mobile-nav-actions {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}

.lang-switch {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 400;
  color: #ffffff;
  gap: 6px;
  user-select: none;
}

.lang-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  padding: 2px 4px;
  font-weight: 400;
  transform: translateZ(0);
  backface-visibility: hidden;
  transition: color 0.15s ease;
}

.lang-btn:hover {
  color: #27B4FF;
}

.lang-btn.active {
  color: #27B4FF;
  font-weight: 400;
}

.lang-divider {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
}

.btn-primary {
  background: linear-gradient(to right top, #001CB6 0%, #5E77FF 100%);
  color: #ffffff;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-size: 0.925rem;
  font-weight: 400;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 28, 182, 0.2);
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn-primary:hover {
  filter: brightness(1.15);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 28, 182, 0.35);
  transform: translateY(-1px) translateZ(0);
}

.btn-primary:active {
  transform: translateY(0) translateZ(0);
  box-shadow: 0 2px 6px rgba(0, 28, 182, 0.25);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  padding: 6px;
}

/* ==========================================================================
   Home Hero Stage Section with Video Background
   ========================================================================== */
.hero-home {
  background-color: #030b20;
  color: #ffffff;
  min-height: 720px;
  display: flex;
  align-items: center;
  padding: 140px 0 90px 0;
  position: relative;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

.hero-overlay-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to bottom, #0B0B36 0%, #001876 60%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.95) 50%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.95) 50%, rgba(0, 0, 0, 0) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-overlay-bottom,
.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, #0B0B36 0%, #001876 60%);
  -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.95) 50%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.95) 50%, rgba(0, 0, 0, 0) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-home-container {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 3;
  transform: translateY(-30px);
}

.hero-home-content {
  max-width: 580px;
  z-index: 3;
}

.hero-home-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  color: #ffffff;
}

.hero-home-content p {
  font-size: 1.25rem;
  line-height: 1.45;
  color: #B2E4FF;
  margin-bottom: 34px;
  max-width: 520px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.btn-hero-talk {
  background-color: #ffffff;
  color: #001CB6;
  padding: 14px 36px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 400;
  border: none;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.btn-hero-talk:hover {
  background-color: #f1f5f9;
  color: #00189e;
  transform: translateY(-2px) translateZ(0);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.btn-hero-talk:active {
  transform: translateY(0) translateZ(0);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   Sub-page Hero Stage Section (Linear Gradient: top #001876 0% to bottom rgba(0, 24, 118, 0) 100%, height: 620px)
   ========================================================================== */
.subpage-stage-hero,
.hero-subpage {
  background-color: #FAFAFA;
  background-image: linear-gradient(180deg, #001876 0%, rgba(0, 24, 118, 0) 100%);
  background-size: 100% 620px;
  background-repeat: no-repeat;
  background-position: top center;
  color: #ffffff;
  padding: 160px 0 80px 0;
  position: relative;
  overflow: hidden;
}

.subpage-stage-hero .container {
  position: relative;
  z-index: 3;
}

.subpage-stage-hero .hero-overlay-top,
.hero-subpage .hero-overlay-top {
  height: 520px;
}

.stage-title-wrap {
  margin: 0 0 80px 0;
  max-width: 760px;
}

.stage-title-wrap h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  color: #ffffff;
}

.stage-title-wrap p {
  font-size: 1.25rem;
  color: #B2E4FF;
  max-width: 680px;
  line-height: 1.45;
  margin-left: 0;
}

/* ==========================================================================
   Common Section Styles
   ========================================================================== */
.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-tag {
  display: inline-block;
  padding: 6px 18px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: capitalize;
  border-radius: 9999px;
  margin-bottom: 16px;
}

.section-tag.tag-blue {
  background-color: #eff2ff;
  color: #001CB6;
}

.section-tag.tag-teal {
  background-color: rgba(0, 182, 154, 0.08);
  color: #00B69A;
}

.section-tag.tag-purple {
  background-color: var(--purple-pill-bg);
  color: var(--purple-pill-text);
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #000033;
  letter-spacing: -0.02em;
  margin-bottom: 0px;
}

.section-subtitle {
  font-size: 1rem;
  color: #000033;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   Home Section 1: AI Platform Cards (3 Columns)
   ========================================================================== */
.cards-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.platform-card {
  background-color: #FAFAFA;
  border: 1px solid #B2BEFF;
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transform: translateZ(0);
  backface-visibility: hidden;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  display: flex;
  flex-direction: column;
}

.platform-card:hover {
  transform: translateY(-2px) translateZ(0);
  box-shadow: var(--shadow-md);
}

.card-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card-icon-box .material-symbols-outlined {
  font-size: 32px;
}

.card-icon-box.icon-blue {
  background-color: #eef2ff;
  color: #001CB6;
}

.card-icon-box.icon-teal {
  background-color: #EBF6F4;
  border: none;
  color: #00B69A;
}

.card-icon-box.icon-teal .material-symbols-outlined {
  color: #00B69A;
}

.card-icon-box.icon-purple {
  background-color: #f3e8ff;
  color: #7c3aed;
}

.platform-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1e3a8a;
  margin-bottom: 12px;
  line-height: 1.35;
}

.platform-card p {
  font-size: 16px;
  color: #000033;
  line-height: 1.6;
}

/* ==========================================================================
   Home Section 2: Enterprise Services Cards
   ========================================================================== */
.section-services {
  background-color: #F2FBFA;
}

.services-card {
  background-color: #FAFAFA;
  border: 1px solid #5EFFE6;
  border-radius: var(--radius-md);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateZ(0);
  backface-visibility: hidden;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.services-card:hover {
  transform: translateY(-2px) translateZ(0);
  box-shadow: var(--shadow-md);
}

.services-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #00B69A;
  margin-bottom: 10px;
}

.services-card p {
  font-size: 16px;
  color: #000033;
  line-height: 1.6;
  margin-bottom: 20px;
}

.services-card .card-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: #000033;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}

.services-card .card-link:hover {
  color: #00B69A;
}

.card-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: #0d9488;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}

.card-link:hover {
  color: #0f766e;
}

/* ==========================================================================
   Industries Page: 6 Industry Cards Grid (Image 1)
   ========================================================================== */
.section-industries {
  background-color: #F5F2FB;
}

.cards-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.industry-card {
  background-color: #FAFAFA;
  border: 1px solid #CDB2FF;
  border-radius: var(--radius-md);
  padding: 32px 30px;
  display: flex;
  gap: 22px;
  transform: translateZ(0);
  backface-visibility: hidden;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.industry-card:hover {
  transform: translateY(-2px) translateZ(0);
  box-shadow: var(--shadow-md);
}

.industry-card-body {
  flex: 1;
}

.industry-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #3F00B6;
  margin-bottom: 8px;
}

.industry-card p {
  font-size: 16px;
  color: #000033;
  line-height: 1.55;
  margin-bottom: 16px;
}

.use-case-tag {
  display: inline-block;
  background-color: var(--purple-pill-bg);
  color: #3F00B6;
  font-size: 14px;
  font-weight: 400;
  padding: 3px 10px;
  border-radius: 9999px;
  margin-bottom: 6px;
}

.use-case-text {
  font-size: 16px;
  font-weight: 500;
  color: #000033;
}

.industry-card-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 6px;
}

.industry-card-footer .card-link {
  color: #6d28d9;
}

.industry-card-footer .card-link:hover {
  color: #4c1d95;
}

/* ==========================================================================
   Solutions Page: Showcase Cards (Image 5 & Attached Ref)
   ========================================================================== */
.section-solutions-showcase {
  background-color: #FAFAFA;
}

.solutions-showcase-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-bottom: 60px;
}

.solution-showcase-card {
  background-color: #F5F7FD;
  border: 1px solid #B2BEFF;
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  box-shadow: var(--shadow-sm);
  transform: translateZ(0);
  backface-visibility: hidden;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.solution-showcase-card:hover {
  transform: translateY(-2px) translateZ(0);
  box-shadow: var(--shadow-md);
}

.solution-showcase-card.card-teal {
  background-color: #F5FCFB;
  border: 1px solid #5EFFE6;
  grid-template-columns: 0.95fr 1.05fr;
}

.solution-showcase-card.card-purple {
  background-color: #F5F2FB;
  border: 1px solid #CDB2FF;
}

.solution-showcase-card.card-cae {
  background-color: #F2F8FB;
  border: 1px solid #B2E4FF;
  grid-template-columns: 0.95fr 1.05fr;
}

.solution-card-media {
  height: 100%;
  min-height: 280px;
  overflow: hidden;
}

.solution-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.solution-card-info {
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.solution-card-info h3 {
  font-size: 28px;
  font-weight: 700;
  color: #000033;
  margin-bottom: 12px;
  line-height: 1.25;
}

.solution-card-info p {
  font-size: 18px;
  color: #000033;
  line-height: 1.6;
  margin-bottom: 22px;
}

.features-highlight-box {
  border-left: 3.5px solid #001CB6;
  padding-left: 14px;
}

.features-highlight-box.box-blue {
  border-left-color: #001CB6;
}

.features-highlight-box.box-teal {
  border-left-color: #00B69A;
}

.features-highlight-box.box-purple {
  border-left-color: #3F00B6;
}

.features-highlight-box.box-cyan {
  border-left-color: #0077B6;
}

.features-highlight-box .key-features-tag {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 4px;
  color: #001CB6;
}

.features-highlight-box.box-teal .key-features-tag {
  color: #00B69A;
}

.features-highlight-box.box-purple .key-features-tag {
  color: #3F00B6;
}

.features-highlight-box.box-cyan .key-features-tag {
  color: #0077B6;
}

.features-highlight-box .key-features-val {
  font-size: 16px;
  font-weight: 300;
  font-style: italic;
  color: #001CB6;
}

.features-highlight-box.box-teal .key-features-val {
  color: #00B69A;
}

.features-highlight-box.box-purple .key-features-val {
  color: #3F00B6;
}

.features-highlight-box.box-cyan .key-features-val {
  color: #0077B6;
}

/* ==========================================================================
   Solutions Page: Specialized CAE Section (#F2F4FB)
   ========================================================================== */
.section-cae-specialized {
  background-color: #F2F4FB;
}

.cae-nvh-card {
  background-color: #FAFAFA;
  border: 1px solid #B2BEFF;
  border-radius: 16px;
  padding: 40px 48px;
  box-shadow: var(--shadow-sm);
}

.cae-nvh-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #001CB6;
  margin-bottom: 40px;
}

.cae-nvh-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.nvh-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.nvh-check-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 20px;
  font-weight: 600;
  color: #000033;
  padding: 14px 20px;
  background-color: #F2F4FB;
  border-radius: var(--radius-sm);
  border: 1px solid #B2BEFF;
}

.nvh-check-item .material-symbols-outlined {
  color: #001CB6;
  font-size: 32px;
}

.nvh-mesh-visual img {
  width: 100%;
  border-radius: var(--radius-md);
}

/* ==========================================================================
   Collaboration Model Page Styles (Image 2)
   ========================================================================== */
.collab-top-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

.collab-role-card {
  background-color: #FAFAFA;
  border: 1px solid #B2BEFF;
  border-radius: var(--radius-md);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
}

.collab-role-card h3 {
  font-size: 28px;
  font-weight: 700;
  color: #001CB6;
  margin-bottom: 14px;
}

.collab-role-card p {
  font-size: 18px;
  color: #000033;
  line-height: 1.6;
}

.collab-quote-card {
  background-color: #F5F2FB;
  border-left: 8px solid #3F00B6;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 40px 40px 80px 40px;
  margin-bottom: 80px;
  box-shadow: var(--shadow-sm);
}

.collab-quote-card h4 {
  font-size: 28px;
  font-weight: 700;
  color: #3F00B6;
  margin-bottom: 10px;
}

.collab-quote-card p {
  font-size: 24px;
  font-style: italic;
  color: #000033;
  line-height: 1.5;
}

.collab-guarantee-card {
  background-color: #E5F8F5;
  border-left: 8px solid #00B69A;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 36px;
  box-shadow: var(--shadow-sm);
  font-size: 24px;
  font-style: italic;
}

.badge-award-circle {
  width: 176px;
  height: 176px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.badge-award-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.collab-guarantee-card p {
  font-size: 24px;
  font-style: italic;
  color: #000033;
  line-height: 1.5;
  font-weight: 500;
}

/* ==========================================================================
   Contact Us Page Styles (Image 3)
   ========================================================================== */
.contact-layout-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 36px;
  align-items: start;
}

.contact-info-card {
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-info-item {
  display: flex;
  gap: 20px;
}

.contact-icon-box {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background-color: #eef2ff;
  border: 1px solid #c7d2fe;
  color: #2557e0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-content h3,
.contact-info-content h4 {
  font-size: 20px;
  font-weight: 700;
  color: #001CB6;
  margin-bottom: 6px;
}

.contact-info-content p {
  font-size: 18px;
  color: #000033;
  line-height: 1.55;
}

.contact-form-card {
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 40px 38px;
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: #000033;
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  font-size: 0.925rem;
  color: #000033;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

input.form-control {
  height: 56px;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(37, 87, 224, 0.12);
}

.form-control::placeholder {
  color: #64748b;
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.btn-submit {
  background: linear-gradient(to right top, #001CB6 0%, #5E77FF 100%);
  color: #ffffff;
  padding: 12px 36px;
  font-size: 0.95rem;
  font-weight: 400;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 28, 182, 0.2);
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn-submit:hover {
  filter: brightness(1.15);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 28, 182, 0.35);
  transform: translateY(-1px) translateZ(0);
}

.btn-submit:active {
  transform: translateY(0) translateZ(0);
  box-shadow: 0 2px 6px rgba(0, 28, 182, 0.25);
}

/* ==========================================================================
   Contact Modal Popup (Triggered by Let's Talk)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 40, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateZ(0);
  will-change: opacity, visibility;
  transition: opacity var(--transition-normal), visibility var(--transition-normal);
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  max-width: 580px;
  width: 100%;
  padding: 40px 44px;
  box-shadow: 0 20px 48px rgba(0, 0, 50, 0.25);
  position: relative;
  transform: translateY(20px) scale(0.97) translateZ(0);
  backface-visibility: hidden;
  will-change: transform;
  transition: transform var(--transition-normal);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.active .modal-card {
  transform: translateY(0) scale(1) translateZ(0);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  color: #64748b;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.modal-close-btn:hover {
  background-color: #f1f5f9;
  color: #000033;
}

.modal-title {
  font-size: 36px;
  font-weight: 700;
  color: #000033;
  margin-bottom: 24px;
}

/* ==========================================================================
   Why Anmira Page Styles
   ========================================================================== */
.why-stack-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ==========================================================================
   About Us Page (Who We Are, Mission/Vision, Core Strengths)
   ========================================================================== */
.who-we-are-card {
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 44px 48px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 80px;
}

.who-we-are-content h2,
.who-we-are-content [data-i18n="about_who_title"] {
  font-size: 36px;
  font-weight: 800;
  color: #000033;
  margin-bottom: 20px;
  line-height: 1.3;
}

.who-we-are-content p {
  font-size: 24px;
  font-style: italic;
  line-height: 1.5;
  color: var(--text-dark);
  margin: 0;
}

.mission-vision-stack {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 64px;
}

.mission-card {
  background-color: #F5F2FB;
  border-left: 8px solid #3F00B6;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 32px 36px;
  box-shadow: var(--shadow-sm);
}

.mission-card h4 {
  font-size: 28px;
  font-weight: 700;
  color: #3F00B6;
  margin-bottom: 10px;
}

.mission-card p {
  font-size: 24px;
  font-style: italic;
  color: #000033;
  line-height: 1.5;
  margin: 0;
}

.vision-card {
  background-color: #E5F8F5;
  border-left: 8px solid #00B69A;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 32px 36px;
  box-shadow: var(--shadow-sm);
}

.vision-card h4 {
  font-size: 28px;
  font-weight: 700;
  color: #00897B;
  margin-bottom: 10px;
}

.vision-card p {
  font-size: 24px;
  font-style: italic;
  color: #000033;
  line-height: 1.5;
  margin: 0;
}

.about-section-heading {
  font-size: 36px;
  font-weight: 800;
  color: #000033;
  margin-bottom: 48px;
  line-height: 1.3;
}

.core-strengths-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.why-horizontal-card {
  background-color: #FAFAFA;
  border: 1px solid #B2BEFF;
  border-radius: 16px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: var(--shadow-sm);
  transform: translateZ(0);
  backface-visibility: hidden;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  box-sizing: border-box;
  min-width: 0;
  max-width: 100%;
}

.why-horizontal-card:hover {
  transform: translateY(-2px) translateZ(0);
  box-shadow: var(--shadow-md);
}

.why-card-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background-color: #EEF2FF;
  border: 1px solid #B2BEFF;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #001CB6;
  flex-shrink: 0;
}

.why-card-icon-box .material-symbols-outlined {
  font-size: 28px;
  color: #001CB6;
}

.why-horizontal-card-body {
  flex: 1;
  min-width: 0;
}

.why-horizontal-card-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: #001CB6;
  margin-bottom: 4px;
  word-break: break-word;
  overflow-wrap: break-word;
}

.why-horizontal-card-body p {
  font-size: 16px;
  color: #000033;
  line-height: 1.5;
  margin: 0;
  word-break: break-word;
  overflow-wrap: break-word;
}

.why-quote-card {
  background-color: #EDE8F8;
  border-left: 8px solid #3F00B6;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 40px 48px;
  box-shadow: var(--shadow-sm);
}

.why-quote-card p.why-quote-text {
  font-size: 24px;
  font-style: italic;
  color: #000033;
  line-height: 1.6;
  margin-bottom: 24px;
}

.why-quote-card .why-quote-author {
  font-size: 28px;
  font-weight: 500;
  font-style: italic;
  color: #3F00B6;
}

/* ==========================================================================
   CTA Banner (Home Page)
   ========================================================================== */
.cta-banner {
  background-color: #F2F4FB;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
  margin-top: 40px;
  box-shadow: var(--shadow-sm);
  max-width: 100%;
  box-sizing: border-box;
}

.cta-text {
  flex: 0 0 auto;
  max-width: none;
}

.cta-text h3 {
  font-size: 28px;
  font-weight: 800;
  color: #000033;
  margin-bottom: 8px;
  padding-bottom: 0px;
  line-height: 1.25;
  white-space: nowrap;
}

.cta-text p {
  font-size: 18px;
  font-weight: 600;
  color: #001CB6;
  line-height: 1.4;
  margin: 0;
  white-space: nowrap;
}

.cta-button-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  margin-left: 0;
  max-width: 100%;
}

.cta-button-wrap .spark-lines {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 174px;
  height: auto;
  pointer-events: none;
  z-index: 1;
}

.btn-cta-talk {
  background: linear-gradient(to right top, #001CB6 0%, #5E77FF 100%);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 2;
  display: inline-block;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 28, 182, 0.2);
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn-cta-talk:hover {
  filter: brightness(1.15);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 28, 182, 0.35);
  transform: translateY(-1px) translateZ(0);
}

.btn-cta-talk:active {
  transform: translateY(0) translateZ(0);
  box-shadow: 0 2px 6px rgba(0, 28, 182, 0.25);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background-color: var(--bg-dark-footer);
  background-image: url('../assets/images/footer-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #C6CCEC;
  padding: 70px 0 32px;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1.2fr;
  gap: 60px;
  margin-bottom: 50px;
}

.footer-col-brand .brand-logo {
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-col-brand p {
  font-size: 0.925rem;
  line-height: 1.65;
  color: #C6CCEC;
  max-width: 380px;
}

.footer-col-links h4,
.footer-col-contact h4 {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

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

.footer-nav-list a {
  font-size: 0.925rem;
  color: #C6CCEC;
  transition: color var(--transition-fast);
}

.footer-nav-list a:hover {
  color: #ffffff;
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.925rem;
  color: #C6CCEC;
  line-height: 1.5;
}

.footer-contact-item .material-symbols-outlined {
  font-size: 20px;
  color: #C6CCEC;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(198, 204, 236, 0.15);
  padding-top: 26px;
  font-size: 0.875rem;
  color: #C6CCEC;
  text-align: left;
}

/* Form status messages */
.form-status-msg {
  display: none;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  margin-top: 14px;
}

.form-status-msg.success {
  display: block;
  background-color: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

/* ==========================================================================
   Responsive Breakpoints & Layout Alignments
   ========================================================================== */

@keyframes mobileMenuSlide {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1440px) {
  .container {
    padding-left: 28px;
    padding-right: 28px;
  }
}

@media (max-width: 1200px) {
  .cards-grid-3 {
    gap: 20px;
  }
  
  .footer-grid {
    gap: 40px;
  }
  
  .solution-card-info {
    padding: 32px 36px;
  }
}

@media (max-width: 992px) {
  .site-header {
    top: 16px;
    height: 80px;
  }

  .site-header.scrolled {
    top: 0;
  }

  /* Header Bar on Mobile: ONLY logo and burger menu */
  .header-actions .lang-switch,
  .header-actions .btn-primary {
    display: none !important;
  }

  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    font-size: 28px;
    color: #ffffff;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
  }

  /* Mobile Drawer (Full Screen Background) */
  .main-nav {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    height: calc(100dvh - 80px);
    background: linear-gradient(180deg, #001876 0%, #0B0B36 100%);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 12px 24px 36px 24px;
    gap: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 16px 36px rgba(0, 0, 40, 0.6);
    display: none;
    overflow-y: auto;
    z-index: 9999;
  }

  .main-nav.mobile-open {
    display: flex;
    animation: mobileMenuSlide 0.25s ease-out;
  }

  .main-nav .nav-link {
    width: 100%;
    height: 56px;
    min-height: 56px;
    display: flex;
    align-items: center;
    padding: 0;
    font-size: 1.05rem;
    font-weight: 400;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .main-nav .nav-link:hover,
  .main-nav .nav-link.active {
    color: #27B4FF;
  }

  /* Contact & Language Inside Mobile Drawer */
  .mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    margin-top: 0;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  .mobile-nav-actions .lang-switch {
    display: flex;
    align-items: center;
    height: 40px;
    font-size: 1rem;
    color: #ffffff;
    gap: 8px;
  }

  .mobile-nav-actions .btn-primary {
    display: inline-flex;
    width: 100%;
    height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    font-size: 1rem;
  }

  /* Hero Home & Subpage Stage Titles (Aligned at 110px from top) */
  .hero-home {
    min-height: 580px;
    padding: 110px 0 60px 0;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
  }

  .hero-video {
    object-position: 80% 90%;
  }

  .hero-overlay-top {
    height: 160px;
  }

  .hero-overlay-bottom,
  .hero-overlay {
    height: 60%;
  }

  .subpage-stage-hero,
  .hero-subpage {
    padding: 110px 0 20px 0;
    background-size: 100% 620px;
  }

  .hero-home-container {
    transform: translateY(0);
    text-align: left;
  }

  .hero-home-content {
    max-width: 100%;
  }

  .hero-home-content h1,
  .stage-title-wrap h1 {
    font-size: 2.6rem;
    line-height: 1.25;
    margin-bottom: 16px;
  }

  .hero-home-content p {
    font-size: 1.1rem;
    line-height: 1.45;
    margin-bottom: 24px;
    max-width: 100%;
  }

  /* Solutions Showcase Cards */
  .solution-showcase-card,
  .solution-showcase-card.card-teal,
  .solution-showcase-card.card-cae {
    grid-template-columns: 1fr;
  }

  .solution-showcase-card .solution-card-media {
    order: -1;
    min-height: 240px;
  }

  .cae-nvh-grid {
    grid-template-columns: 1fr;
  }
  
  .cards-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  
  .footer-col-brand {
    grid-column: span 2;
  }
  
  .contact-layout-grid {
    grid-template-columns: 1fr;
  }

  .who-we-are-card {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 36px 32px;
  }

  .cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 48px 28px;
    gap: 24px;
  }

  .cta-text {
    max-width: 100%;
  }

  .cta-text h3,
  .cta-text p {
    white-space: normal;
  }

  .cta-button-wrap {
    margin-left: 0;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .site-header {
    top: 16px;
    height: 80px;
  }

  .site-header.scrolled {
    top: 0;
  }

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

  .main-nav {
    top: 80px;
    height: calc(100vh - 80px);
    height: calc(100dvh - 80px);
    padding: 10px 20px 32px 20px;
  }

  .hero-home {
    min-height: 520px;
    padding: 90px 0 50px 0;
  }

  .hero-video {
    object-position: 80% 90%;
  }

  .hero-overlay-top,
  .subpage-stage-hero .hero-overlay-top,
  .hero-subpage .hero-overlay-top {
    height: 280px;
  }

  .hero-overlay-bottom,
  .hero-overlay {
    height: 60%;
  }

  .hero-home-content h1,
  .stage-title-wrap h1 {
    font-size: 2.2rem;
    line-height: 1.25;
    margin-bottom: 12px;
  }

  .hero-home-content p {
    font-size: 1rem;
    line-height: 1.45;
  }

  .section,
  .section-quote,
  .section-cta,
  .section-cae-specialized,
  .section-solutions-showcase {
    padding: 48px 0 !important;
  }

  .subpage-stage-hero,
  .hero-subpage {
    padding: 90px 0 48px 0 !important;
    background-size: 100% 620px;
  }

  .stage-title-wrap {
    margin: 0 0 48px 0;
  }

  .stage-title-wrap p {
    font-size: 1.05rem;
  }

  .cards-grid-3,
  .cards-grid-2,
  .collab-top-grid,
  .why-pillars-grid,
  .collab-steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .solutions-showcase-list {
    gap: 48px;
  }

  .platform-card,
  .services-card,
  .industry-card,
  .solution-card-info,
  .cae-nvh-card {
    padding: 24px;
  }

  .card-icon-box,
  .why-card-icon-box {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    border-radius: 8px;
  }

  .card-icon-box .material-symbols-outlined,
  .why-card-icon-box .material-symbols-outlined {
    font-size: 32px;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .who-we-are-card {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 28px;
    border-radius: 16px;
  }

  .who-we-are-content h2,
  .who-we-are-content [data-i18n="about_who_title"] {
    font-size: 28px;
  }

  .who-we-are-content p {
    font-size: 18px;
  }

  .mission-vision-stack {
    margin-top: 0;
  }

  .mission-card,
  .vision-card {
    padding: 24px 20px;
  }

  .mission-card h4,
  .vision-card h4 {
    font-size: 22px;
  }

  .mission-card p,
  .vision-card p {
    font-size: 18px;
  }

  .about-section-heading {
    font-size: 28px;
    margin-bottom: 32px;
  }

  .about-strengths-section {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .core-strengths-grid {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .why-horizontal-card {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 24px;
    align-items: flex-start;
    min-width: 0;
  }

  .why-horizontal-card-body {
    flex: 1;
    min-width: 0;
  }

  .why-horizontal-card-body h3 {
    font-size: 18px;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .why-horizontal-card-body p {
    font-size: 15px;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .why-stack-container {
    gap: 16px;
    width: 100%;
  }

  .why-card-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 24px;
  }

  .why-quote-card {
    padding: 24px;
  }

  .why-quote-author {
    font-size: 22px;
  }

  .collab-role-card {
    padding: 24px;
  }

  .collab-quote-card {
    padding: 24px 24px 40px 24px;
    margin-bottom: 40px;
  }

  .collab-guarantee-card {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 24px 24px 40px 24px;
  }

  .cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 24px;
    gap: 48px;
    margin-top: 32px;
  }

  .cta-text h3 {
    font-size: 22px;
  }

  .cta-text p {
    font-size: 16px;
  }

  .cta-button-wrap {
    margin-left: 0;
    width: 100%;
  }

  .btn-cta-talk {
    width: auto;
    max-width: 100%;
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .contact-form-card {
    padding: 28px 20px;
  }

  .contact-info-card {
    padding: 24px 20px;
  }

  /* Full Screen Contact Modal Popup on Mobile */
  .modal-overlay {
    padding: 0;
    align-items: stretch;
    justify-content: stretch;
  }

  .modal-card {
    padding: 32px 20px 40px 20px;
    max-width: 100%;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
    border-radius: 0;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow-y: auto;
  }

  .modal-title {
    font-size: 28px;
    margin-top: 8px;
    margin-bottom: 20px;
  }

  .modal-close-btn {
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    font-size: 30px;
    background-color: #f1f5f9;
    color: #000033;
    z-index: 10;
  }

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

  .footer-col-brand {
    grid-column: span 1;
  }

  .footer-logo-img {
    width: 220px;
  }
}

@media (max-width: 480px) {
  .hero-home {
    min-height: 480px;
    padding: 84px 0 40px 0;
  }

  .hero-video {
    object-position: 80% 90%;
  }

  .hero-overlay-top,
  .subpage-stage-hero .hero-overlay-top,
  .hero-subpage .hero-overlay-top {
    height: 280px;
  }

  .hero-overlay-bottom,
  .hero-overlay {
    height: 60%;
  }

  .subpage-stage-hero,
  .hero-subpage {
    padding: 116px 0 48px 0 !important;
  }

  .hero-home-content h1,
  .stage-title-wrap h1 {
    font-size: 1.95rem;
    line-height: 1.22;
    margin-bottom: 12px;
  }

  .hero-home-content p {
    font-size: 0.95rem;
  }

  .btn-hero-talk {
    width: auto;
    display: inline-block;
    padding: 14px 36px;
    align-self: flex-start;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .cta-banner {
    padding-top: 24px;
    padding-right: 24px;
    padding-bottom: 64px;
    padding-left: 24px;
    gap: 56px;
  }

  .cta-text h3 {
    font-size: 20px;
  }

  .cta-text p {
    font-size: 15px;
  }

  .btn-cta-talk {
    width: 100%;
    padding: 12px 16px;
    font-size: 0.88rem;
  }

  .modal-card {
    padding: 28px 18px 36px 18px;
  }

  .modal-title {
    font-size: 24px;
  }

  .modal-close-btn {
    top: 14px;
    right: 14px;
  }
}