/* ============================================
   TRANSSOL LTD — PROFESSIONAL WEBSITE STYLES
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --navy: #0b1d3a;
  --navy-light: #132d54;
  --navy-mid: #1a3a6b;
  --accent: #2e8bc0;
  --accent-light: #5fb4e5;
  --white: #ffffff;
  --off-white: #f4f6f9;
  --grey-light: #e2e6ec;
  --grey-text: #6b7a90;
  --text-dark: #1a2332;
  --text-body: #3a4a5c;
  --border-radius: 12px;
  --transition: 0.3s ease;
}

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

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 0rem;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1.6rem;
  line-height: 1.7;
  color: var(--text-body);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  width: 100%;
  background: linear-gradient(135deg, #2a4060 0%, #354d6e 40%, #3e5a82 100%);
  padding: clamp(3rem, 6vw, 8rem) 2rem clamp(2rem, 4vw, 5rem);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(30deg, #ffffff 12%, transparent 12.5%, transparent 87%, #ffffff 87.5%),
    linear-gradient(150deg, #ffffff 12%, transparent 12.5%, transparent 87%, #ffffff 87.5%),
    linear-gradient(30deg, #ffffff 12%, transparent 12.5%, transparent 87%, #ffffff 87.5%),
    linear-gradient(150deg, #ffffff 12%, transparent 12.5%, transparent 87%, #ffffff 87.5%),
    linear-gradient(60deg, #ffffff77 25%, transparent 25.5%, transparent 75%, #ffffff77 75%),
    linear-gradient(60deg, #ffffff77 25%, transparent 25.5%, transparent 75%, #ffffff77 75%);
  background-size: 80px 140px;
  background-position: 0 0, 0 0, 40px 70px, 40px 70px, 0 0, 40px 70px;
  pointer-events: none;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 900px;
  width: 100%;
}

.hero-logo {
  width: clamp(150px, 22vw, 360px);
  height: auto;
  margin-bottom: 2rem;
  filter: brightness(1.1);
}

.strapline {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 3vw, 3.6rem);
  font-weight: 700;
  color: var(--white);
  text-align: center;
  letter-spacing: 0.02em;
  opacity: 0.95;
}

/* --- Rotator --- */
.rotator {
  display: grid;
  place-items: center;
  width: 100%;
  max-width: 800px;
  margin-top: 3rem;
  min-height: 8rem;
  padding: 0 1rem;
}

.rotator-item {
  grid-area: 1 / 1 / 2 / 2;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.rotator-item.active {
  opacity: 1;
  pointer-events: auto;
}

.rotating-text {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 500;
  color: var(--accent-light);
  text-align: center;
  line-height: 1.4;
  text-shadow: 0 2px 20px rgba(95, 180, 229, 0.3);
}


/* ============================================
   ICON NAVIGATION
   ============================================ */
.icon-nav {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: clamp(0.6rem, 2vw, 2rem);
  padding: clamp(2rem, 4vw, 4rem) 2rem;
  background: var(--white);
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.icon-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 0.8rem;
  padding: 1.5rem 1.2rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  color: var(--text-dark);
  transition: all var(--transition);
  min-width: 90px;
}

.icon-card:hover {
  transform: translateY(-4px);
  background: var(--off-white);
  box-shadow: 0 8px 24px rgba(11, 29, 58, 0.1);
}

.icon-card img {
  width: clamp(40px, 7vw, 72px);
  height: auto;
  flex-grow: 1;
  object-fit: contain;
  transition: transform var(--transition);
}

.icon-card:hover img {
  transform: scale(1.08);
}

.icon-card span {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.1rem, 1.4vw, 1.4rem);
  font-weight: 500;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}


/* ============================================
   CONTENT SECTIONS — shared
   ============================================ */
.content-section {
  width: 100%;
  padding: clamp(4rem, 6vw, 8rem) 2rem;
}

.section-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 700;
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 1.5rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  border-radius: 2px;
}

.section-body > p {
  font-size: clamp(1.4rem, 1.8vw, 1.8rem);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 75ch;
}

/* Light sections */
.section-light {
  background: var(--white);
}

.section-light .section-title {
  color: var(--navy);
}

.section-light .section-title::after {
  background: var(--accent);
}

/* Dark sections */
.section-dark {
  background: var(--off-white);
}

.section-dark .section-title {
  color: var(--navy);
}

