/* =========================================================
   MODELX PVT LTD
   CENTRALIZED LANDING PAGE STYLES
   HTML STRUCTURE: FROZEN
   UI / CSS ONLY
   ========================================================= */

/* =========================================================
   DESIGN TOKENS
   ========================================================= */

:root {
 --mx-green-950: #062b21;
 --mx-green-900: #073b2d;
 --mx-green-800: #0a4b38;
 --mx-green-700: #0d5a43;
 --mx-green-100: #e8f0eb;

 --mx-gold-500: #c8a04a;
 --mx-gold-400: #d9b967;
 --mx-gold-200: #ead8a8;

 --mx-cream: #f7f3e9;
 --mx-paper: #fbfaf7;
 --mx-white: #ffffff;

 --mx-ink: #17221d;
 --mx-muted: #68756f;
 --mx-line: #dfe5e0;

 --mx-shadow: 0 22px 65px rgba(7, 59, 45, 0.1);

 --mx-shadow-heavy: 0 30px 75px rgba(7, 59, 45, 0.16);

 --mx-radius-lg: 30px;
 --mx-radius-md: 22px;
 --mx-radius-sm: 16px;

 --mx-container: 1240px;
}

/* =========================================================
   RESET
   ========================================================= */

* {
 margin: 0;
 padding: 0;
 box-sizing: border-box;
}

html {
 scroll-behavior: smooth;
}

body {
 min-width: 320px;

 overflow-x: hidden;

 background: var(--mx-paper);

 color: var(--mx-ink);

 font-family: "DM Sans", sans-serif;

 font-size: 16px;

 line-height: 1.6;
}

body,
button,
input,
textarea {
 font-family: "DM Sans", sans-serif;
}

h1,
h2,
h3,
h4,
.brand {
 font-family: "Manrope", sans-serif;
}

a {
 color: inherit;
 text-decoration: none;
}

button {
 border: 0;
 cursor: pointer;
}

img {
 display: block;
 max-width: 100%;
}

/* =========================================================
   COMMON CONTAINER
   ========================================================= */

.container {
 width: min(calc(100% - 48px), var(--mx-container));

 margin: 0 auto;
}

/* =========================================================
   HEADER
   ========================================================= */

.site-header {
 position: absolute;

 top: 0;
 left: 0;
 right: 0;

 z-index: 100;

 color: var(--mx-white);
}

.nav-wrap {
 min-height: 94px;

 display: flex;

 align-items: center;

 justify-content: space-between;

 gap: 30px;
}

/* Logo */

.brand {
 display: flex;

 align-items: center;

 flex-shrink: 0;
}

.brand img {
 width: 200px;
 height: auto;

 object-fit: contain;

 border-radius: 8px;

 transition: transform 0.3s ease, opacity 0.3s ease;
}

.brand:hover img {
 transform: translateY(-2px);

 opacity: 0.94;
}

/* Desktop navigation */

.desktop-nav {
 display: flex;

 align-items: center;

 gap: 34px;

 margin-left: auto;
}

.desktop-nav a {
 position: relative;

 color: rgba(255, 255, 255, 0.86);

 font-size: 14px;

 font-weight: 700;

 transition: color 0.25s ease, opacity 0.25s ease;
}

.desktop-nav a::after {
 content: "";

 position: absolute;

 left: 0;
 bottom: -8px;

 width: 0;
 height: 2px;

 background: var(--mx-gold-400);

 transition: width 0.25s ease;
}

.desktop-nav a:hover {
 color: var(--mx-white);
}

.desktop-nav a:hover::after {
 width: 100%;
}

/* Employee Login */

.nav-button {
 display: inline-flex;

 align-items: center;

 justify-content: center;

 gap: 10px;

 min-height: 48px;

 padding: 0 22px;

 border: 1px solid rgba(255, 255, 255, 0.25);

 border-radius: 999px;

 color: var(--mx-white);

 font-size: 14px;

 font-weight: 800;

 transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease,
  transform 0.3s ease;
}

.nav-button span {
 color: var(--mx-gold-400);

 transition: transform 0.3s ease;
}

.nav-button:hover {
 background: var(--mx-white);

 border-color: var(--mx-white);

 color: var(--mx-green-900);

 transform: translateY(-2px);
}

.nav-button:hover span {
 transform: translate(3px, -3px);
}

/* Mobile button */

.mobile-menu-button {
 display: none;

 width: 44px;
 height: 44px;

 align-items: center;
 justify-content: center;

 flex-direction: column;

 gap: 5px;

 border-radius: 50%;

 background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-button span {
 width: 18px;
 height: 2px;

 border-radius: 10px;

 background: var(--mx-white);

 transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-menu-button.active span:nth-child(1) {
 transform: translateY(7px) rotate(45deg);
}

.mobile-menu-button.active span:nth-child(2) {
 opacity: 0;
}

.mobile-menu-button.active span:nth-child(3) {
 transform: translateY(-7px) rotate(-45deg);
}

/* Mobile navigation */

.mobile-nav {
 display: none;

 padding: 12px 20px 24px;

 background: var(--mx-green-950);

 border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav.open {
 display: flex;

 flex-direction: column;

 gap: 5px;
}

.mobile-nav a {
 padding: 13px;

 border-radius: 10px;

 color: var(--mx-white);

 font-size: 14px;

 font-weight: 700;

 transition: background 0.25s ease, color 0.25s ease;
}

.mobile-nav a:hover {
 background: rgba(255, 255, 255, 0.08);

 color: var(--mx-gold-400);
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
 position: relative;

 min-height: 790px;

 padding: 170px 0 100px;

 overflow: hidden;

 color: var(--mx-white);

 background: radial-gradient(
   circle at 78% 35%,
   rgba(200, 160, 74, 0.16),
   transparent 25%
  ),
  linear-gradient(125deg, var(--mx-green-950), var(--mx-green-900) 55%, #0b4a37);
}

.hero::before {
 content: "";

 position: absolute;

 inset: 0;

 opacity: 0.12;

 background-image: linear-gradient(
   rgba(255, 255, 255, 0.15) 1px,
   transparent 1px
  ),
  linear-gradient(90deg, rgba(255, 255, 255, 0.15) 1px, transparent 1px);

 background-size: 72px 72px;

 mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.hero-glow {
 position: absolute;

 border-radius: 50%;

 pointer-events: none;
}

.hero-glow-one {
 width: 500px;
 height: 500px;

 right: -180px;
 top: 100px;

 border: 1px solid rgba(228, 200, 121, 0.17);
}

.hero-glow-two {
 width: 280px;
 height: 280px;

 left: -150px;
 bottom: -120px;

 border: 1px solid rgba(228, 200, 121, 0.12);
}

/* Hero grid */

.hero-grid {
 position: relative;

 z-index: 2;

 display: grid;

 grid-template-columns:
  minmax(0, 1fr)
  minmax(420px, 0.9fr);

 align-items: center;

 gap: 80px;
}

/* Hero text */

.eyebrow {
 display: flex;

 align-items: center;

 gap: 11px;

 color: var(--mx-green-700);

 font-size: 12px;

 font-weight: 800;

 letter-spacing: 0.18em;
}

.eyebrow.light {
 color: var(--mx-gold-200);
}

.eyebrow-dot {
 width: 7px;
 height: 7px;

 flex: 0 0 7px;

 border-radius: 50%;

 background: var(--mx-gold-400);

 box-shadow: 0 0 0 5px rgba(200, 160, 74, 0.12);
}

.eyebrow-line {
 width: 35px;
 height: 1px;

 background: var(--mx-gold-500);
}

.hero h1 {
 max-width: 760px;

 margin-top: 24px;

 font-size: clamp(55px, 6.6vw, 92px);

 line-height: 0.98;

 letter-spacing: -0.065em;
}

.hero h1 span {
 display: block;

 color: var(--mx-gold-400);
}

.hero-text {
 max-width: 660px;

 margin-top: 30px;

 color: rgba(255, 255, 255, 0.75);

 font-size: 18px;

 line-height: 1.8;
}

/* Hero buttons */

.hero-actions {
 display: flex;

 align-items: center;

 gap: 28px;

 margin-top: 38px;
}

.button {
 min-height: 55px;

 display: inline-flex;

 align-items: center;

 justify-content: center;

 gap: 20px;

 padding: 0 25px;

 border-radius: 999px;

 font-size: 14px;

 font-weight: 800;

 transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.button span {
 font-size: 18px;

 transition: transform 0.3s ease;
}

.button:hover {
 transform: translateY(-3px);
}

.button:hover span {
 transform: translateX(4px);
}

.button-gold {
 background: var(--mx-gold-400);

 color: var(--mx-green-950);

 box-shadow: 0 15px 35px rgba(200, 160, 74, 0.22);
}

.button-gold:hover {
 background: #e5c879;

 box-shadow: 0 20px 45px rgba(200, 160, 74, 0.3);
}

.button-dark {
 background: var(--mx-green-900);

 color: var(--mx-white);
}

.button-dark:hover {
 background: var(--mx-green-800);
}

/* Text link */

.text-link {
 display: inline-flex;

 align-items: center;

 gap: 10px;

 font-size: 14px;

 font-weight: 700;
}
.light-link {
 min-height: 55px;
 display: inline-flex;
 align-items: center;
 justify-content: center;
 gap: 12px;

 padding: 0 22px;

 border: 1px solid rgba(255, 255, 255, 0.28);
 border-radius: 999px;

 color: #fff;

 background: rgba(255, 255, 255, 0.08);

 backdrop-filter: blur(10px);

 box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08),
  0 10px 25px rgba(0, 0, 0, 0.08);

 transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease,
  box-shadow 0.3s ease;
}

.light-link:hover {
 color: #fff;

 background: rgba(255, 255, 255, 0.14);

 border-color: rgba(228, 200, 121, 0.65);

 transform: translateY(-3px);

 box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.light-link span {
 color: var(--gold-400);
 transition: transform 0.3s ease;
}

.light-link:hover span {
 transform: translateY(3px);
}
.text-link span {
 color: var(--mx-gold-400);

 transition: transform 0.25s ease;
}

.text-link:hover span {
 transform: translateX(4px);
}

/* Hero trust */

.hero-mini-trust {
 display: flex;

 align-items: center;

 gap: 14px;

 margin-top: 60px;
}

.mini-avatars {
 display: flex;
}

.mini-avatars span {
 width: 32px;
 height: 32px;

 display: grid;

 place-items: center;

 margin-left: -6px;

 border: 2px solid var(--mx-green-900);

 border-radius: 50%;

 background: var(--mx-gold-400);

 color: var(--mx-green-950);

 font-size: 10px;

 font-weight: 900;
}

.mini-avatars span:first-child {
 margin-left: 0;
}

.hero-mini-trust p {
 color: rgba(255, 255, 255, 0.55);

 font-size: 12px;
}

.hero-mini-trust strong {
 display: block;

 color: var(--mx-white);

 font-size: 13px;
}

/* =========================================================
   HERO IMAGE
   ========================================================= */

.hero-visual {
 position: relative;

 min-height: 530px;
}

.hero-image-card {
 position: absolute;

 top: 0;
 right: 0;

 width: min(470px, 100%);

 height: 490px;

 overflow: hidden;

 border: 1px solid rgba(255, 255, 255, 0.16);

 border-radius: 32px;

 box-shadow: 0 35px 90px rgba(0, 0, 0, 0.27);

 transform: rotate(2deg);

 transition: transform 0.6s ease;
}

.hero-image-card:hover {
 transform: rotate(0deg) translateY(-4px);
}

.hero-main-image {
 width: 100%;
 height: 100%;

 object-fit: cover;
}

/* Existing HTML uses this class */

.hero-image-overlay {
 position: absolute;

 inset: 0;

 pointer-events: none;

 background: linear-gradient(to top, rgba(6, 43, 33, 0.58), transparent 58%);
}

/* 99% CARD
   IMPORTANT:
   This is positioned relative to .hero-visual,
   NOT .hero-image-card.
*/

.hero-quality-card {
 position: absolute;

 left: -35px;

 top: 95px;

 z-index: 10;

 display: flex;

 align-items: center;

 gap: 13px;

 min-width: 170px;

 padding: 17px 20px;

 border: 1px solid rgba(200, 160, 74, 0.3);

 border-radius: 18px;

 background: rgba(255, 255, 255, 0.97);

 color: var(--mx-green-950);

 box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);

 transition: transform 0.35s ease;
}

.hero-quality-card:hover {
 transform: translateY(-5px);
}

.quality-icon {
 width: 37px;
 height: 37px;

 flex: 0 0 37px;

 display: grid;

 place-items: center;

 border-radius: 50%;

 background: var(--mx-green-700);

 color: var(--mx-white);
}

.quality-icon i {
 font-size: 15px;
}

.quality-content strong,
.quality-content span {
 display: block;
}

.quality-content strong {
 font-size: 23px;

 line-height: 1;
}

.quality-content span {
 margin-top: 4px;

 color: var(--mx-muted);

 font-size: 11px;
}

/* Bottom project card */

.hero-work-card {
 position: absolute;

 right: -20px;

 bottom: 5px;

 z-index: 10;

 width: 220px;

 padding: 22px;

 border-radius: 20px;

 background: var(--mx-gold-400);

 color: var(--mx-green-950);

 box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);

 transition: transform 0.35s ease;
}

.hero-work-card:hover {
 transform: translateY(-5px);
}

.hero-work-card small,
.hero-work-card strong,
.hero-work-card span {
 display: block;
}

.hero-work-card small {
 font-size: 9px;

 font-weight: 900;

 letter-spacing: 0.16em;
}

.hero-work-card strong {
 margin-top: 7px;

 font-family: "Manrope", sans-serif;

 font-size: 18px;
}

.hero-work-card span {
 margin-top: 4px;

 font-size: 11px;

 opacity: 0.7;
}

.hero-bottom-line {
 position: absolute;

 left: 0;
 right: 0;
 bottom: 0;

 height: 1px;

 background: linear-gradient(
  90deg,
  transparent,
  rgba(228, 200, 121, 0.5),
  transparent
 );
}

/* =========================================================
   COMMON SECTIONS
   ========================================================= */

.section {
 position: relative;

 padding: 120px 0;
}

.section-intro {
 max-width: 850px;
}

.section-intro.centered {
 margin: 0 auto 70px;

 text-align: center;
}

.section-intro.centered .eyebrow {
 justify-content: center;
}

.section-intro h2 {
 margin-top: 18px;

 font-size: clamp(42px, 5vw, 68px);

 line-height: 1.04;

 letter-spacing: -0.055em;
}

.section-intro h2 em {
 color: var(--mx-green-700);

 font-style: normal;
}

.section-intro > p {
 max-width: 720px;

 margin: 22px auto 0;

 color: var(--mx-muted);

 font-size: 17px;

 line-height: 1.8;
}

/* =========================================================
   ABOUT
   ========================================================= */

.about {
 overflow: hidden;

 background: var(--mx-cream);
}

.about::before {
 content: "01";

 position: absolute;

 right: -20px;
 top: 100px;

 color: rgba(13, 90, 67, 0.035);

 font-family: "Manrope", sans-serif;

 font-size: 240px;

 font-weight: 800;

 line-height: 1;

 pointer-events: none;
}

.about-grid {
 display: grid;

 grid-template-columns:
  minmax(0, 1fr)
  minmax(0, 1fr);

 align-items: center;

 gap: 85px;
}

/* About visual */

.about-visual {
 position: relative;

 min-height: 590px;
}

.about-image-main {
 position: absolute;

 top: 0;
 left: 30px;

 width: 88%;
 height: 520px;

 overflow: hidden;

 border-radius: 30px;

 box-shadow: var(--mx-shadow);
}

.about-image-main img {
 width: 100%;
 height: 100%;

 object-fit: cover;

 transition: transform 0.6s ease;
}

.about-image-main:hover img {
 transform: scale(1.035);
}

.about-image-main::after {
 content: "";

 position: absolute;

 inset: 0;

 background: linear-gradient(to top, rgba(7, 59, 45, 0.25), transparent 55%);
}

/* About quality card */

.about-experience {
 position: absolute;

 left: 0;
 bottom: 0;

 z-index: 5;

 width: 310px;

 display: flex;

 gap: 17px;

 padding: 22px;

 border-radius: 20px;

 background: var(--mx-white);

 box-shadow: 0 22px 50px rgba(7, 59, 45, 0.16);
}

.experience-number {
 color: var(--mx-gold-500);

 font-family: "Manrope", sans-serif;

 font-size: 20px;

 font-weight: 800;
}

.about-experience strong,
.about-experience p {
 display: block;
}

.about-experience strong {
 color: var(--mx-green-900);

 font-size: 15px;
}

.about-experience p {
 margin-top: 3px;

 color: var(--mx-muted);

 font-size: 12px;

 line-height: 1.5;
}

/* Gold circle + existing SVG icon */

.about-gold-shape {
 position: absolute;

 right: 0;
 bottom: 20px;

 z-index: 2;

 width: 180px;
 height: 180px;

 display: grid;

 place-items: center;

 border-radius: 50%;

 background: var(--mx-gold-200);

 color: var(--mx-green-900);

 box-shadow: 0 20px 45px rgba(200, 160, 74, 0.12);

 transition: transform 0.4s ease;
}

.about-gold-shape:hover {
 transform: rotate(6deg) scale(1.03);
}

.about-gold-shape svg {
 width: 64px;
 height: 64px;

 color: var(--mx-green-900);
}

/* About content */

.about-content {
 position: relative;

 z-index: 5;
}

.about-number {
 color: var(--mx-gold-500);

 font-size: 11px;

 font-weight: 900;

 letter-spacing: 0.15em;
}

.about-content h3 {
 margin-top: 17px;

 color: var(--mx-green-900);

 font-size: clamp(34px, 4vw, 52px);

 line-height: 1.08;

 letter-spacing: -0.045em;
}

.about-content p {
 margin-top: 22px;

 color: var(--mx-muted);

 font-size: 16px;

 line-height: 1.85;
}

.about-points {
 margin: 30px 0;

 border-top: 1px solid var(--mx-line);
}

.about-points div {
 display: flex;

 align-items: center;

 gap: 17px;

 padding: 15px 0;

 border-bottom: 1px solid var(--mx-line);

 transition: padding-left 0.25s ease;
}

.about-points div:hover {
 padding-left: 5px;
}

.about-points span {
 color: var(--mx-gold-500);

 font-size: 11px;

 font-weight: 900;
}

.about-points strong {
 color: var(--mx-green-900);

 font-size: 14px;
}

/* =========================================================
   SERVICES
   ========================================================= */

.services {
 position: relative;
 overflow: hidden;

 background: linear-gradient(180deg, #fbfaf7 0%, #f5f6f2 100%);
}

.services::before {
 content: "SERVICES";

 position: absolute;

 top: 55px;
 right: -10px;

 z-index: 0;

 font-family: "Manrope", sans-serif;

 font-size: clamp(6rem, 12vw, 11rem);

 font-weight: 800;

 line-height: 0.85;

 letter-spacing: -0.09em;

 color: rgba(18, 61, 50, 0.055);

 white-space: nowrap;

 pointer-events: none;
 user-select: none;
}

.services > .container {
 position: relative;
 z-index: 1;
}
.services-grid {
 display: grid;

 grid-template-columns: repeat(3, minmax(0, 1fr));

 gap: 18px;
}

/* Every service card is identical */

.service-card {
 position: relative;

 min-height: 270px;

 padding: 30px;

 overflow: hidden;

 border: 1px solid var(--mx-line);

 border-radius: 24px;

 background: var(--mx-white);

 box-shadow: 0 12px 35px rgba(7, 59, 45, 0.045);

 transition: transform 0.35s ease, border-color 0.35s ease,
  box-shadow 0.35s ease;
}

.service-card::before {
 content: "";

 position: absolute;

 right: -60px;
 bottom: -70px;

 width: 190px;
 height: 190px;

 border-radius: 50%;

 background: rgba(13, 90, 67, 0.045);

 transition: transform 0.4s ease, background 0.4s ease;
}

.service-card:hover {
 transform: translateY(-8px);

 border-color: rgba(200, 160, 74, 0.55);

 box-shadow: 0 25px 55px rgba(7, 59, 45, 0.12);
}

.service-card:hover::before {
 transform: scale(1.3);

 background: rgba(200, 160, 74, 0.09);
}

/* Service top row */

.service-card-top {
 position: relative;

 z-index: 2;

 display: flex;

 align-items: center;

 justify-content: space-between;
}

.service-number {
 color: var(--mx-gold-500);

 font-size: 11px;

 font-weight: 900;

 letter-spacing: 0.12em;
}

.service-arrow {
 color: var(--mx-gold-500);

 font-size: 18px;

 opacity: 0.75;

 transition: transform 0.3s ease, opacity 0.3s ease;
}

.service-card:hover .service-arrow {
 transform: translate(4px, -4px);

 opacity: 1;
}

/* Service icon */

.service-icon {
 position: relative;

 z-index: 2;

 width: 48px;
 height: 48px;

 display: grid;

 place-items: center;

 margin-top: 22px;

 border-radius: 15px;

 background: var(--mx-green-100);

 color: var(--mx-green-900);

 font-size: 19px;

 transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.service-card:hover .service-icon {
 transform: translateY(-3px);

 background: var(--mx-gold-200);

 color: var(--mx-green-950);
}

/* Service content */

.service-card h3 {
 position: relative;

 z-index: 2;

 margin-top: 24px;

 color: var(--mx-green-900);

 font-size: 21px;

 line-height: 1.15;
}

.service-card p {
 position: relative;

 z-index: 2;

 margin-top: 13px;

 color: var(--mx-muted);

 font-size: 14px;

 line-height: 1.7;
}

/* =========================================================
   CAPABILITIES
   ========================================================= */

.capabilities {
 position: relative;

 overflow: hidden;

 padding: 125px 0;

 color: var(--mx-white);

 background: radial-gradient(
   circle at 82% 15%,
   rgba(200, 160, 74, 0.18),
   transparent 25%
  ),
  linear-gradient(125deg, var(--mx-green-950), var(--mx-green-900));
}

.capability-pattern {
 position: absolute;

 width: 650px;
 height: 650px;

 right: -320px;
 top: -250px;

 border: 1px solid rgba(228, 200, 121, 0.15);

 border-radius: 50%;
}

.capability-pattern::after {
 content: "";

 position: absolute;

 inset: 70px;

 border: 1px solid rgba(228, 200, 121, 0.1);

 border-radius: 50%;
}

.capability-grid {
 position: relative;

 z-index: 2;

 display: grid;

 grid-template-columns:
  0.8fr
  1.2fr;

 gap: 100px;

 align-items: start;
}

.capability-intro h2 {
 margin-top: 18px;

 font-size: clamp(43px, 4.8vw, 66px);

 line-height: 1.03;

 letter-spacing: -0.055em;
}

.capability-intro h2 em {
 color: var(--mx-gold-400);

 font-style: normal;
}

.capability-intro p {
 max-width: 500px;

 margin-top: 25px;

 color: rgba(255, 255, 255, 0.65);

 font-size: 17px;

 line-height: 1.8;
}

.capability-intro .button {
 margin-top: 35px;
}

/* Capability list */

.capability-list {
 border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.capability-row {
 display: grid;

 grid-template-columns:
  45px
  1fr
  30px;

 gap: 20px;

 align-items: start;

 padding: 27px 0;

 border-bottom: 1px solid rgba(255, 255, 255, 0.16);

 transition: padding-left 0.3s ease;
}

.capability-row:hover {
 padding-left: 10px;
}

.capability-row > span {
 color: var(--mx-gold-400);

 font-size: 11px;

 font-weight: 900;
}

.capability-row strong {
 font-family: "Manrope", sans-serif;

 font-size: 19px;
}

.capability-row p {
 max-width: 570px;

 margin-top: 6px;

 color: rgba(255, 255, 255, 0.58);

 font-size: 14px;

 line-height: 1.65;
}

.capability-row b {
 color: var(--mx-gold-400);

 font-size: 18px;
}

/* =========================================================
   PROCESS
   ========================================================= */

.process {
 background: var(--mx-cream);
}

.process-track {
 position: relative;

 display: grid;

 grid-template-columns: repeat(4, minmax(0, 1fr));

 gap: 20px;
}

.process-line {
 position: absolute;

 top: 33px;

 left: 12%;
 right: 12%;

 height: 1px;

 background: linear-gradient(
  90deg,
  var(--mx-gold-500),
  var(--mx-green-700),
  var(--mx-gold-500)
 );

 opacity: 0.4;
}

.process-item {
 position: relative;

 z-index: 2;
}

.process-number {
 width: 67px;
 height: 67px;

 display: grid;

 place-items: center;

 border: 1px solid rgba(200, 160, 74, 0.5);

 border-radius: 50%;

 background: var(--mx-cream);

 color: var(--mx-green-900);

 font-family: "Manrope", sans-serif;

 font-size: 15px;

 font-weight: 800;
}

.process-content {
 padding: 30px 20px 0 0;
}

.process-content > span {
 color: var(--mx-gold-500);

 font-size: 10px;

 font-weight: 900;

 letter-spacing: 0.15em;
}

.process-content h3 {
 margin-top: 9px;

 color: var(--mx-green-900);

 font-size: 21px;

 line-height: 1.2;
}

.process-content p {
 margin-top: 11px;

 color: var(--mx-muted);

 font-size: 14px;

 line-height: 1.7;
}

/* =========================================================
   CTA
   ========================================================= */

.cta-section {
 padding: 0 0 120px;

 background: var(--mx-cream);
}

.cta-panel {
 position: relative;

 min-height: 440px;

 display: grid;

 grid-template-columns:
  minmax(0, 1fr)
  260px;

 align-items: center;

 overflow: hidden;

 border-radius: 32px;

 background: var(--mx-green-900);

 color: var(--mx-white);

 box-shadow: var(--mx-shadow-heavy);
}

.cta-panel::before {
 content: "";

 position: absolute;

 inset: 0;

 background: radial-gradient(
  circle at 80% 50%,
  rgba(200, 160, 74, 0.18),
  transparent 30%
 );
}

.cta-orbit {
 position: absolute;

 width: 480px;
 height: 480px;

 right: -180px;
 top: -30px;

 border: 1px solid rgba(228, 200, 121, 0.2);

 border-radius: 50%;
}

.cta-content {
 position: relative;

 z-index: 2;

 padding: 70px;
}

.cta-content h2 {
 max-width: 700px;

 margin-top: 18px;

 font-size: clamp(42px, 5vw, 68px);

 line-height: 1.02;

 letter-spacing: -0.055em;
}

.cta-content h2 em {
 color: var(--mx-gold-400);

 font-style: normal;
}

.cta-content p {
 max-width: 620px;

 margin-top: 22px;

 color: rgba(255, 255, 255, 0.64);

 font-size: 16px;

 line-height: 1.75;
}

.cta-actions {
 display: flex;

 align-items: center;

 gap: 28px;

 margin-top: 32px;
}

/* CTA side */

.cta-side {
 position: relative;

 z-index: 2;

 align-self: stretch;

 display: flex;

 flex-direction: column;

 align-items: center;

 justify-content: center;

 padding: 30px;

 border-left: 1px solid rgba(255, 255, 255, 0.12);

 background: rgba(0, 0, 0, 0.08);
}

.cta-side span {
 color: var(--mx-gold-400);

 font-size: 10px;

 font-weight: 900;

 letter-spacing: 0.25em;
}

.cta-side strong {
 margin-top: 10px;

 color: rgba(255, 255, 255, 0.08);

 font-family: "Manrope", sans-serif;

 font-size: 120px;

 line-height: 0.8;
}

.cta-side small {
 margin-top: 20px;

 color: rgba(255, 255, 255, 0.5);

 text-align: center;

 font-size: 11px;
}

/* =========================================================
   CONTACT
   ========================================================= */

.contact {
 background: var(--mx-white);
}

.contact-grid {
 display: grid;

 grid-template-columns:
  0.85fr
  1.15fr;

 gap: 90px;

 align-items: center;
}

.contact-copy h2 {
 margin-top: 18px;

 color: var(--mx-green-900);

 font-size: clamp(43px, 5vw, 68px);

 line-height: 1.02;

 letter-spacing: -0.055em;
}

.contact-copy h2 em {
 display: block;

 color: var(--mx-green-700);

 font-style: normal;
}

.contact-copy p {
 max-width: 530px;

 margin-top: 23px;

 color: var(--mx-muted);

 font-size: 17px;

 line-height: 1.8;
}

.contact-details {
 margin-top: 45px;

 border-top: 1px solid var(--mx-line);
}

.contact-detail {
 padding: 17px 0;

 border-bottom: 1px solid var(--mx-line);
}

.contact-detail span,
.contact-detail strong {
 display: block;
}

.contact-detail span {
 color: var(--mx-gold-500);

 font-size: 10px;

 font-weight: 900;

 letter-spacing: 0.14em;
}

.contact-detail strong {
 margin-top: 4px;

 color: var(--mx-green-900);

 font-size: 15px;
}

/* Contact form */

.contact-card {
 padding: 42px;

 border: 1px solid var(--mx-line);

 border-radius: 28px;

 background: var(--mx-white);

 box-shadow: var(--mx-shadow);
}

.contact-card form {
 display: flex;

 flex-direction: column;

 gap: 20px;
}

.form-row {
 display: grid;

 grid-template-columns:
  1fr
  1fr;

 gap: 18px;
}

.contact-card label {
 display: flex;

 flex-direction: column;

 gap: 8px;

 color: var(--mx-green-900);

 font-size: 12px;

 font-weight: 800;
}

.contact-card input,
.contact-card textarea {
 width: 100%;

 border: 1px solid var(--mx-line);

 border-radius: 13px;

 outline: none;

 background: #fbfcfa;

 color: var(--mx-ink);

 padding: 15px 16px;

 font-size: 14px;

 resize: vertical;

 transition: border-color 0.25s ease, background 0.25s ease,
  box-shadow 0.25s ease;
}

.contact-card input::placeholder,
.contact-card textarea::placeholder {
 color: #98a19c;
}

.contact-card input:focus,
.contact-card textarea:focus {
 border-color: var(--mx-gold-500);

 background: var(--mx-white);

 box-shadow: 0 0 0 4px rgba(200, 160, 74, 0.1);
}

.form-button {
 align-self: flex-start;

 margin-top: 3px;
}

.form-note {
 min-height: 20px;

 color: var(--mx-green-700);

 font-size: 12px;

 font-weight: 700;
}

/* =========================================================
   FOOTER
   IMPORTANT:
   These classes match the CURRENT HTML:
   .site-footer
   .footer-top
   .footer-brand
   .footer-links
   .footer-bottom
   ========================================================= */

.site-footer {
 padding: 72px 0 28px;

 color: rgba(255, 255, 255, 0.7);

 background: var(--mx-green-950);
}

.footer-top {
 display: grid;

 grid-template-columns:
  1fr
  auto;

 align-items: start;

 gap: 60px;

 padding-bottom: 55px;
}

/* Footer logo */

.footer-brand {
 display: flex;

 align-items: flex-start;
}

.footer-brand img {
 width: 200px;

 height: auto;

 border-radius: 8px;

 object-fit: contain;

 transition: transform 0.3s ease;
}

.footer-brand img:hover {
 transform: translateY(-2px);
}

/* Footer links */

.footer-links {
 display: flex;

 align-items: center;

 justify-content: flex-end;

 flex-wrap: wrap;

 gap: 25px;
}

.footer-links a {
 color: rgba(255, 255, 255, 0.62);

 font-size: 13px;

 font-weight: 600;

 transition: color 0.25s ease, transform 0.25s ease;
}

.footer-links a:hover {
 color: var(--mx-gold-400);

 transform: translateY(-2px);
}

/* Footer bottom */

.footer-bottom {
 display: flex;

 align-items: center;

 justify-content: space-between;

 gap: 20px;

 padding-top: 24px;

 border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom span {
 color: rgba(255, 255, 255, 0.38);

 font-size: 12px;
}

/* =========================================================
   REVEAL ANIMATION
   ========================================================= */

.reveal {
 opacity: 0;

 transform: translateY(24px);

 transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
 opacity: 1;

 transform: translateY(0);
}

/* Staggering */

.service-card:nth-child(2),
.capability-row:nth-child(2),
.process-item:nth-child(2) {
 transition-delay: 0.06s;
}

.service-card:nth-child(3),
.capability-row:nth-child(3),
.process-item:nth-child(3) {
 transition-delay: 0.12s;
}

.service-card:nth-child(4),
.capability-row:nth-child(4),
.process-item:nth-child(4) {
 transition-delay: 0.18s;
}

.service-card:nth-child(5) {
 transition-delay: 0.24s;
}

.service-card:nth-child(6) {
 transition-delay: 0.3s;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {
 .hero-grid {
  gap: 45px;

  grid-template-columns:
   minmax(0, 1fr)
   minmax(360px, 0.9fr);
 }

 .hero h1 {
  font-size: 62px;
 }

 .hero-image-card {
  height: 430px;
 }

 .hero-visual {
  min-height: 470px;
 }

 .hero-quality-card {
  left: -15px;
 }

 .capability-grid {
  gap: 55px;
 }

 .contact-grid {
  gap: 55px;
 }
}

/* =========================================================
   MOBILE NAV / TABLET
   ========================================================= */

@media (max-width: 820px) {
 .container {
  width: min(calc(100% - 34px), var(--mx-container));
 }

 .desktop-nav,
 .nav-button {
  display: none;
 }

 .mobile-menu-button {
  display: flex;
 }

 /* Hero */

 .hero {
  min-height: auto;

  padding: 140px 0 75px;
 }

 .hero-grid {
  grid-template-columns: 1fr;
 }

 .hero h1 {
  font-size: clamp(51px, 12vw, 72px);
 }

 .hero-visual {
  min-height: 480px;

  margin-top: 25px;
 }

 .hero-image-card {
  width: 88%;
 }

 .hero-quality-card {
  left: 0;
 }

 .hero-work-card {
  right: 0;
 }

 /* Sections */

 .section {
  padding: 85px 0;
 }

 .about-grid,
 .capability-grid,
 .contact-grid {
  grid-template-columns: 1fr;
 }

 .about-grid {
  gap: 45px;
 }

 .about-visual {
  min-height: 500px;
 }

 .about-image-main {
  height: 440px;
 }

 /* Services remain 3 columns
       until the smaller breakpoint */

 .services-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
 }

 /* Process */

 .process-track {
  grid-template-columns:
   1fr
   1fr;

  gap: 40px 25px;
 }

 .process-line {
  display: none;
 }

 /* CTA */

 .cta-panel {
  grid-template-columns: 1fr;
 }

 .cta-content {
  padding: 55px 35px;
 }

 .cta-side {
  display: none;
 }

 /* Footer */

 .footer-top {
  grid-template-columns:
   1fr
   1fr;

  gap: 40px;
 }

 .footer-links {
  justify-content: flex-start;
 }
}

/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 560px) {
 .container {
  width: calc(100% - 28px);
 }

 /* Header */

 .nav-wrap {
  min-height: 78px;
 }

 .brand img {
  width: 140px;
 }

 /* Hero */

 .hero {
  padding: 120px 0 60px;
 }

 .hero h1 {
  font-size: clamp(44px, 14vw, 60px);
 }

 .hero-text {
  font-size: 15px;

  line-height: 1.7;
 }

 .hero-actions,
 .cta-actions {
  align-items: stretch;

  flex-direction: column;
 }

 .hero-actions {
  gap: 18px;
 }

 .hero-actions .button,
 .cta-actions .button {
  width: 100%;
 }

 .hero-mini-trust {
  margin-top: 35px;
 }

 .hero-visual {
  min-height: 390px;
 }

 .hero-image-card {
  width: 92%;

  height: 360px;
 }

 .hero-quality-card {
  top: 55px;

  left: -2px;

  padding: 12px 14px;
 }

 .quality-icon {
  width: 34px;
  height: 34px;

  flex-basis: 34px;
 }

 .quality-content strong {
  font-size: 20px;
 }

 .hero-work-card {
  right: 0;

  width: 190px;

  padding: 17px;
 }

 .hero-work-card strong {
  font-size: 15px;
 }

 /* Common headings */

 .section-intro h2,
 .contact-copy h2 {
  font-size: 42px;
 }

 /* About */

 .about-visual {
  min-height: 430px;
 }

 .about-image-main {
  left: 10px;

  width: 94%;

  height: 380px;
 }

 .about-experience {
  width: 260px;

  padding: 17px;
 }

 .about-gold-shape {
  right: 0;

  bottom: 20px;

  width: 130px;
  height: 130px;
 }

 .about-gold-shape svg {
  width: 48px;
  height: 48px;
 }

 /* Services */

 .services-grid {
  grid-template-columns: 1fr;

  gap: 15px;
 }

 .service-card {
  min-height: 250px;

  padding: 25px;
 }

 /* Capabilities */

 .capabilities {
  padding: 85px 0;
 }

 .capability-intro h2 {
  font-size: 43px;
 }

 .capability-row {
  grid-template-columns:
   35px
   1fr
   20px;

  gap: 12px;
 }

 .capability-row strong {
  font-size: 16px;
 }

 /* Process */

 .process-track {
  grid-template-columns: 1fr;
 }

 /* CTA */

 .cta-section {
  padding-bottom: 85px;
 }

 .cta-content {
  padding: 45px 25px;
 }

 .cta-content h2 {
  font-size: 43px;
 }

 /* Contact */

 .form-row {
  grid-template-columns: 1fr;
 }

 .contact-card {
  padding: 28px 20px;
 }

 /* Footer */

 .site-footer {
  padding-top: 55px;
 }

 .footer-top {
  grid-template-columns: 1fr;

  gap: 35px;
 }

 .footer-links {
  justify-content: flex-start;

  gap: 15px 22px;
 }

 .footer-bottom {
  flex-direction: column;

  align-items: flex-start;
 }
}

/* =========================================================
   ACCESSIBILITY / REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
 html {
  scroll-behavior: auto;
 }

 *,
 *::before,
 *::after {
  animation-duration: 0.01ms !important;

  animation-iteration-count: 1 !important;

  transition-duration: 0.01ms !important;

  scroll-behavior: auto !important;
 }
}
/* =========================================================
   DOCUMENTS PAGE - FINAL OVERRIDES
   Match Success page exactly
   ========================================================= */

body.documents-page {
    min-height: 100vh !important;
    margin: 0 !important;
    background: #f7f8f5 !important;
    color: #6f7e79 !important;
    font-family: "Manrope", sans-serif !important;
}


/* =========================================================
   SHELL
   ========================================================= */

body.documents-page .documents-shell {
    position: relative !important;
    width: 100% !important;
    min-height: 100vh !important;

    display: block !important;

    padding: 36px 24px !important;

    box-sizing: border-box !important;

    overflow: hidden !important;
}


/* =========================================================
   BACKGROUND
   ========================================================= */

body.documents-page .documents-grid {
    position: absolute !important;
    inset: 0 !important;

    z-index: 0 !important;

    pointer-events: none !important;

    opacity: 0.25 !important;

    background-image:
        linear-gradient(
            rgba(0, 79, 62, 0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(0, 79, 62, 0.025) 1px,
            transparent 1px
        ) !important;

    background-size: 42px 42px !important;
}


body.documents-page .documents-orb {
    position: absolute !important;

    border-radius: 50% !important;

    pointer-events: none !important;

    z-index: 0 !important;
}


body.documents-page .documents-orb-one {
    width: 360px !important;
    height: 360px !important;

    top: -190px !important;
    right: -130px !important;

    background: rgba(213, 166, 57, 0.08) !important;
}


body.documents-page .documents-orb-two {
    width: 320px !important;
    height: 320px !important;

    bottom: -170px !important;
    left: -140px !important;

    background: rgba(0, 79, 62, 0.06) !important;
}


/* =========================================================
   MAIN CARD
   EXACT SUCCESS PAGE WIDTH
   ========================================================= */

body.documents-page .documents-card {
    position: relative !important;

    z-index: 1 !important;

    width: min(100%, 920px) !important;

    margin: 0 auto !important;

    padding: 32px 42px 36px !important;

    box-sizing: border-box !important;

    background: #ffffff !important;

    border: 1px solid rgba(0, 79, 62, 0.08) !important;

    border-radius: 22px !important;

    box-shadow:
        0 14px 42px rgba(0, 55, 43, 0.07) !important;
}


/* =========================================================
   LOGO
   FORCE FULL LOGO - DO NOT CROP
   ========================================================= */

body.documents-page .documents-brand {
    display: flex !important;

    align-items: center !important;

    width: 100% !important;

    height: auto !important;

    margin: 0 0 34px !important;

    padding: 0 !important;

    overflow: visible !important;
}


body.documents-page .documents-logo {
    display: block !important;

    width: 200px !important;

    max-width: 200px !important;

    min-width: 200px !important;

    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;

    margin: 0 !important;
    padding: 0 !important;

    overflow: visible !important;

    background: transparent !important;

    border: 0 !important;

    border-radius: 0 !important;

    box-shadow: none !important;

    text-decoration: none !important;
}


body.documents-page .documents-logo img {
    display: block !important;

    width: 200px !important;

    max-width: none !important;

    min-width: 200px !important;

    height: auto !important;

    min-height: 0 !important;

    max-height: none !important;

    margin: 0 !important;
    padding: 0 !important;

    object-fit: contain !important;

    object-position: left center !important;

    overflow: visible !important;
}


/* =========================================================
   HEADING
   MATCH SUCCESS PAGE
   ========================================================= */

body.documents-page .documents-heading {
    width: 100% !important;

    margin: 0 0 28px !important;

    padding: 0 !important;
}


body.documents-page .documents-eyebrow {
    display: inline-flex !important;

    align-items: center !important;

    gap: 8px !important;

    margin: 0 0 10px !important;

    color: #b88720 !important;

    font-size: 11px !important;

    line-height: 1.3 !important;

    font-weight: 700 !important;

    letter-spacing: 1.2px !important;

    text-transform: uppercase !important;
}


body.documents-page .documents-eyebrow-dot {
    display: block !important;

    width: 6px !important;
    height: 6px !important;

    flex-shrink: 0 !important;

    border-radius: 50% !important;

    background: #d5a638 !important;
}


/*
   IMPORTANT:
   Force the heading down from the oversized
   Documents/Login styles.
*/

body.documents-page .documents-heading h1 {
    display: block !important;

    width: 100% !important;

    margin: 0 0 12px !important;
    padding: 0 !important;

    color: #004f3e !important;

    font-family: "Manrope", sans-serif !important;

    font-size: clamp(32px, 3.5vw, 46px) !important;

    line-height: 1.1 !important;

    font-weight: 700 !important;

    letter-spacing: -1px !important;

    text-transform: none !important;
}


body.documents-page .documents-heading p {
    display: block !important;

    width: 100% !important;

    max-width: 680px !important;

    margin: 0 !important;
    padding: 0 !important;

    color: #71807c !important;

    font-family: "Manrope", sans-serif !important;

    font-size: 16px !important;

    line-height: 1.6 !important;

    font-weight: 400 !important;
}


/* =========================================================
   DOCUMENT CARD
   ========================================================= */

body.documents-page .document-viewer-card {
    width: 100% !important;

    margin: 0 !important;

    padding: 0 !important;

    box-sizing: border-box !important;

    overflow: hidden !important;

    background: #ffffff !important;

    border: 1px solid rgba(0, 79, 62, 0.1) !important;

    border-radius: 18px !important;

    box-shadow:
        0 10px 30px rgba(0, 55, 43, 0.05) !important;
}


/* =========================================================
   DOCUMENT HEADER
   ========================================================= */

body.documents-page .document-viewer-header {
    min-height: 76px !important;

    display: flex !important;

    align-items: center !important;

    justify-content: space-between !important;

    gap: 20px !important;

    padding: 16px 20px !important;

    box-sizing: border-box !important;

    background: #fbfcfa !important;

    border-bottom: 1px solid rgba(0, 79, 62, 0.08) !important;
}


body.documents-page .document-file-info {
    display: flex !important;

    align-items: center !important;

    gap: 14px !important;

    min-width: 0 !important;
}


body.documents-page .document-file-icon {
    width: 46px !important;
    height: 46px !important;

    min-width: 46px !important;

    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    border-radius: 14px !important;

    color: #d73535 !important;

    background: #fceceb !important;

    font-size: 19px !important;
}


body.documents-page .document-file-info strong {
    display: block !important;

    margin: 0 !important;

    color: #075844 !important;

    font-family: "Manrope", sans-serif !important;

    font-size: 16px !important;

    line-height: 1.35 !important;

    font-weight: 700 !important;
}


body.documents-page .document-file-info span {
    display: block !important;

    margin: 4px 0 0 !important;

    color: #87938f !important;

    font-size: 12px !important;

    line-height: 1.4 !important;

    font-weight: 500 !important;
}


/* =========================================================
   AVAILABLE BADGE
   ========================================================= */

body.documents-page .document-status {
    display: inline-flex !important;

    align-items: center !important;

    gap: 8px !important;

    flex-shrink: 0 !important;

    padding: 9px 14px !important;

    border: 1px solid rgba(0, 79, 62, 0.12) !important;

    border-radius: 999px !important;

    background: #f3f7f4 !important;

    color: #075844 !important;

    font-size: 13px !important;

    font-weight: 600 !important;
}


/* =========================================================
   PDF
   ========================================================= */

body.documents-page .pdf-container {
    width: 100% !important;

    height: 560px !important;

    margin: 0 !important;
    padding: 0 !important;

    background: #edf1ef !important;
}


body.documents-page .pdf-viewer {
    display: block !important;

    width: 100% !important;

    height: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;
}


/* =========================================================
   ACTIONS
   ========================================================= */

/* =========================================================
   ACTIONS
   ========================================================= */

body.documents-page .document-actions {
    display: grid !important;

    grid-template-columns:
        repeat(2, minmax(0, 1fr)) !important;

    gap: 20px !important;

    width: 100% !important;

    margin: 20px 0 0 !important;
}


body.documents-page .document-action {
    min-height: 72px !important;

    width: 100% !important;

    display: flex !important;

    align-items: center !important;

    gap: 12px !important;

    box-sizing: border-box !important;

    padding: 14px 16px !important;

    border-radius: 16px !important;

    font-family: "Manrope", sans-serif !important;

    text-decoration: none !important;
}


/* First two buttons */

body.documents-page .document-action-secondary {
    width: 100% !important;

    min-width: 0 !important;
}


/* Third button - full width */

body.documents-page .document-action-primary {
    grid-column: 1 / -1 !important;

    width: 100% !important;

    min-width: 0 !important;
}


body.documents-page .document-action-content {
    min-width: 0 !important;

    flex: 1 !important;
}


body.documents-page .document-action-content strong {
    display: block !important;

    margin: 0 !important;

    font-size: 13px !important;

    line-height: 1.35 !important;

    font-weight: 700 !important;
}

/* =========================================================
   FOOTER
   ========================================================= */

body.documents-page .documents-footer {
    display: flex !important;

    align-items: center !important;

    justify-content: space-between !important;

    gap: 20px !important;

    margin: 28px 0 0 !important;

    padding: 20px 0 0 !important;

    border-top: 1px solid rgba(0, 79, 62, 0.08) !important;
}


body.documents-page .documents-footer span,
body.documents-page .documents-footer a {
    display: inline-flex !important;

    align-items: center !important;

    gap: 7px !important;

    color: #7b8985 !important;

    font-size: 12px !important;

    font-weight: 500 !important;

    text-decoration: none !important;
}


body.documents-page .documents-footer a {
    color: #075844 !important;

    font-weight: 600 !important;
}


/* =========================================================
   BOTTOM LINE
   ========================================================= */

body.documents-page .documents-bottom-line {
    display: flex !important;

    align-items: center !important;

    gap: 14px !important;

    margin: 22px 0 0 !important;
}


body.documents-page .documents-bottom-line span {
    flex: 1 !important;

    height: 1px !important;

    background: #e7ebe8 !important;
}


body.documents-page .documents-bottom-line p {
    margin: 0 !important;

    color: #a0aaa6 !important;

    font-size: 9px !important;

    line-height: 1 !important;

    font-weight: 800 !important;

    letter-spacing: 0.25em !important;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 800px) {

    body.documents-page .documents-shell {
        padding: 24px 16px !important;
    }


    body.documents-page .documents-card {
        width: min(100%, 720px) !important;

        padding: 28px 24px 30px !important;
    }


    body.documents-page .document-actions {
        grid-template-columns: 1fr !important;
    }


    body.documents-page .pdf-container {
        height: 480px !important;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 560px) {

    body.documents-page .documents-shell {
        padding: 14px 10px !important;
    }


    body.documents-page .documents-card {
        padding: 22px 16px 24px !important;

        border-radius: 18px !important;
    }


    body.documents-page .documents-logo {
        width: 140px !important;

        min-width: 140px !important;

        max-width: 140px !important;
    }


    body.documents-page .documents-logo img {
        width: 140px !important;

        min-width: 140px !important;

        max-width: none !important;
    }


    body.documents-page .documents-heading h1 {
        font-size: 30px !important;

        letter-spacing: -0.6px !important;
    }


    body.documents-page .documents-heading p {
        font-size: 15px !important;
    }


    body.documents-page .document-viewer-header {
        align-items: flex-start !important;

        flex-direction: column !important;

        gap: 14px !important;
    }


    body.documents-page .document-status {
        align-self: flex-start !important;
    }


    body.documents-page .pdf-container {
        height: 430px !important;
    }


    body.documents-page .documents-footer {
        align-items: flex-start !important;

        flex-direction: column !important;

        gap: 12px !important;
    }

}
/* =========================================================
   LOGIN PAGE
   Reuses Modelx landing-page visual language
   ========================================================= */

.login-page {
 min-height: 100vh;
 background: #f7f5ee;
 color: #063f32;
 overflow-x: hidden;
}

/* =========================================================
   LOGIN SHELL
   ========================================================= */

.login-shell {
 position: relative;
 min-height: 100vh;
 display: flex;
 align-items: center;
 justify-content: center;
 padding: 60px 24px;
 overflow: hidden;
}

/* =========================================================
   DECORATIVE BACKGROUND
   ========================================================= */

.login-grid {
 position: absolute;
 inset: 0;
 pointer-events: none;
 opacity: 0.45;
 background-image: linear-gradient(rgba(6, 63, 50, 0.045) 1px, transparent 1px),
  linear-gradient(90deg, rgba(6, 63, 50, 0.045) 1px, transparent 1px);
 background-size: 70px 70px;
}

.login-orb {
 position: absolute;
 border-radius: 50%;
 pointer-events: none;
}

.login-orb-one {
 width: 420px;
 height: 420px;
 top: -220px;
 right: -120px;
 background: rgba(218, 174, 61, 0.12);
 filter: blur(2px);
}

.login-orb-two {
 width: 320px;
 height: 320px;
 bottom: -180px;
 left: -120px;
 background: rgba(6, 63, 50, 0.08);
}

/* =========================================================
   LOGIN CARD
   ========================================================= */

.login-card {
 position: relative;
 z-index: 2;
 width: min(100%, 560px);
 padding: 46px 48px 32px;
 background: rgba(255, 255, 255, 0.96);
 border: 1px solid rgba(6, 63, 50, 0.1);
 border-radius: 28px;
 box-shadow: 0 24px 70px rgba(6, 63, 50, 0.12), 0 4px 16px rgba(6, 63, 50, 0.05);
 animation: loginCardIn 0.7s ease both;
}

@keyframes loginCardIn {
 from {
  opacity: 0;
  transform: translateY(24px);
 }

 to {
  opacity: 1;
  transform: translateY(0);
 }
}

/* =========================================================
   BRAND
   ========================================================= */

.login-brand {
 display: flex;
 align-items: center;
 margin-bottom: 34px;
}

.login-logo {
 display: inline-flex;
 align-items: center;
}

.login-logo img {
 display: block;
 width: 112px;
 height: auto;
 object-fit: contain;
}

/* =========================================================
   HEADING
   ========================================================= */

.login-heading {
 margin-bottom: 30px;
}

.login-eyebrow {
 display: inline-flex;
 align-items: center;
 gap: 9px;
 margin-bottom: 14px;
 color: #c99b2e;
 font-size: 11px;
 font-weight: 800;
 letter-spacing: 0.18em;
}

.login-eyebrow-dot {
 width: 7px;
 height: 7px;
 border-radius: 50%;
 background: #c99b2e;
 box-shadow: 0 0 0 5px rgba(201, 155, 46, 0.12);
}

.login-heading h1 {
 margin: 0;
 color: #063f32;
 font-size: clamp(32px, 5vw, 46px);
 line-height: 1.05;
 font-weight: 800;
 letter-spacing: -0.045em;
}

.login-heading p {
 max-width: 460px;
 margin: 14px 0 0;
 color: #71807b;
 font-size: 16px;
 line-height: 1.7;
}

/* =========================================================
   FORM
   ========================================================= */

#loginForm {
 display: flex;
 flex-direction: column;
 gap: 15px;
}

.login-field {
 width: 100%;
}

.login-input-wrap {
 position: relative;
 display: flex;
 align-items: center;
 width: 100%;
 min-height: 62px;
 background: #f7f8f5;
 border: 1px solid #e0e5df;
 border-radius: 14px;
 transition: border-color 0.25s ease, box-shadow 0.25s ease,
  background 0.25s ease, transform 0.25s ease;
}

.login-input-wrap:focus-within {
 background: #ffffff;
 border-color: #0a5a47;
 box-shadow: 0 0 0 4px rgba(10, 90, 71, 0.08);
 transform: translateY(-1px);
}

.login-input-icon {
 display: flex;
 align-items: center;
 justify-content: center;
 flex: 0 0 54px;
 color: #c99b2e;
 font-size: 17px;
}

.login-input-wrap input {
 width: 100%;
 min-width: 0;
 height: 60px;
 padding: 0 48px 0 0;
 border: 0;
 outline: 0;
 background: transparent;
 color: #063f32;
 font-family: inherit;
 font-size: 15px;
 font-weight: 600;
}

.login-input-wrap input::placeholder {
 color: #8a9691;
 font-weight: 500;
}

.login-input-wrap input:-webkit-autofill,
.login-input-wrap input:-webkit-autofill:hover,
.login-input-wrap input:-webkit-autofill:focus {
 -webkit-text-fill-color: #063f32;
 -webkit-box-shadow: 0 0 0 1000px #f7f8f5 inset;
 transition: background-color 5000s ease-in-out 0s;
}

/* =========================================================
   PASSWORD TOGGLE
   ========================================================= */

.password-toggle {
 position: absolute;
 right: 15px;
 top: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 width: 34px;
 height: 34px;
 padding: 0;
 border: 0;
 border-radius: 50%;
 background: transparent;
 color: #71807b;
 cursor: pointer;
 transform: translateY(-50%);
 transition: color 0.2s ease, background 0.2s ease;
}

.password-toggle:hover {
 background: rgba(6, 63, 50, 0.06);
 color: #063f32;
}

/* =========================================================
   ERROR
   ========================================================= */

.form-error {
 min-height: 20px;
 margin: -2px 0 0;
 color: #b6382e;
 font-size: 13px;
 line-height: 1.5;
}

/* =========================================================
   SUBMIT BUTTON
   ========================================================= */

.login-submit {
 position: relative;
 display: flex;
 align-items: center;
 justify-content: center;
 width: 100%;
 min-height: 60px;
 margin-top: 2px;
 padding: 0 62px 0 24px;
 border: 0;
 border-radius: 14px;
 background: #063f32;
 color: #ffffff;
 font-family: inherit;
 font-size: 15px;
 font-weight: 800;
 cursor: pointer;
 overflow: hidden;
 transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.login-submit:hover {
 background: #075340;
 box-shadow: 0 12px 28px rgba(6, 63, 50, 0.18);
 transform: translateY(-2px);
}

.login-submit:active {
 transform: translateY(0);
}

.login-submit:disabled {
 cursor: not-allowed;
 opacity: 0.75;
 transform: none;
}

.login-submit-arrow {
 position: absolute;
 right: 18px;
 display: flex;
 align-items: center;
 justify-content: center;
 width: 36px;
 height: 36px;
 border-radius: 50%;
 background: #d9b34d;
 color: #063f32;
 transition: transform 0.25s ease;
}

.login-submit:hover .login-submit-arrow {
 transform: translateX(3px);
}

.btn-loader {
 display: none;
 width: 18px;
 height: 18px;
 margin-left: 8px;
 border: 2px solid rgba(255, 255, 255, 0.35);
 border-top-color: #ffffff;
 border-radius: 50%;
 animation: loginLoader 0.7s linear infinite;
}

@keyframes loginLoader {
 to {
  transform: rotate(360deg);
 }
}

/* =========================================================
   FOOTER
   ========================================================= */

.login-footer {
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 15px;
 margin-top: 28px;
 color: #7b8782;
 font-size: 12px;
}

.login-footer a {
 display: inline-flex;
 align-items: center;
 gap: 7px;
 color: #063f32;
 font-weight: 700;
 text-decoration: none;
 transition: color 0.2s ease, transform 0.2s ease;
}

.login-footer a:hover {
 color: #c99b2e;
 transform: translateX(-2px);
}

/* =========================================================
   BOTTOM LINE
   ========================================================= */

.login-bottom-line {
 display: flex;
 align-items: center;
 gap: 12px;
 margin-top: 26px;
}

.login-bottom-line span {
 flex: 1;
 height: 1px;
 background: #e4e7e2;
}

.login-bottom-line p {
 margin: 0;
 color: #9aa39f;
 font-size: 9px;
 font-weight: 800;
 letter-spacing: 0.16em;
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 640px) {
 .login-shell {
  padding: 30px 16px;
 }

 .login-card {
  padding: 34px 24px 26px;
  border-radius: 22px;
 }

 .login-brand {
  margin-bottom: 28px;
 }

 .login-logo img {
  width: 100px;
 }

 .login-heading h1 {
  font-size: 34px;
 }

 .login-heading p {
  font-size: 14px;
 }

 .login-footer {
  flex-direction: column;
  align-items: flex-start;
 }

 .login-orb-one {
  width: 280px;
  height: 280px;
 }

 .login-orb-two {
  width: 220px;
  height: 220px;
 }
}
/* =========================================================
   SUCCESS PAGE
   ========================================================= */

.success-page {
 min-height: 100vh;
 margin: 0;
 background: #f7f8f5;
 color: #6f7e79;
 font-family: "Manrope", sans-serif;
}

/* =========================================================
   PAGE BACKGROUND
   ========================================================= */

.success-shell {
 position: relative;
 width: 100%;
 min-height: 100vh;
 padding: 36px 24px;
 overflow: hidden;
}

.success-background-orb {
 position: absolute;
 border-radius: 50%;
 pointer-events: none;
 z-index: 0;
}

.success-background-orb-one {
 width: 360px;
 height: 360px;
 top: -190px;
 right: -130px;
 background: rgba(213, 166, 57, 0.08);
}

.success-background-orb-two {
 width: 320px;
 height: 320px;
 bottom: -170px;
 left: -140px;
 background: rgba(0, 79, 62, 0.06);
}

.success-grid {
 position: absolute;
 inset: 0;
 z-index: 0;
 pointer-events: none;
 opacity: 0.25;
 background-image: linear-gradient(rgba(0, 79, 62, 0.025) 1px, transparent 1px),
  linear-gradient(90deg, rgba(0, 79, 62, 0.025) 1px, transparent 1px);
 background-size: 42px 42px;
}

/* =========================================================
   MAIN CARD
   Keep the previous page width
   ========================================================= */

.success-card {
 position: relative;
 z-index: 1;
 width: min(100%, 920px);
 margin: 0 auto;
 padding: 32px 42px 36px;
 background: #ffffff;
 border: 1px solid rgba(0, 79, 62, 0.08);
 border-radius: 22px;
 box-shadow: 0 14px 42px rgba(0, 55, 43, 0.07);
}

/* =========================================================
   HEADER
   ========================================================= */

.success-header {
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 20px;
 margin-bottom: 34px;
}

.success-brand {
 display: inline-flex;
 align-items: center;
 text-decoration: none;
}

.success-logo {
 display: block;
 width: 200px;
 height: auto;
 object-fit: contain;
}

.success-verified {
 display: inline-flex;
 align-items: center;
 gap: 8px;
 padding: 8px 14px;
 border: 1px solid rgba(0, 79, 62, 0.12);
 border-radius: 999px;
 background: #f3f7f4;
 color: #075844;
 font-size: 13px;
 font-weight: 600;
}

.success-verified-icon {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 width: 21px;
 height: 21px;
 border-radius: 50%;
 background: #075844;
 color: #ffffff;
 font-size: 10px;
}

/* =========================================================
   HEADING
   ========================================================= */

.success-content {
 width: 100%;
}

.success-eyebrow {
 display: inline-flex;
 align-items: center;
 gap: 8px;
 margin-bottom: 10px;
 color: #b88720;
 font-size: 11px;
 font-weight: 700;
 letter-spacing: 1.2px;
 text-transform: uppercase;
}

.success-eyebrow-dot {
 width: 6px;
 height: 6px;
 border-radius: 50%;
 background: #d5a638;
}

.success-title {
 margin: 0 0 28px;
 color: #004f3e;
 font-size: clamp(32px, 3.5vw, 46px);
 line-height: 1.1;
 font-weight: 700;
 letter-spacing: -1px;
}

.success-title span {
 color: #c79527;
}

/* =========================================================
   QUALITY SCORE CARD
   ========================================================= */

.quality-card {
 width: 100%;
 margin-bottom: 20px;
 padding: 26px 30px 24px;
 box-sizing: border-box;
 border: 1px solid rgba(0, 79, 62, 0.1);
 border-radius: 20px;
 background: #f8faf8;
}

.quality-card-top {
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 20px;
}

.quality-label {
 display: block;
 margin-bottom: 6px;
 color: #b88720;
 font-size: 10px;
 font-weight: 700;
 letter-spacing: 1.1px;
}

.quality-card h2 {
 margin: 0;
 color: #075844;
 font-size: 20px;
 line-height: 1.3;
 font-weight: 600;
}

.quality-icon {
 width: 50px;
 height: 50px;
 display: flex;
 align-items: center;
 justify-content: center;
 flex: 0 0 50px;
 border-radius: 15px;
 background: #075844;
 color: #d6a637;
 font-size: 21px;
}

.quality-score {
 display: flex;
 align-items: baseline;
 margin-top: 18px;
}

.quality-number {
 color: #075844;
 font-size: 48px;
 line-height: 1;
 font-weight: 700;
 letter-spacing: -1.5px;
}

.quality-percent {
 margin-left: 4px;
 color: #c79527;
 font-size: 25px;
 font-weight: 700;
}

.quality-progress {
 width: 100%;
 height: 7px;
 margin-top: 18px;
 overflow: hidden;
 border-radius: 999px;
 background: #e7ece8;
}

.quality-progress-value {
 display: block;
 width: 97.3%;
 height: 100%;
 border-radius: inherit;
 background: #075844;
}

.quality-progress-labels {
 display: flex;
 align-items: center;
 justify-content: space-between;
 margin-top: 9px;
 color: #7a8985;
 font-size: 12px;
 font-weight: 500;
}

.quality-progress-labels strong {
 color: #075844;
 font-weight: 700;
}

/* =========================================================
   THREE CONTENT BOXES
   ========================================================= */

.success-message,
.upi-message,
.salary-message {
 display: flex;
 align-items: center;
 gap: 22px;
 width: 100%;
 min-height: 112px;
 margin-bottom: 16px;
 padding: 23px 28px;
 box-sizing: border-box;
 border-radius: 19px;
}

/* First box */

.success-message {
 background: #ffffff;
 border: 1px solid rgba(213, 166, 57, 0.28);
}

/* Second box */

.upi-message {
 background: #f7faf8;
 border: 1px solid rgba(0, 79, 62, 0.09);
}

/* Third box */

.salary-message {
 margin-bottom: 0;
 background: #fffaf0;
 border: 1px solid rgba(213, 166, 57, 0.22);
}

/* =========================================================
   ICONS
   Same size for all three
   ========================================================= */

.success-message-icon,
.upi-message-icon,
.salary-message-icon {
 flex: 0 0 58px;
 width: 58px;
 height: 58px;
 display: flex;
 align-items: center;
 justify-content: center;
 border-radius: 17px;
 background: #075844;
 color: #d5a638;
}

.success-message-icon i,
.upi-message-icon i,
.salary-message-icon i {
 font-size: 22px;
}

/* =========================================================
   MESSAGE TEXT
   Same typography for all three
   ========================================================= */

.success-message-content,
.upi-message-content,
.salary-message-content {
 flex: 1;
 min-width: 0;
}

.success-message p,
.upi-message p,
.salary-message p {
 margin: 0;
 color: #73817d;
 font-size: 17px;
 line-height: 1.6;
 font-weight: 400;
}

.success-message strong,
.upi-message strong,
.salary-message strong {
 color: #075844;
 font-weight: 700;
}

/* Employee name */

.employee-name-highlight {
 color: #c28d1e !important;
 font-weight: 700 !important;
}

/* Accuracy */

.success-highlight {
 color: #c28d1e;
 font-weight: 700;
}

/* =========================================================
   FOOTER
   ========================================================= */

.success-footer {
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 20px;
 margin-top: 30px;
 padding-top: 22px;
 border-top: 1px solid rgba(0, 79, 62, 0.08);
}

.success-footer-brand {
 display: flex;
 align-items: center;
 gap: 12px;
}

.success-footer-brand img {
 width: 200px;
 height: auto;
 display: block;
 object-fit: contain;
}

.success-footer-brand div {
 display: flex;
 flex-direction: column;
 gap: 2px;
}

.success-footer-brand strong {
 color: #075844;
 font-size: 14px;
 font-weight: 700;
}

.success-footer-brand span {
 color: #87938f;
 font-size: 11px;
 font-weight: 500;
}

.success-footer-security {
 display: inline-flex;
 align-items: center;
 gap: 7px;
 color: #7b8985;
 font-size: 12px;
 font-weight: 500;
}

.success-footer-security i {
 color: #075844;
 font-size: 14px;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 800px) {
 .success-shell {
  padding: 24px 16px;
 }

 .success-card {
  width: min(100%, 720px);
  padding: 28px 24px 30px;
 }

 .success-header {
  margin-bottom: 28px;
 }

 .success-title {
  margin-bottom: 24px;
 }

 .quality-card {
  padding: 23px 24px;
 }

 .success-message,
 .upi-message,
 .salary-message {
  gap: 18px;
  padding: 20px 22px;
 }

 .success-message p,
 .upi-message p,
 .salary-message p {
  font-size: 16px;
 }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 560px) {
 .success-shell {
  padding: 14px 10px;
 }

 .success-card {
  padding: 22px 16px 24px;
  border-radius: 18px;
 }

 .success-header {
  margin-bottom: 24px;
 }

 .success-logo {
  width: 78px;
 }

 .success-verified {
  padding: 7px 11px;
  font-size: 11px;
 }

 .success-verified-icon {
  width: 18px;
  height: 18px;
  font-size: 9px;
 }

 .success-title {
  margin-bottom: 22px;
  font-size: 30px;
 }

 .quality-card {
  padding: 20px;
  border-radius: 17px;
 }

 .quality-card h2 {
  font-size: 18px;
 }

 .quality-number {
  font-size: 42px;
 }

 .quality-percent {
  font-size: 22px;
 }

 .success-message,
 .upi-message,
 .salary-message {
  gap: 15px;
  min-height: 100px;
  padding: 18px;
  border-radius: 16px;
 }

 .success-message-icon,
 .upi-message-icon,
 .salary-message-icon {
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  border-radius: 14px;
 }

 .success-message-icon i,
 .upi-message-icon i,
 .salary-message-icon i {
  font-size: 19px;
 }

 .success-message p,
 .upi-message p,
 .salary-message p {
  font-size: 15px;
  line-height: 1.5;
 }

 .success-footer {
  align-items: flex-start;
  flex-direction: column;
  margin-top: 24px;
  padding-top: 18px;
 }
}

/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 380px) {
 .success-card {
  padding-left: 13px;
  padding-right: 13px;
 }

 .success-title {
  font-size: 28px;
 }

 .quality-number {
  font-size: 38px;
 }

 .success-message,
 .upi-message,
 .salary-message {
  padding: 16px;
 }

 .success-message-icon,
 .upi-message-icon,
 .salary-message-icon {
  flex-basis: 46px;
  width: 46px;
  height: 46px;
 }

 .success-message p,
 .upi-message p,
 .salary-message p {
  font-size: 14px;
 }
}
/* =========================================================
   QUALITY SCORE LOADING ANIMATION
   ========================================================= */

.quality-progress-value {
 width: 0;
 transition: width 1.5s ease-out;
}

/* My Account - separate input boxes */
#myAccountForm > .login-field:first-child {
 padding-bottom: 16px !important;
}

#myAccountForm > .login-field + .login-field {
 margin-top: 0 !important;
}
/* =========================================================
   DOCUMENTS PAGE
   Reuses the frozen Modelx visual system
   ========================================================= */

.documents-page {
 min-height: 100vh;
 background: #f7f8f4;
 color: #063f32;
}

.documents-shell {
 position: relative;
 width: 100%;
 min-height: 100vh;
 display: flex;
 justify-content: center;
 padding: 48px 24px;
 overflow: hidden;
}

.documents-card {
 position: relative;
 z-index: 2;
 width: min(100%, 1250px);
 margin: 0 auto;
 padding: 42px 48px 30px;
 background: #ffffff;
 border: 1px solid rgba(6, 63, 50, 0.08);
 border-radius: 28px;
 box-shadow: 0 24px 70px rgba(6, 63, 50, 0.08);
}

/* Brand */

.documents-brand {
 display: flex;
 align-items: center;
 margin-bottom: 42px;
}

.documents-logo {
 display: inline-flex;
 align-items: center;
 text-decoration: none;
}

.documents-logo img {
 display: block;
 width: 165px;
 height: auto;
 object-fit: contain;
}

/* Heading */

.documents-heading {
 max-width: 900px;
 margin-bottom: 30px;
}

.documents-eyebrow {
 display: inline-flex;
 align-items: center;
 gap: 9px;
 margin-bottom: 12px;
 color: #c79521;
 font-size: 12px;
 font-weight: 800;
 letter-spacing: 2.2px;
 text-transform: uppercase;
}

.documents-eyebrow-dot {
 width: 8px;
 height: 8px;
 border-radius: 50%;
 background: #d4a52c;
 box-shadow: 0 0 0 7px rgba(212, 165, 44, 0.12);
}

.documents-heading h1 {
 margin: 0;
 color: #064e3b;
 font-size: clamp(42px, 5vw, 68px);
 line-height: 1;
 font-weight: 800;
 letter-spacing: -2.8px;
}

.documents-heading p {
 max-width: 820px;
 margin: 18px 0 0;
 color: #71807c;
 font-size: 18px;
 line-height: 1.65;
 font-weight: 500;
}

/* Document viewer */

.document-viewer-card {
 width: 100%;
 overflow: hidden;
 background: #fbfcfa;
 border: 1px solid #dfe7e3;
 border-radius: 24px;
}

.document-viewer-header {
 min-height: 92px;
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 24px;
 padding: 20px 26px;
 border-bottom: 1px solid #e2e8e4;
}

.document-file-info {
 display: flex;
 align-items: center;
 gap: 18px;
}

.document-file-icon {
 width: 62px;
 height: 62px;
 flex: 0 0 62px;
 display: flex;
 align-items: center;
 justify-content: center;
 border-radius: 18px;
 background: #f7ece8;
 color: #c93434;
 font-size: 25px;
}

.document-file-info strong {
 display: block;
 color: #064e3b;
 font-size: 19px;
 font-weight: 800;
}

.document-file-info span {
 display: block;
 margin-top: 5px;
 color: #7b8884;
 font-size: 14px;
 font-weight: 500;
}

.document-status {
 display: inline-flex;
 align-items: center;
 gap: 9px;
 flex-shrink: 0;
 padding: 11px 17px;
 border: 1px solid #d4e1db;
 border-radius: 999px;
 background: #edf5f1;
 color: #176f58;
 font-size: 14px;
 font-weight: 800;
}

.document-status i {
 font-size: 15px;
}

/* PDF */

.pdf-container {
 width: 100%;
 height: 700px;
 background: #252525;
}

.pdf-viewer {
 display: block;
 width: 100%;
 height: 100%;
 border: 0;
 background: #252525;
}

/* Actions */

.document-actions {
 display: grid;
 grid-template-columns: repeat(2, minmax(0, 1fr));
 gap: 14px;
 margin-top: 22px;
}

.document-action {
 min-height: 76px;
 display: flex;
 align-items: center;
 gap: 15px;
 padding: 15px 18px;
 border-radius: 18px;
 text-decoration: none;
 cursor: pointer;
 font-family: inherit;
 transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.document-action:hover {
 transform: translateY(-2px);
}

.document-action-secondary {
 background: #ffffff;
 border: 1px solid #dce5e1;
 color: #064e3b;
}

.document-action-secondary:hover {
 border-color: #b9cec6;
 box-shadow: 0 12px 28px rgba(6, 63, 50, 0.08);
}

.document-action-primary {
 grid-column: 1 / -1;
 justify-content: space-between;
 border: 0;
 background: #064e3b;
 color: #ffffff;
 box-shadow: 0 14px 30px rgba(6, 78, 59, 0.16);
}

.document-action-primary:hover {
 box-shadow: 0 18px 34px rgba(6, 78, 59, 0.22);
}

.document-action-icon {
 width: 46px;
 height: 46px;
 flex: 0 0 46px;
 display: flex;
 align-items: center;
 justify-content: center;
 border-radius: 14px;
 background: #f7f3e7;
 color: #c79521;
 font-size: 18px;
}

.document-action-content {
 flex: 1;
 min-width: 0;
}

.document-action-content strong {
 display: block;
 font-size: 15px;
 font-weight: 800;
}

.document-action-arrow {
 color: #9aa8a3;
 font-size: 15px;
}

.document-primary-arrow {
 width: 46px;
 height: 46px;
 flex: 0 0 46px;
 display: flex;
 align-items: center;
 justify-content: center;
 border-radius: 50%;
 background: #d9ad3b;
 color: #063f32;
 font-size: 16px;
}

/* Footer */

.documents-footer {
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 20px;
 margin-top: 28px;
 padding-top: 4px;
 color: #71807c;
 font-size: 14px;
 font-weight: 600;
}

.documents-footer span,
.documents-footer a {
 display: inline-flex;
 align-items: center;
 gap: 8px;
}

.documents-footer a {
 color: #064e3b;
 text-decoration: none;
 font-weight: 800;
}

.documents-footer i {
 color: #c79521;
}

.documents-bottom-line {
 display: flex;
 align-items: center;
 gap: 18px;
 margin-top: 28px;
}

.documents-bottom-line span {
 height: 1px;
 flex: 1;
 background: #dfe6e2;
}

.documents-bottom-line p {
 margin: 0;
 color: #98a49f;
 font-size: 12px;
 font-weight: 800;
 letter-spacing: 2px;
}

/* Decorative elements */

.documents-orb {
 position: absolute;
 border-radius: 50%;
 pointer-events: none;
}

.documents-orb-one {
 width: 420px;
 height: 420px;
 top: -180px;
 right: -130px;
 background: rgba(6, 78, 59, 0.045);
}

.documents-orb-two {
 width: 300px;
 height: 300px;
 bottom: -150px;
 left: -100px;
 background: rgba(212, 165, 44, 0.055);
}

.documents-grid {
 position: absolute;
 inset: 0;
 pointer-events: none;
 opacity: 0.3;
 background-image: linear-gradient(rgba(6, 78, 59, 0.025) 1px, transparent 1px),
  linear-gradient(90deg, rgba(6, 78, 59, 0.025) 1px, transparent 1px);
 background-size: 42px 42px;
}

/* Responsive */

@media (max-width: 900px) {
 .documents-shell {
  padding: 28px 16px;
 }

 .documents-card {
  padding: 32px 24px 24px;
  border-radius: 22px;
 }

 .documents-heading h1 {
  font-size: 46px;
 }

 .pdf-container {
  height: 620px;
 }
}

@media (max-width: 650px) {
 .documents-card {
  padding: 26px 18px 22px;
 }

 .documents-logo img {
  width: 145px;
 }

 .documents-heading {
  margin-bottom: 24px;
 }

 .documents-heading h1 {
  font-size: 38px;
  letter-spacing: -1.8px;
 }

 .documents-heading p {
  font-size: 15px;
 }

 .document-viewer-header {
  align-items: flex-start;
  flex-direction: column;
 }

 .document-status {
  align-self: flex-start;
 }

 .pdf-container {
  height: 520px;
 }

 .document-actions {
  grid-template-columns: 1fr;
 }

 .document-action-primary {
  grid-column: auto;
 }

 .documents-footer {
  align-items: flex-start;
  flex-direction: column;
 }
}
/* =========================================================
DOCUMENTS PAGE
USE SAME CARD WIDTH AS SUCCESS / LOGIN PAGES
========================================================= */

.documents-page {
 min-height: 100vh;
}

.documents-shell {
 width: 100%;
 max-width: 1180px;
 margin: 0 auto;
 padding: 35px 24px;
}

.documents-card {
 width: 100%;
 max-width: 760px;
 margin: 0 auto;
}

.documents-logo img {
 width: 78px;
 height: 78px;
 object-fit: cover;
 border-radius: 16px;
 display: block;
}

.documents-heading {
 margin-bottom: 24px;
}

.document-viewer-card {
 width: 100%;
}

.document-actions {
 width: 100%;
}

.documents-footer {
 width: 100%;
}

@media (max-width: 768px) {
 .documents-shell {
  padding: 24px 16px;
 }

 .documents-card {
  max-width: 100%;
 }
}

/* ============================================================
   SALARY WITHDRAWAL
   Uses the existing Login page layout
   ============================================================ */

/* Approved salary information */
.salary-withdrawal-page .salary-info {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    min-height: 76px;
    margin-bottom: 18px;
    padding: 13px 14px;
    border: 1px solid #e1e7e3;
    border-radius: 16px;
    background: #f5f7f4;
}

.salary-withdrawal-page .salary-info-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: #063f32;
    color: #d9a63a;
    font-size: 17px;
}

.salary-withdrawal-page .salary-info-content {
    flex: 1;
    min-width: 0;
}

.salary-withdrawal-page .salary-info-content span {
    display: block;
    margin-bottom: 2px;
    color: #7b8984;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.13em;
}

.salary-withdrawal-page .salary-info-content strong {
    display: block;
    color: #063f32;
    font-size: 22px;
    line-height: 1.1;
    font-weight: 800;
}

.salary-withdrawal-page .salary-info-check {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    color: #063f32;
    font-size: 11px;
    font-weight: 800;
}

.salary-withdrawal-page .salary-info-check i {
    color: #d9a63a;
}


/* ============================================================
   SALARY FORM
   Keep Login input styling
   ============================================================ */

.salary-withdrawal-page .salary-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.salary-withdrawal-page .salary-form .login-field {
    margin: 0;
}


/* ============================================================
   SALARY SECURITY
   ============================================================ */

.salary-withdrawal-page .salary-security {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid #e6e9e4;
}

.salary-withdrawal-page .salary-security-icon {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: #eef3ef;
    color: #063b2d;
    font-size: 13px;
}

.salary-withdrawal-page .salary-security strong {
    display: block;
    margin-bottom: 2px;
    color: #063b2d;
    font-size: 11px;
    font-weight: 800;
}

.salary-withdrawal-page .salary-security p {
    margin: 0;
    color: #8a9690;
    font-size: 10px;
    line-height: 1.5;
}


/* ============================================================
   SALARY LOADER
   ============================================================ */

.salary-withdrawal-page .salary-form .btn-loader {
    width: 16px;
    height: 16px;
    display: none;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: salaryLoaderSpin 0.7s linear infinite;
}

@keyframes salaryLoaderSpin {
    to {
        transform: rotate(360deg);
    }
}


/* ============================================================
   BALANCE POPUP
   ============================================================ */

.salary-withdrawal-page .popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    background: rgba(6, 59, 45, 0.32);
    backdrop-filter: blur(7px);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}

.salary-withdrawal-page .popup-overlay.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.salary-withdrawal-page .popup-card {
    position: relative;

    width: 100%;
    max-width: 420px;

    padding: 34px 30px 30px;

    background: linear-gradient(145deg, #ffffff, #fafaf7);
    border: 1px solid rgba(6, 59, 45, 0.1);
    border-radius: 24px;

    box-shadow: 0 30px 80px rgba(4, 45, 35, 0.2);

    text-align: center;

    transform: translateY(18px) scale(0.97);
    transition: transform 0.3s ease;
}

.salary-withdrawal-page .popup-overlay.show .popup-card {
    transform: translateY(0) scale(1);
}

.salary-withdrawal-page .popup-close {
    position: absolute;
    top: 14px;
    right: 14px;

    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;
    border: 0;
    border-radius: 10px;

    background: #f0f3ef;
    color: #718079;

    font-size: 22px;
    line-height: 1;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.salary-withdrawal-page .popup-close:hover {
    background: #e5ebe8;
    color: #063f32;
}

.salary-withdrawal-page .popup-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 18px;

    border-radius: 17px;

    background: #d6a83f;
    color: #063b2d;

    font-size: 20px;
}

.salary-withdrawal-page .popup-card h2 {
    margin: 0 0 12px;

    color: #063b2d;
    font-size: 23px;
    font-weight: 800;
}

.salary-withdrawal-page .popup-card p {
    margin: 8px 0;

    color: #788580;
    font-size: 13px;
    line-height: 1.65;
}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 600px) {
    .salary-withdrawal-page .salary-info {
        min-height: 70px;
        padding: 11px 12px;
    }

    .salary-withdrawal-page .salary-info-icon {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }

    .salary-withdrawal-page .salary-info-content strong {
        font-size: 19px;
    }

    .salary-withdrawal-page .salary-info-check {
        display: none;
    }
}

@media (max-width: 420px) {
    .salary-withdrawal-page .salary-form {
        gap: 10px;
    }
}
/* =========================================================
   TRANSFERS / MY TRANSFER - MISSING PAGE-SPECIFIC STYLES
   Uses the existing Login/MyAccount layout as the base.
   Do not modify login-shell, login-card, fields or buttons.
   ========================================================= */


/* =========================================================
   SALARY TRANSFER - INFORMATION CARD
   ========================================================= */

.transfers-page .transfer-info-card {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 98px;
    margin: 30px 0;
    padding: 18px 20px;
    box-sizing: border-box;

    background: #f7f9f7;
    border: 1px solid #dce5e1;
    border-radius: 24px;
}

.transfers-page .transfer-info-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-right: 18px;

    background: #e8efec;
    border-radius: 16px;

    color: #075846;
    font-size: 22px;
}

.transfers-page .transfer-info-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;

    flex: 1;
    min-width: 0;
}

.transfers-page .transfer-info-content strong {
    margin: 0;

    color: #064f41;
    font-size: 20px;
    line-height: 1.25;
    font-weight: 800;
}

.transfers-page .transfer-info-content span {
    color: #7c8b87;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 500;
}

.transfers-page .transfer-info-status {
    display: flex;
    align-items: center;
    gap: 8px;

    margin-left: 20px;

    color: #064f41;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
}

.transfers-page .transfer-info-status i {
    font-size: 17px;
    color: #064f41;
}


/* =========================================================
   SALARY TRANSFER - NAME ROW
   ========================================================= */

.transfers-page .transfer-name-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    width: 100%;
}

.transfers-page .transfer-name-row .login-field {
    min-width: 0;
}


/* =========================================================
   SALARY TRANSFER - SECURITY CARD
   ========================================================= */

.transfers-page .transfer-security {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 82px;
    margin-top: 26px;
    padding: 16px 18px;
    box-sizing: border-box;

    background: #f7f9f7;
    border: 1px solid #dce5e1;
    border-radius: 20px;
}

.transfers-page .transfer-security-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-right: 15px;

    background: #e8efec;
    border-radius: 14px;

    color: #075846;
    font-size: 18px;
}

.transfers-page .transfer-security strong {
    display: block;

    margin: 0 0 4px;

    color: #064f41;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 800;
}

.transfers-page .transfer-security p {
    margin: 0;

    color: #7c8b87;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 500;
}


/* =========================================================
   MY TRANSFER - INFORMATION CARD
   ========================================================= */

.mytransfer-page .mytransfer-info {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 98px;
    margin: 30px 0;
    padding: 18px 20px;
    box-sizing: border-box;

    background: #f7f9f7;
    border: 1px solid #dce5e1;
    border-radius: 24px;
}

.mytransfer-page .mytransfer-info-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-right: 18px;

    background: #e8efec;
    border-radius: 16px;

    color: #075846;
    font-size: 22px;
}