.section-dark .section-title::after {
  background: var(--accent);
}


/* ============================================
   PROFILE — Highlight Cards
   ============================================ */
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.highlight-card {
  background: var(--off-white);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--accent);
  transition: transform var(--transition), box-shadow var(--transition);
}

.highlight-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(11, 29, 58, 0.08);
}

.highlight-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.8rem;
}

.highlight-card p {
  font-size: 1.5rem;
  color: var(--text-body);
  line-height: 1.7;
}


/* ============================================
   SERVICES — Service Cards
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  position: relative;
  background: var(--white);
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 12px rgba(11, 29, 58, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 3px solid transparent;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(11, 29, 58, 0.1);
  border-top-color: var(--accent);
}

.service-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1rem;
}

.service-card p {
  font-size: 1.5rem;
  color: var(--text-body);
  line-height: 1.7;
}

/* "Hover for more detail" hint */
.card-hint {
  display: block;
  margin-top: 1.2rem;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--accent);
  opacity: 0.6;
  transition: opacity var(--transition);
}

.service-card:hover .card-hint {
  opacity: 1;
}

/* Backdrop overlay */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

/* Centred modal pop-out */
.service-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.92);
  width: min(750px, 90vw);
  max-height: 90vh;
  background: #ffffff;
  border: 1px solid #c8ced8;
  border-radius: 8px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  z-index: 101;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.service-modal.active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.service-modal h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 700;
  color: #1a2332;
  margin: 0;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #c8ced8;
  background: #ffffff;
  flex-shrink: 0;
}

.service-modal .modal-body {
  padding: 2rem;
  background: #f4f6f9;
  overflow-y: auto;
  flex: 1;
}

.service-modal .modal-body p {
  font-size: clamp(1.4rem, 1.8vw, 1.6rem);
  line-height: 1.7;
  color: #1a2332;
  margin-bottom: 1.5rem;
}

.service-modal .modal-body p:last-child {
  margin-bottom: 0;
}

.service-modal-close {
  position: absolute;
  top: 0.8rem;
  right: 1rem;
  background: none;
  border: none;
  color: #6b7a90;
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem;
  transition: color var(--transition);
}

.service-modal-close:hover {
  color: #1a2332;
}


/* ============================================
   TECHNOLOGIES — RaCom Modules
   ============================================ */
.tech-modules {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 2rem;
}

.tech-feature {
  background: var(--off-white);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  border-top: 3px solid var(--accent);
  transition: transform var(--transition), box-shadow var(--transition);
}

.tech-feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(11, 29, 58, 0.1);
}

.tech-feature h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 2vw, 2rem);
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1rem;
}

.tech-feature p {
  font-size: 1.4rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.tech-feature ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

/* Problem paragraph — italic, slightly smaller */
.racom-problem {
  font-style: italic;
  color: var(--grey-text);
}

/* RaCom section — centre SVG/strips/button but keep intro text left-aligned */
#technologies .section-body {
  text-align: center;
}

#technologies .racom-problem,
#technologies .racom-solution {
  text-align: left;
}

#technologies .section-body > .lifecycle-strip,
#technologies .section-body > .web-access-strip,
#technologies .section-body > .toolbox-brochure {
  max-width: 100%;
}

/* RaCom strapline — bold statement */
.racom-strapline {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.2rem !important;
  font-weight: 900 !important;
  color: var(--accent);
  text-align: center !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: -0.5rem auto 1.5rem !important;
  line-height: 1.2;
  max-width: 700px;
}

/* Feedback loop SVG — centred */
.feedback-loop-container {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  max-width: 280px;
}

.feedback-loop-container svg {
  width: 100%;
  height: auto;
}

/* Lifecycle keyword strip */
.lifecycle-strip {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  font-weight: 600;
  color: var(--accent);
  text-align: center;
  letter-spacing: 0.12em;
  margin-bottom: 2rem;
}

/* Web access strip */
.web-access-strip {
  background: var(--off-white);
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-align: center;
  padding: 1.4rem 2rem;
  border-radius: 8px;
  border-top: 3px solid var(--accent);
  margin-bottom: 2.5rem;
  font-size: clamp(1.4rem, 1.8vw, 1.7rem);
}

/* Module strapline within tech cards */
.module-strapline {
  font-weight: 700;
  color: var(--navy);
  font-size: 1.5rem;
}

/* Video coming soon placeholder */
.video-coming-soon {
  background: var(--grey-light) !important;
  color: var(--grey-text) !important;
  border-left-color: var(--grey-text) !important;
  font-style: italic;
}

/* Overall toolbox brochure link */
.toolbox-brochure {
  text-align: center;
  margin-bottom: 2.5rem;
}

.toolbox-brochure a {
  display: inline-block;
  padding: 1.2rem 3rem;
  background: linear-gradient(135deg, var(--accent), var(--navy-mid));
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.5rem;
  border-radius: 8px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.toolbox-brochure a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 139, 192, 0.35);
}

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

.tech-feature li {
  font-size: 1.5rem;
  padding: 1.2rem 1.5rem;
  background: var(--off-white);
  border-radius: 8px;
  border-left: 3px solid var(--accent);
  color: var(--text-dark);
  font-weight: 500;
}

/* Video trigger button styled as a list item */
.video-trigger {
  cursor: pointer;
  background: var(--accent) !important;
  color: var(--white) !important;
  border-left-color: var(--navy) !important;
  transition: background var(--transition), transform var(--transition);
}

.video-trigger:hover {
  background: var(--navy-mid) !important;
  transform: translateX(4px);
}

.video-trigger.video-coming-soon {
  cursor: default;
  opacity: 0.6;
  font-style: italic;
}

.video-trigger.video-coming-soon:hover {
  background: var(--accent) !important;
  transform: none;
}

/* Brochure download trigger — same style as video triggers */
.brochure-trigger {
  cursor: pointer;
  background: var(--accent) !important;
  color: var(--white) !important;
  border-left-color: var(--navy) !important;
  transition: background var(--transition), transform var(--transition);
}

.brochure-trigger:hover {
  background: var(--navy-mid) !important;
  transform: translateX(4px);
}

.brochure-trigger a {
  color: inherit;
  text-decoration: none;
  display: block;
}

/* ═══ RACOM SECTION LEAD-IN ═══ */
.racom-intro,
.racom-problem-statement {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 2vw, 2rem);
  font-weight: 700;
  color: var(--accent);
  text-align: center;
  line-height: 1.5;
  max-width: 700px;
  margin: 0 auto 1.5rem;
}

.racom-problem-statement {
  margin-bottom: 2.5rem;
}

/* ═══ CONTRAST BOXES (Legacy vs RaCom) ═══ */
.contrast-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  text-align: left;
}

.contrast-box {
  padding: 2.5rem;
  border-radius: var(--border-radius);
  border-left: 5px solid;
}

.contrast-box h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  letter-spacing: 0.05em;
}