.mytransfer-page .mytransfer-info-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;

    flex: 1;
    min-width: 0;
}

.mytransfer-page .mytransfer-info-content strong {
    margin: 0;

    color: #064f41;
    font-size: 20px;
    line-height: 1.25;
    font-weight: 800;
}

.mytransfer-page .mytransfer-info-content span {
    color: #7c8b87;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 500;
}

.mytransfer-page .mytransfer-info-status {
    display: flex;
    align-items: center;
    gap: 8px;

    margin-left: 20px;

    color: #064f41;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
}

.mytransfer-page .mytransfer-info-status i {
    color: #064f41;
    font-size: 17px;
}


/* =========================================================
   MY TRANSFER - SECURITY CARD
   ========================================================= */

.mytransfer-page .mytransfer-security {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 82px;
    margin-top: 26px;
    padding: 16px 18px;
    box-sizing: border-box;

    background: #f7f9f7;
    border: 1px solid #dce5e1;
    border-radius: 20px;
}

.mytransfer-page .mytransfer-security-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-right: 15px;

    background: #e8efec;
    border-radius: 14px;

    color: #075846;
    font-size: 18px;
}

.mytransfer-page .mytransfer-security strong {
    display: block;

    margin: 0 0 4px;

    color: #064f41;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 800;
}