.contrast-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contrast-box li {
  font-size: 1.5rem;
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.contrast-box li::before {
  flex-shrink: 0;
  font-weight: 700;
  font-size: 1.6rem;
}

.contrast-legacy {
  border-left-color: #dc2626;
}

.contrast-legacy h3 { color: #f87171; }
.contrast-legacy li::before { content: '\00D7'; color: #dc2626; }

.contrast-racom {
  border-left-color: #22c55e;
}

.contrast-racom h3 { color: #4ade80; }
.contrast-racom li::before { content: '\2713'; color: #22c55e; }

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

/* ═══ LIFECYCLE SECTION (wheel + info) ═══ */
.lifecycle-section {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
  margin: 2rem 0 3rem;
  text-align: left;
  padding-left: 10rem;
}

.lifecycle-wheel {
  display: flex;
  justify-content: center;
  max-width: 280px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.lifecycle-wheel:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 12px rgba(46, 139, 192, 0.3));
}

.lifecycle-wheel svg {
  width: 100%;
  height: auto;
}

.lifecycle-info h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.lifecycle-info ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.lifecycle-info li {
  font-size: 1.5rem;
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text-dark);
}

.lifecycle-info li::before {
  content: '\2713';
  color: #22c55e;
  font-weight: 700;
  font-size: 1.4rem;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .lifecycle-section {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .lifecycle-wheel { margin: 0 auto; }
  .lifecycle-info li { justify-content: center; }
}

/* ═══ PRODUCTIVITY CALLOUT ═══ */
.productivity-callout {
  text-align: center;
  margin: 0 auto 2.5rem;
  max-width: 850px;
  padding: 2rem 2.5rem;
  background: var(--off-white);
  border-radius: var(--border-radius);
  border-top: 3px solid var(--accent);
}

.productivity-callout p {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.4rem, 1.8vw, 1.7rem) !important;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.6 !important;
  margin-bottom: 0 !important;
  max-width: 100% !important;
}

/* ═══ LIFECYCLE ANIMATION ═══ */
.lifecycle-hint {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--accent);
  margin-top: 0.5rem;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  animation: pulseHint 2s ease-in-out infinite;
}

@keyframes pulseHint {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.lifecycle-wheel:hover .lifecycle-hint {
  opacity: 1;
  animation: none;
}

/* Animation states */
.lifecycle-wheel.animating .wheel-stage,
.lifecycle-wheel.animating .wheel-centre {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.lifecycle-wheel.animating .wheel-stage.visible,
.lifecycle-wheel.animating .wheel-centre.visible {
  opacity: 1;
}

/* Lifecycle description during animation */
.lifecycle-desc {
  text-align: left;
}

.lifecycle-desc-item {
  opacity: 0;
  transition: opacity 0.5s ease;
  position: absolute;
}

.lifecycle-desc-item.visible {
  opacity: 1;
}

.lifecycle-desc-stage {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.3rem;
}

.lifecycle-desc-module {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.3rem, 1.8vw, 1.6rem);
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.8rem;
}

.lifecycle-desc-text {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.4rem, 1.8vw, 1.6rem);
  color: var(--text-body);
  line-height: 1.6;
}

.lifecycle-desc-final {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.lifecycle-desc-final.visible {
  opacity: 1;
}

.lifecycle-desc-final p {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.4rem, 1.8vw, 1.7rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.5;
}

.lifecycle-replay {
  display: none;
  margin-top: 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--accent);
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.3s ease;
}

.lifecycle-replay:hover {
  color: var(--navy);
}

.lifecycle-replay.visible {
  display: inline-block;
}

/* ═══ LIFECYCLE MODAL ═══ */
.lifecycle-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 101;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lifecycle-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lifecycle-modal-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 3rem;
  cursor: pointer;
  line-height: 1;
  z-index: 2;
  transition: color 0.3s ease;
}

.lifecycle-modal-close:hover {
  color: var(--white);
}

.lifecycle-modal-inner {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: 0 20px 60px rgba(11, 29, 58, 0.4);
  padding: 3rem;
  max-width: 900px;
  width: 90%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.lifecycle-modal-wheel svg {
  width: 100%;
  height: auto;
}

.lifecycle-modal-desc {
  position: relative;
  min-height: 18rem;
}

@media (max-width: 768px) {
  .lifecycle-modal-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }
  .lifecycle-modal-desc {
    min-height: 14rem;
  }
}

/* ═══ MODULE PILLS ═══ */
.modules-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 2.2vw, 2rem);
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin: 3rem 0 2rem;
  background: var(--off-white);
  padding: 1.4rem 2rem;
  border-radius: 8px;
  border-top: 3px solid var(--accent);
}

.module-group {
  margin-bottom: 2rem;
  text-align: center;
}

.module-group-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--grey-text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.module-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.module-pill {
  display: inline-block;
  padding: 1.4rem 2.5rem;
  background: var(--off-white);
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  border: 1px solid var(--grey-light);
  border-top: 3px solid var(--accent);
  border-radius: 8px;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.module-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(46, 139, 192, 0.2);
  background: var(--white);
}

/* ═══ CORE OUTCOMES ═══ */
.outcomes-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 2.2vw, 2rem);
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin: 3rem 0 1.5rem;
  background: var(--off-white);
  padding: 1.4rem 2rem;
  border-radius: 8px;
  border-top: 3px solid var(--accent);
}

.core-outcomes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.outcome-card {
  background: var(--off-white);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  border-top: 3px solid var(--accent);
}

.outcome-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.outcome-card p {
  font-size: 1.4rem;
  color: var(--text-dark);
  line-height: 1.5;
}

.outcome-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
}

.outcome-bullets li {
  font-size: 1.4rem;
  color: var(--text-dark);
  line-height: 1.5;
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}

.outcome-bullets li::before {
  content: '\2713';
  color: #22c55e;
  font-weight: 700;
  flex-shrink: 0;
}

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

/* ═══ ENGAGEMENT SECTION ═══ */
.engagement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
  text-align: left;
}

.engagement-card {
  background: var(--off-white);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  border-top: 3px solid var(--accent);
}

.engagement-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1rem;
}