.mytransfer-page .mytransfer-security p {
    margin: 0;

    color: #7c8b87;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 500;
}


/* =========================================================
   TRANSFER POPUP
   ========================================================= */

.transfers-page .popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: none;
    align-items: center;
    justify-content: center;

    padding: 24px;
    box-sizing: border-box;

    background: rgba(4, 43, 35, 0.42);
    backdrop-filter: blur(5px);
}

.transfers-page .popup-overlay.show,
.transfers-page .popup-overlay.active {
    display: flex;
}

.transfers-page .popup-card {
    position: relative;

    width: min(100%, 520px);
    padding: 36px;

    box-sizing: border-box;

    background: #ffffff;
    border: 1px solid #dce5e1;
    border-radius: 26px;

    box-shadow: 0 24px 70px rgba(5, 65, 52, 0.18);

    text-align: center;
}

.transfers-page .popup-close {
    position: absolute;
    top: 14px;
    right: 16px;

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;
    border: 0;
    border-radius: 50%;

    background: #f1f5f3;
    color: #064f41;

    font-size: 18px;
    cursor: pointer;
}

.transfers-page .popup-icon {
    width: 64px;
    height: 64px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 20px;

    background: #e8f2ee;
    border-radius: 18px;

    color: #075846;
    font-size: 27px;
}