.engagement-card p {
  font-size: 1.5rem;
  line-height: 1.7;
}

p.smart-import-line {
  text-align: center;
  font-weight: 600;
  color: var(--navy);
  font-size: 1.6rem;
  padding: 1.5rem 2rem;
  background: var(--off-white);
  border-radius: 8px;
  border-top: 3px solid var(--accent);
  line-height: 1.8;
  max-width: 100% !important;
}

.smart-import-line strong {
  color: var(--accent);
  letter-spacing: 0.05em;
}

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

/* ═══ MODULE MODAL CONTENT ═══ */
.service-modal .modal-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}

.service-modal .modal-body li {
  font-size: 1.5rem;
  padding: 1rem 1.5rem;
  background: #ffffff;
  border-radius: 6px;
  border-left: 3px solid var(--accent);
  color: #1a2332;
}

.modal-video-trigger {
  cursor: pointer;
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-size: 1.4rem;
  font-weight: 600;
  display: block;
  width: 100%;
  text-align: left;
  margin-bottom: 0.5rem;
  transition: background var(--transition);
  font-family: 'Inter', sans-serif;
}

.modal-video-trigger:hover {
  background: #247aa8;
}

.modal-video-coming-soon {
  opacity: 0.5;
  cursor: default;
  font-style: italic;
}

.modal-video-coming-soon:hover {
  background: var(--accent);
}

.modal-brochure-link {
  display: inline-block;
  margin-top: 1rem;
  padding: 1rem 2rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: #2e8bc0;
  border: 1px solid #2e8bc0;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.modal-brochure-link:hover {
  background: #2e8bc0;
  color: #ffffff;
}

/* ═══ PRICING SECTION ═══ */
.pricing-comparison {
  text-align: center;
  font-size: clamp(1.4rem, 1.8vw, 1.8rem);
  color: var(--white);
  line-height: 1.8;
  margin-bottom: 3rem;
  max-width: 100% !important;
}

.pricing-enterprise {
  background: linear-gradient(135deg, #475569, #334155);
  border-radius: var(--border-radius);
  padding: 3rem;
  text-align: center;
  margin-bottom: 3rem;
}

.pricing-enterprise h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2rem;
}

.pricing-options {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.pricing-option {
  text-align: center;
}

.pricing-amount {
  font-family: 'Montserrat', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
}

.pricing-period {
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.5rem;
}

.pricing-detail {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.3rem;
}

.pricing-or {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
}

.pricing-includes {
  margin-top: 2rem;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.03em;
}

#pricing {
  background: linear-gradient(160deg, #3d4f65 0%, #5b6b7d 100%) !important;
}

#pricing .section-title {
  color: var(--white);
}

#pricing .section-title::after {
  background: #94a3b8;
}

.pricing-arena-strapline {
  text-align: center;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  max-width: 100% !important;
}

.pricing-arena-single {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.pricing-arena-single .pricing-arena {
  width: 100%;
  max-width: 800px;
}

.pricing-arenas {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.pricing-racom-table {
  margin: 0 auto 3rem;
  max-width: 900px;
}

.pricing-racom-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.4rem;
}

.pricing-racom-table th {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--white);
  background: rgba(30, 41, 59, 0.6);
  padding: 1.2rem 1.5rem;
  text-align: left;
  border-bottom: 2px solid #64748b;
}

.pricing-racom-table td {
  padding: 1rem 1.5rem;
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  vertical-align: top;
}

.pricing-racom-table .table-section-header td {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #cbd5e1;
  background: rgba(51, 65, 85, 0.4);
  padding: 0.8rem 1.5rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.pricing-racom-table .table-note {
  display: block;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.3rem;
  font-style: italic;
}

.pricing-racom-table .table-na {
  color: #f87171;
  font-weight: 600;
}

.pricing-arena {
  background: #f4f6f9;
  border: 1px solid rgba(100, 116, 139, 0.3);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.arena-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 1.2rem 1.5rem;
  margin: 0;
}

.arena-legacy {
  background: #1e293b;
  color: #f87171;
}

.arena-body {
  padding: 1.5rem;
  background: #f4f6f9;
}

.arena-body .pricing-feature-item {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
  color: #334155;
}

.pricing-cross {
  color: #dc2626;
  font-weight: 700;
  font-size: 1.6rem;
  flex-shrink: 0;
}

.pricing-killer-line {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #e2e8f0;
  margin: 2.5rem 0;
  max-width: 100% !important;
}

.pricing-module-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.8rem;
  font-style: italic;
}

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

.pricing-section-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 1.5rem;
}

.pricing-modules {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.pricing-module-card {
  background: #1e293b;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-top: 3px solid #94a3b8;
  border-radius: var(--border-radius);
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.pricing-module-card .pricing-module-desc {
  flex: 1;
}

.pricing-module-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 1rem;
}

.pricing-module-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
}

.pricing-module-price span {
  display: block;
  font-size: 1.2rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.4rem;
}

.pricing-pickmix {
  text-align: center;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.7);
  padding: 1.5rem;
  background: #1e293b;
  border-radius: 8px;
  margin-bottom: 2.5rem;
}

.pricing-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.pricing-feature-item {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.pricing-tick {
  color: #22c55e;
  font-weight: 700;
  font-size: 1.6rem;
  flex-shrink: 0;
}

.pricing-consultancy {
  text-align: center;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.7);
  padding: 1.5rem;
  background: #1e293b;
  border-radius: 8px;
}

.pricing-consultancy a {
  color: #93c5fd;
  text-decoration: none;
  font-weight: 600;
}

.pricing-consultancy a:hover {
  text-decoration: underline;
}

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

/* Video modal */
.video-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.92);
  width: min(900px, 90vw);
  background: var(--navy);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 20px 60px rgba(11, 29, 58, 0.5);
  z-index: 101;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.video-modal.active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.video-modal-close {
  position: absolute;
  top: -1rem;
  right: -1rem;
  width: 3.5rem;
  height: 3.5rem;
  background: var(--white);
  border: none;
  border-radius: 50%;
  color: var(--navy);
  font-size: 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform var(--transition), background var(--transition);
}

.video-modal-close:hover {
  transform: scale(1.1);
  background: var(--off-white);
}

/* Video container inside modal — responsive 16:9 */
.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

/* ============================================
   HERO WATCH-VIDEO CTA
   ============================================ */
.hero-watch-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2.5rem;
  padding: 0.7rem 1.4rem;
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  font-weight: 500;
  color: var(--white);
  background: rgba(46, 139, 192, 0.22);
  border: 1px solid rgba(95, 180, 229, 0.55);
  border-radius: 999px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.hero-watch-link:hover {
  background: rgba(46, 139, 192, 0.4);
  border-color: var(--accent-light);
  transform: translateY(-1px);
}

.hero-watch-link svg {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--accent-light);
  flex-shrink: 0;
}

/* ============================================
   HOOK VIDEO CARD (top of RaCom section)
   ============================================ */
.hook-video-card {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.5rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto 3rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(11, 29, 58, 0.12);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.hook-video-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 50px rgba(11, 29, 58, 0.18);
}

.hook-video-poster {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--navy);
}

.hook-video-poster img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.hook-video-card:hover .hook-video-poster img {
  transform: scale(1.03);
}

.hook-video-badge {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  padding: 0.35rem 0.7rem;
  background: var(--accent);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.hook-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease, background 0.3s ease;
}

.hook-video-card:hover .hook-video-play {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--white);
}

.hook-video-play svg {
  width: 2.4rem;
  height: 2.4rem;
  color: var(--accent);
  margin-left: 0.25rem; /* visual centring of play triangle */
}

.hook-video-caption h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  color: var(--navy);
  margin: 0 0 0.8rem;
  line-height: 1.2;
}

.hook-video-caption p {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--navy-mid);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 768px) {
  .hook-video-card {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .hook-video-play {
    width: 4rem;
    height: 4rem;
  }
  .hook-video-play svg {
    width: 1.8rem;
    height: 1.8rem;
  }
}


/* ============================================
   TRAINING — Course Grid
   ============================================ */
.training-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.training-item {
  background: var(--white);
  padding: 2rem 2.5rem;
  border-radius: var(--border-radius);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--navy);
  box-shadow: 0 2px 8px rgba(11, 29, 58, 0.06);
  border-left: 3px solid var(--accent);
  transition: transform var(--transition), box-shadow var(--transition);
}

.training-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(11, 29, 58, 0.1);
}


/* ============================================
   QUALITY
   ============================================ */
.quality-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1.2rem;
}

.quality-content p {
  font-size: clamp(1.4rem, 1.8vw, 1.8rem);
  line-height: 1.8;
  max-width: 75ch;
}