.transfers-page .popup-card h2 {
    margin: 0 0 14px;

    color: #064f41;
    font-size: 25px;
    line-height: 1.25;
    font-weight: 800;
}

.transfers-page .popup-card p {
    margin: 7px 0;

    color: #72817d;
    font-size: 15px;
    line-height: 1.55;
    font-weight: 500;
}

.transfers-page .popup-card p strong {
    color: #064f41;
    font-weight: 800;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 600px) {

    .transfers-page .transfer-name-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .transfers-page .transfer-info-card,
    .mytransfer-page .mytransfer-info {
        padding: 16px;
    }

    .transfers-page .transfer-info-icon,
    .mytransfer-page .mytransfer-info-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;

        margin-right: 12px;
    }

    .transfers-page .transfer-info-content strong,
    .mytransfer-page .mytransfer-info-content strong {
        font-size: 17px;
    }

    .transfers-page .transfer-info-content span,
    .mytransfer-page .mytransfer-info-content span {
        font-size: 13px;
    }

    .transfers-page .transfer-info-status,
    .mytransfer-page .mytransfer-info-status {
        margin-left: 10px;
        font-size: 13px;
    }

    .transfers-page .transfer-security,
    .mytransfer-page .mytransfer-security {
        padding: 14px;
    }

    .transfers-page .popup-card {
        padding: 30px 22px;
    }
}
/* =========================================================
   TRANSFERS / MY TRANSFER - FIELD SPACING
   ========================================================= */

.transfers-page .login-field,
.mytransfer-page .login-field {
    margin-bottom: 14px;
}

/* The two name fields already sit side-by-side,
   so don't add extra spacing between them. */
.transfers-page .transfer-name-row .login-field {
    margin-bottom: 0;
}

/* Keep the row itself separated from the next field */
.transfers-page .transfer-name-row {
    margin-bottom: 14px;
}

/* Don't create unnecessary space before the submit button */
.transfers-page .login-form > .login-field:last-of-type,
.mytransfer-page form > .login-field:last-of-type {
    margin-bottom: 0;
}

/* =========================================================
   TRANSFERS / MY TRANSFER - FIELD SPACING
   ========================================================= */

.transfers-page .login-field,
.mytransfer-page .login-field {
    margin-bottom: 14px;
}

/* The two name fields already sit side-by-side,
   so don't add extra spacing between them. */
.transfers-page .transfer-name-row .login-field {
    margin-bottom: 0;
}

/* Keep the row itself separated from the next field */
.transfers-page .transfer-name-row {
    margin-bottom: 14px;
}

/* Don't create unnecessary space before the submit button */
.transfers-page .login-form > .login-field:last-of-type,
.mytransfer-page form > .login-field:last-of-type {
    margin-bottom: 0;
}