/* ============================================
   PROJECTS — Project Cards
   ============================================ */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.project-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 12px rgba(11, 29, 58, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--navy-mid));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.project-card:hover::before {
  transform: scaleX(1);
}

.project-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(11, 29, 58, 0.1);
}

.project-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.8rem;
}

.project-card p {
  font-size: 1.4rem;
  color: var(--text-body);
  line-height: 1.7;
}


/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 600px;
}

.form-row {
  display: flex;
  gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1.4rem 1.8rem;
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  color: var(--text-dark);
  background: var(--off-white);
  border: 2px solid var(--grey-light);
  border-radius: 8px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(46, 139, 192, 0.15);
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.4rem 3.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(135deg, var(--accent), var(--navy-mid));
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition);
  align-self: flex-start;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 139, 192, 0.35);
}

.btn-submit:active {
  transform: translateY(0);
}


/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  width: 100%;
  background: linear-gradient(135deg, #2a4060 0%, #354d6e 40%, #3e5a82 100%);
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(30deg, #ffffff 12%, transparent 12.5%, transparent 87%, #ffffff 87.5%),
    linear-gradient(150deg, #ffffff 12%, transparent 12.5%, transparent 87%, #ffffff 87.5%),
    linear-gradient(30deg, #ffffff 12%, transparent 12.5%, transparent 87%, #ffffff 87.5%),
    linear-gradient(150deg, #ffffff 12%, transparent 12.5%, transparent 87%, #ffffff 87.5%),
    linear-gradient(60deg, #ffffff77 25%, transparent 25.5%, transparent 75%, #ffffff77 75%),
    linear-gradient(60deg, #ffffff77 25%, transparent 25.5%, transparent 75%, #ffffff77 75%);
  background-size: 80px 140px;
  background-position: 0 0, 0 0, 40px 70px, 40px 70px, 0 0, 40px 70px;
  pointer-events: none;
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.footer-logo {
  height: 40px;
  width: auto;
  opacity: 0.9;
}

.footer-text {
  font-size: 1.4rem;
  color: #94a3b8;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--grey-text);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--accent-light);
}

.footer-copyright {
  font-size: 1.2rem;
  color: #94a3b8;
  opacity: 0.85;
  text-align: center;
}


/* ============================================
   PURCHASE MODAL
   ============================================ */
.btn-get-started {
  display: inline-block;
  padding: 1.6rem 4rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn-get-started:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.4);
}

.purchase-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.92);
  width: min(680px, 90vw);
  max-height: 90vh;
  overflow-y: auto;
  background: var(--white);
  color: var(--text-dark);
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: 0 20px 60px rgba(11, 29, 58, 0.4);
  z-index: 101;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.purchase-modal.active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.purchase-modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--grey-text);
  font-size: 2.4rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.5rem;
  transition: color var(--transition);
}

.purchase-modal-close:hover {
  color: var(--navy);
}

.purchase-modal h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.purchase-modal .modal-subtitle {
  font-size: 1.3rem;
  color: var(--grey-text);
  margin-bottom: 2rem;
}

/* Step indicators */
.purchase-steps {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.purchase-step-dot {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: var(--grey-light);
  transition: background 0.3s ease;
}

.purchase-step-dot.active {
  background: var(--accent);
}

.purchase-step-dot.done {
  background: #22c55e;
}

/* Step content */
.purchase-step {
  display: none;
}

.purchase-step.active {
  display: block;
}

.purchase-step h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

/* Step 1: Purchase type cards */
.type-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.type-card {
  background: var(--off-white);
  border: 2px solid var(--grey-light);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
}

.type-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 139, 192, 0.15);
}

.type-card.selected {
  border-color: var(--accent);
  background: rgba(46, 139, 192, 0.06);
}

.type-card .type-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.3rem;
}

.type-card .type-desc {
  font-size: 1.2rem;
  color: var(--grey-text);
}

/* Step 2: App selection */
.app-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.app-checkbox-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: var(--off-white);
  border: 2px solid var(--grey-light);
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition);
}

.app-checkbox-row:hover {
  border-color: var(--accent);
}

.app-checkbox-row.checked {
  border-color: var(--accent);
  background: rgba(46, 139, 192, 0.06);
}

.app-checkbox-row input[type="checkbox"] {
  width: 1.8rem;
  height: 1.8rem;
  accent-color: var(--accent);
  cursor: pointer;
}

.app-checkbox-row .app-name {
  flex: 1;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
}

.app-checkbox-row .app-price-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}

.licence-count {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.licence-count label {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
}

.licence-count select {
  padding: 0.8rem 1.2rem;
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  border: 2px solid var(--grey-light);
  border-radius: 6px;
  background: var(--white);
  color: var(--text-dark);
  cursor: pointer;
}

.licence-count select:focus {
  border-color: var(--accent);
  outline: none;
}

.discount-note {
  font-size: 1.2rem;
  color: #22c55e;
  font-weight: 600;
  margin-bottom: 1rem;
}

.price-summary {
  background: var(--navy);
  border-radius: 8px;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.price-summary .price-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.price-summary .price-total {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
}

.price-summary .price-period {
  font-size: 1.2rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
}

.price-breakdown {
  font-size: 1.2rem;
  color: var(--grey-text);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* Step 3: Exhibition + promo */
.exhibition-section {
  margin-bottom: 2rem;
}

.exhibition-check {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: var(--off-white);
  border-radius: 8px;
  margin-bottom: 1rem;
  cursor: pointer;
}

.exhibition-check input[type="checkbox"] {
  width: 1.8rem;
  height: 1.8rem;
  accent-color: var(--accent);
  cursor: pointer;
}

.exhibition-check label {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
}

.exhibition-select {
  margin-top: 1rem;
  display: none;
}

.exhibition-select.visible {
  display: block;
}

.exhibition-select select {
  width: 100%;
  padding: 1rem 1.2rem;
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  border: 2px solid var(--grey-light);
  border-radius: 6px;
  background: var(--white);
  color: var(--text-dark);
}

.exhibition-select select:focus {
  border-color: var(--accent);
  outline: none;
}

.promo-section {
  margin-bottom: 2rem;
}

.promo-section label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.promo-section input {
  width: 100%;
  padding: 1rem 1.2rem;
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  border: 2px solid var(--grey-light);
  border-radius: 6px;
  background: var(--white);
  color: var(--text-dark);
}

.promo-section input:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(46, 139, 192, 0.15);
}

/* Step 4: Contact details */
.purchase-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.purchase-form .form-row {
  display: flex;
  gap: 1.2rem;
}

.purchase-form input {
  width: 100%;
  padding: 1.2rem 1.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  color: var(--text-dark);
  background: var(--off-white);
  border: 2px solid var(--grey-light);
  border-radius: 8px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.purchase-form input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(46, 139, 192, 0.15);
}

.purchase-form textarea {
  width: 100%;
  padding: 1.2rem 1.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  color: var(--text-dark);
  background: var(--off-white);
  border: 2px solid var(--grey-light);
  border-radius: 8px;
  outline: none;
  resize: vertical;
  min-height: 80px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.purchase-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(46, 139, 192, 0.15);
}

/* Navigation buttons */
.purchase-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--grey-light);
}

.btn-purchase-back {
  padding: 1rem 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--grey-text);
  background: none;
  border: 2px solid var(--grey-light);
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-purchase-back:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-purchase-next {
  padding: 1rem 2.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(135deg, var(--accent), var(--navy-mid));
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-purchase-next:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(46, 139, 192, 0.3);
}

.btn-purchase-submit {
  padding: 1.2rem 3rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-purchase-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

.purchase-success {
  text-align: center;
  padding: 3rem 2rem;
}

.purchase-success h3 {
  font-size: 2rem;
  color: #22c55e;
  margin-bottom: 1rem;
}

.purchase-success p {
  font-size: 1.5rem;
  color: var(--text-body);
  line-height: 1.7;
}


/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================
   RESPONSIVE — Tablet
   ============================================ */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }

  .highlight-grid,
  .services-grid,
  .projects-grid,
  .training-grid {
    grid-template-columns: 1fr;
  }

  .icon-nav {
    gap: 1rem;
    padding: 2rem 1rem;
  }

  .icon-card {
    min-width: 70px;
    padding: 1rem 0.8rem;
  }
}


/* ============================================
   RESPONSIVE — Mobile
   ============================================ */
@media (max-width: 480px) {
  html {
    font-size: 55%;
  }

  .hero {
    padding: 3rem 1.5rem 2rem;
  }

  .content-section {
    padding: 3rem 1.5rem;
  }

  .icon-card span {
    font-size: 1rem;
  }
}
