/* =========================================================
   ISESA — Premium Corporate Theme
   Brand colours come from the logo: navy #1D2F5A + blue #1475BB
   ========================================================= */

/* ===== TOKENS ===== */
:root {
    --navy-950: #081226;
    --navy-900: #0C1A36;
    --navy-800: #13244A;
    --navy: #1D2F5A;
    --blue: #1475BB;
    --blue-700: #0F5F9C;
    --blue-300: #8CC6EE;
    --blue-100: #D6E8F7;
    --blue-50: #EEF5FC;
    --ink: #0F1B36;
    --text: #4A5568;
    --muted: #66758C;
    --line: #E3E9F1;
    --bg-soft: #F5F8FC;
    --white: #FFFFFF;

    --radius: 16px;
    --radius-sm: 10px;
    --shadow-sm: 0 1px 2px rgba(15,27,54,0.06), 0 2px 8px rgba(15,27,54,0.04);
    --shadow-md: 0 14px 34px -14px rgba(15,27,54,0.22);
    --shadow-lg: 0 34px 70px -24px rgba(8,18,38,0.55);

    --font: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

    /* Legacy names still used by inner pages */
    --primary: var(--navy);
    --secondary: var(--blue);
    --light-bg: var(--bg-soft);
    --dark: var(--navy-900);
    --red: var(--blue);
    --gold: var(--blue-300);
}

/* ===== BASE ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--white); font-size: 15.5px; line-height: 1.7; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
h1, h2, h3, h4, h5, h6 { color: var(--ink); font-weight: 700; letter-spacing: -0.01em; }
a { text-decoration: none; color: inherit; transition: color 0.2s; }
img { max-width: 100%; }
::selection { background: var(--blue); color: #fff; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }

.text-justify { text-align: justify; }
.text-primary-custom { color: var(--navy) !important; }
.text-secondary-custom, .text-red { color: var(--blue) !important; }
.text-gold { color: var(--blue-300) !important; }
.bg-light-custom { background: var(--bg-soft); }

/* ===== LAYOUT HELPERS ===== */
.section { padding: 100px 0; }
.section-soft { background: var(--bg-soft); }

.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue); margin-bottom: 14px; }
.eyebrow::before { content: ''; width: 26px; height: 2px; background: currentColor; border-radius: 2px; }
.eyebrow-light { color: var(--blue-300); }

.section-heading { font-size: clamp(28px, 3.2vw, 42px); font-weight: 800; line-height: 1.16; letter-spacing: -0.025em; color: var(--ink); margin-bottom: 16px; }
.section-heading .accent { color: var(--blue); }
.section-heading .accent-light { color: var(--blue-300); }
.section-lead { font-size: 17px; line-height: 1.75; color: var(--muted); max-width: 640px; }

.section-head-center { text-align: center; max-width: 740px; margin: 0 auto 56px; }
.section-head-center .eyebrow::after { content: ''; width: 26px; height: 2px; background: currentColor; border-radius: 2px; }
.section-head-center .section-lead { margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn-brand, .btn-isesa,
.btn-outline-brand, .btn-outline-isesa,
.btn-outline-light-brand, .btn-outline-white,
.btn-light-brand, .btn-gold {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    font-family: var(--font); font-weight: 700; font-size: 14.5px; line-height: 1.2;
    padding: 14px 26px; border-radius: var(--radius-sm); border: 1.5px solid transparent;
    cursor: pointer; transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-brand i, .btn-isesa i, .btn-outline-brand i, .btn-light-brand i, .btn-outline-light-brand i { font-size: 13px; transition: transform 0.2s; }
.btn-brand:hover i, .btn-outline-brand:hover i, .btn-light-brand:hover i, .btn-outline-light-brand:hover i { transform: translateX(3px); }

.btn-brand, .btn-isesa { background: var(--blue); border-color: var(--blue); color: #fff !important; }
.btn-brand:hover, .btn-isesa:hover { background: var(--blue-700); border-color: var(--blue-700); transform: translateY(-1px); box-shadow: 0 12px 26px -10px rgba(20,117,187,0.6); }

.btn-outline-brand, .btn-outline-isesa { background: transparent; border-color: var(--line); color: var(--navy) !important; }
.btn-outline-brand:hover, .btn-outline-isesa:hover { border-color: var(--navy); background: var(--navy); color: #fff !important; }

.btn-outline-light-brand, .btn-outline-white { background: transparent; border-color: rgba(255,255,255,0.32); color: #fff !important; }
.btn-outline-light-brand:hover, .btn-outline-white:hover { background: #fff; border-color: #fff; color: var(--navy) !important; }

.btn-light-brand, .btn-gold { background: #fff; border-color: #fff; color: var(--navy) !important; }
.btn-light-brand:hover, .btn-gold:hover { background: var(--blue-50); border-color: var(--blue-50); transform: translateY(-1px); }

/* Bootstrap .btn variant used on form pages */
.btn-submit {
    --bs-btn-bg: var(--navy); --bs-btn-color: #fff; --bs-btn-border-color: var(--navy);
    --bs-btn-hover-bg: var(--blue); --bs-btn-hover-color: #fff; --bs-btn-hover-border-color: var(--blue);
    --bs-btn-active-bg: var(--blue-700); --bs-btn-active-color: #fff; --bs-btn-active-border-color: var(--blue-700);
    font-weight: 700; font-size: 14.5px; padding: 13px 28px; border-radius: var(--radius-sm); transition: all 0.2s;
}

/* ===== TOP BAR ===== */
.top-bar { background: var(--navy-950); color: rgba(255,255,255,0.7); font-size: 13px; padding: 9px 0; }
.top-bar a { color: rgba(255,255,255,0.78); display: inline-flex; align-items: center; }
.top-bar a:hover { color: #fff; }
.top-bar-left { display: flex; align-items: center; gap: 24px; }
.top-bar-left i { color: var(--blue-300); margin-right: 8px; font-size: 12px; }
.top-bar-right { display: flex; align-items: center; gap: 18px; }
.top-social { gap: 16px; }
.top-social a { color: rgba(255,255,255,0.55); font-size: 13px; }
.top-social a:hover { color: #fff; }
.top-link-brochure { gap: 8px; font-weight: 600; color: #fff !important; padding-left: 18px; border-left: 1px solid rgba(255,255,255,0.14); }
.top-link-brochure i { color: var(--blue-300); }

/* ===== NAVBAR ===== */
.main-navbar { background: rgba(255,255,255,0.97); border-bottom: 1px solid var(--line); padding: 14px 0; transition: box-shadow 0.35s ease, padding 0.35s ease; }
@supports (backdrop-filter: blur(8px)) { .main-navbar { background: rgba(255,255,255,0.88); backdrop-filter: saturate(180%) blur(12px); } }
.main-navbar.scrolled { box-shadow: 0 12px 32px -18px rgba(15,27,54,0.4); border-bottom-color: transparent; padding: 5px 0; }
.navbar-brand { padding: 0; margin-right: 24px; }
.nav-logo { height: 90px; width: auto; display: block; transition: height 0.35s ease; }
.main-navbar.scrolled .nav-logo { height: 90px; }

.main-navbar .nav-link { color: var(--ink) !important; font-weight: 600; font-size: 14.5px; padding: 8px 12px !important; position: relative; border-radius: 8px; transition: color 0.2s, font-size 0.35s ease; }
.main-navbar.scrolled .nav-link { font-size: 14px; }
.main-navbar .nav-link:focus-visible { box-shadow: 0 0 0 3px rgba(20,117,187,0.22); }
.main-navbar .nav-link:hover,
.main-navbar .nav-link.active,
.main-navbar .nav-link.show { color: var(--blue) !important; }
.main-navbar .nav-link.active::before { content: ''; position: absolute; left: 12px; right: 12px; bottom: -4px; height: 2px; background: var(--blue); border-radius: 2px; }
.main-navbar .dropdown-toggle::after { border: 0; content: "\f107"; font-family: "Font Awesome 6 Free"; font-weight: 900; font-size: 11px; vertical-align: 1px; margin-left: 6px; transition: transform 0.2s; }
.main-navbar .dropdown-toggle.show::after { transform: rotate(180deg); }

.main-navbar .dropdown-menu { border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-md); padding: 8px; min-width: 250px; margin-top: 12px !important; animation: dropFade 0.18s ease; }
@keyframes dropFade { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.main-navbar .dropdown-item { display: flex; align-items: center; gap: 12px; font-size: 14.5px; font-weight: 600; color: var(--ink); padding: 10px 12px; border-radius: 10px; }
.main-navbar .dropdown-item i { width: 32px; height: 32px; border-radius: 8px; display: grid; place-items: center; background: var(--blue-50); color: var(--blue); font-size: 13px; flex-shrink: 0; transition: all 0.2s; }
.main-navbar .dropdown-item:hover, .main-navbar .dropdown-item:focus { background: var(--bg-soft); color: var(--blue); }
.main-navbar .dropdown-item:hover i { background: var(--blue); color: #fff; }
.main-navbar .dropdown-item.active, .main-navbar .dropdown-item:active { background: var(--blue-50); color: var(--blue); }

.nav-actions { display: flex; align-items: center; gap: 10px; }
.btn-nav-primary, .btn-nav-ghost { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-weight: 700; font-size: 14px; line-height: 1.5; padding: 10px 18px; border-radius: var(--radius-sm); border: 1.5px solid transparent; transition: all 0.3s ease; white-space: nowrap; }
.main-navbar.scrolled .btn-nav-primary, .main-navbar.scrolled .btn-nav-ghost { font-size: 13.5px; padding: 7px 14px; }
.btn-nav-primary { background: var(--blue); border-color: var(--blue); color: #fff !important; }
.btn-nav-primary:hover { background: var(--blue-700); border-color: var(--blue-700); box-shadow: 0 10px 22px -10px rgba(20,117,187,0.6); }
.btn-nav-ghost { border-color: var(--line); color: var(--navy) !important; }
.btn-nav-ghost:hover, .btn-nav-ghost.active { border-color: var(--navy); background: var(--navy); color: #fff !important; }

.navbar-toggler { border: 1px solid var(--line); border-radius: 10px; padding: 10px 11px; transition: padding 0.35s ease; }
.main-navbar.scrolled .navbar-toggler { padding: 7px 9px; }
.navbar-toggler:focus { box-shadow: 0 0 0 3px rgba(20,117,187,0.18); }
.toggler-icon { display: flex; flex-direction: column; gap: 5px; width: 22px; }
.toggler-icon span { display: block; height: 2px; background: var(--navy); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.navbar-toggler[aria-expanded="true"] .toggler-icon span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar-toggler[aria-expanded="true"] .toggler-icon span:nth-child(2) { opacity: 0; }
.navbar-toggler[aria-expanded="true"] .toggler-icon span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== SHARED DARK BACKGROUND (hero, banners, process) ===== */
.hero, .page-banner, .process { position: relative; background: var(--navy-900); overflow: hidden; isolation: isolate; }
.hero::before, .page-banner::before, .process::before {
    content: ''; position: absolute; inset: 0; z-index: -1;
    background-image: linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
    background-size: 56px 56px;
    -webkit-mask-image: radial-gradient(ellipse 75% 70% at 70% 35%, #000 25%, transparent 75%);
    mask-image: radial-gradient(ellipse 75% 70% at 70% 35%, #000 25%, transparent 75%);
}
.hero::after, .page-banner::after, .process::after {
    content: ''; position: absolute; z-index: -1; width: 760px; height: 760px; right: -200px; top: -260px; border-radius: 50%;
    background: radial-gradient(circle, rgba(20,117,187,0.42) 0%, rgba(20,117,187,0) 65%);
}

/* ===== HERO ===== */
.hero { color: #fff; padding: 96px 0 168px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; padding: 7px 16px 7px 12px; border: 1px solid rgba(140,198,238,0.28); background: rgba(140,198,238,0.08); border-radius: 999px; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue-300); margin-bottom: 28px; }
.hero-eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue-300); box-shadow: 0 0 0 4px rgba(140,198,238,0.18); animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 4px rgba(140,198,238,0.18); } 50% { box-shadow: 0 0 0 7px rgba(140,198,238,0.05); } }
.hero-title { font-size: clamp(38px, 5.2vw, 62px); font-weight: 800; line-height: 1.06; letter-spacing: -0.035em; color: #fff; margin-bottom: 24px; }
.hero-title .accent { color: var(--blue-300); position: relative; white-space: nowrap; }
.hero-title .accent::after { content: ''; position: absolute; left: 2px; right: 2px; bottom: 0.06em; height: 0.14em; background: rgba(20,117,187,0.7); border-radius: 4px; z-index: -1; }
.hero-sub { font-size: 17.5px; line-height: 1.75; color: rgba(255,255,255,0.72); max-width: 560px; margin-bottom: 18px; }
.hero-sub-secondary { font-size: 16px; color: rgba(255,255,255,0.6); }
.hero-sub:last-of-type { margin-bottom: 36px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 18px 32px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); max-width: 600px; }
.hero-trust-item { display: flex; align-items: center; gap: 12px; }
.hero-trust-item > i { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; background: rgba(140,198,238,0.1); border: 1px solid rgba(140,198,238,0.16); color: var(--blue-300); font-size: 16px; flex-shrink: 0; }
.hero-trust-item strong { display: block; font-size: 14px; font-weight: 700; color: #fff; line-height: 1.25; }
.hero-trust-item span { font-size: 12.5px; color: rgba(255,255,255,0.55); }

/* Hero visual: simple sample rating card */
.hero-visual { position: relative; max-width: 420px; margin-left: auto; }
.scorecard { position: relative; background: #fff; color: var(--text); border-radius: 20px; padding: 30px; box-shadow: var(--shadow-lg); }
.sc-kicker { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.sc-title { display: block; font-size: 20px; font-weight: 800; color: var(--ink); line-height: 1.2; }

.sc-overall { display: flex; align-items: center; gap: 18px; margin: 22px 0 24px; padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sc-score { display: flex; align-items: baseline; gap: 4px; }
.sc-score strong { font-size: 48px; font-weight: 800; line-height: 1; letter-spacing: -0.04em; color: var(--ink); }
.sc-score span { font-size: 16px; font-weight: 700; color: var(--muted); }
.sc-overall-meta > span { display: block; margin-top: 5px; font-size: 13px; font-weight: 600; color: var(--muted); white-space: nowrap; }
.sc-stars { position: relative; display: inline-block; font-size: 17px; line-height: 1; letter-spacing: 3px; white-space: nowrap; }
.sc-stars-base { color: var(--blue-100); }
.sc-stars-fill { position: absolute; top: 0; left: 0; overflow: hidden; color: var(--blue); }

.sc-params { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
.sc-param-top { display: flex; justify-content: space-between; gap: 10px; margin-bottom: 7px; font-size: 14px; font-weight: 600; line-height: 1.2; color: var(--ink); }
.sc-param-top b { font-weight: 700; color: var(--blue); }
.score-track { height: 6px; background: var(--blue-50); border-radius: 99px; overflow: hidden; }
.score-track span { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--navy), var(--blue)); transform-origin: left; animation: barGrow 1.3s cubic-bezier(0.2,0.8,0.2,1) 0.3s both; }
.sc-params li:nth-child(2) .score-track span { animation-delay: 0.4s; }
.sc-params li:nth-child(3) .score-track span { animation-delay: 0.5s; }
.sc-params li:nth-child(4) .score-track span { animation-delay: 0.6s; }
@keyframes barGrow { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* ===== STATS STRIP ===== */
.stats-strip { position: relative; z-index: 3; margin-top: -76px; }
.stats-card { display: grid; grid-template-columns: repeat(3, 1fr); background: #fff; border: 1px solid var(--line); border-radius: 20px; box-shadow: 0 28px 60px -28px rgba(15,27,54,0.32); }
.stat { position: relative; text-align: center; padding: 34px 20px; }
.stat + .stat::before { content: ''; position: absolute; left: 0; top: 28%; bottom: 28%; width: 1px; background: var(--line); }
.stat strong { display: block; font-size: clamp(32px, 3.4vw, 42px); font-weight: 800; color: var(--navy); line-height: 1; letter-spacing: -0.03em; }
.stat strong em { font-style: normal; color: var(--blue); }
.stat span { display: block; margin-top: 10px; font-size: 12.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }

/* ===== QUICK ACTION CARDS ===== */
.actions-section { padding: 80px 0 100px; }
.action-card { position: relative; display: flex; flex-direction: column; height: 100%; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px; overflow: hidden; transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s; }
.action-card::after { content: ''; position: absolute; left: 0; top: 0; width: 100%; height: 3px; background: var(--blue); transform: scaleX(0); transform-origin: left; transition: transform 0.35s; }
.action-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.action-card:hover::after { transform: scaleX(1); }
.action-icon { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; background: var(--blue-50); color: var(--blue); font-size: 22px; margin-bottom: 24px; }
.action-tag { font-size: 11.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue); margin-bottom: 8px; }
.action-card h3 { font-size: 21px; font-weight: 700; color: var(--ink); margin-bottom: 10px; letter-spacing: -0.015em; }
.action-card p { flex-grow: 1; font-size: 15px; color: var(--muted); margin-bottom: 24px; }
.action-link { display: inline-flex; align-items: center; gap: 8px; font-size: 14.5px; font-weight: 700; color: var(--navy); }
.action-link i { font-size: 13px; transition: transform 0.25s; }
.action-card:hover .action-link i { transform: translateX(4px); }
.action-card-featured { background: var(--navy); border-color: var(--navy); }
.action-card-featured::after { background: var(--blue-300); }
.action-card-featured .action-icon { background: rgba(140,198,238,0.12); color: var(--blue-300); }
.action-card-featured .action-tag { color: var(--blue-300); }
.action-card-featured h3, .action-card-featured .action-link { color: #fff; }
.action-card-featured p { color: rgba(255,255,255,0.7); }

/* ===== ABOUT ===== */
.about-media { position: relative; padding: 0 0 40px 40px; }
.about-media::before { content: ''; position: absolute; left: 0; bottom: 0; width: 72%; height: 72%; border-radius: 20px; background-color: var(--blue-50); background-image: radial-gradient(var(--blue-100) 1.6px, transparent 1.6px); background-size: 16px 16px; }
.about-media-img { position: relative; display: block; width: 100%; aspect-ratio: 5 / 4; object-fit: cover; border-radius: 20px; background: var(--navy-800); box-shadow: var(--shadow-md); }
.about-media-card { position: absolute; right: 24px; bottom: 12px; display: flex; align-items: center; gap: 14px; background: #fff; border-radius: 14px; padding: 16px 20px; box-shadow: var(--shadow-md); }
.about-media-icon { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: var(--blue); color: #fff; font-size: 20px; flex-shrink: 0; }
.about-media-card strong { display: block; color: var(--ink); font-size: 15px; line-height: 1.25; }
.about-media-card div span { font-size: 13px; color: var(--muted); }
.about-lead { font-size: 17px; font-weight: 600; color: var(--navy); margin-bottom: 18px; }
.about-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 64px; }
.about-pillar { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s; }
.about-pillar:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: transparent; }
.about-pillar-icon { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 20px; background: var(--blue-50); color: var(--blue); font-size: 19px; transition: background 0.25s, color 0.25s; }
.about-pillar:hover .about-pillar-icon { background: var(--blue); color: #fff; }
.about-pillar strong { display: block; margin-bottom: 8px; font-size: 13px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue); }
.about-pillar p { margin: 0; font-size: 16px; font-weight: 600; line-height: 1.5; color: var(--ink); }
.about-points { list-style: none; padding: 0; margin: 26px 0 34px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; }
.about-points li { display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--ink); font-size: 15px; }
.about-points i { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; background: var(--blue-50); color: var(--blue); font-size: 11px; flex-shrink: 0; }

/* ===== PARAMETERS ===== */
.params-intro { position: sticky; top: 110px; }
.params-how { list-style: none; padding: 0; margin: 30px 0 34px; display: flex; flex-direction: column; gap: 14px; }
.params-how li { display: flex; align-items: center; gap: 14px; font-size: 15px; font-weight: 600; color: var(--ink); line-height: 1.45; }
.params-how strong { display: block; font-size: 15.5px; font-weight: 700; color: var(--ink); }
.params-how li span { display: block; margin-top: 2px; font-size: 13.5px; font-weight: 500; color: var(--muted); }
.params-how i { width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0; display: grid; place-items: center; background: #fff; border: 1px solid var(--line); color: var(--blue); font-size: 14px; }
.params-panel { display: grid; grid-template-columns: 1fr 1fr; background: #fff; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow-sm); overflow: hidden; }
.param-item { position: relative; display: flex; align-items: flex-start; gap: 16px; padding: 28px 28px 28px 26px; border-bottom: 1px solid var(--line); transition: background 0.25s; }
.param-item:nth-child(odd) { border-right: 1px solid var(--line); }
.param-item:nth-last-child(-n+2) { border-bottom: 0; }
.param-item:hover { background: var(--bg-soft); }
.param-icon { width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0; display: grid; place-items: center; background: var(--blue-50); color: var(--blue); font-size: 19px; transition: background 0.25s, color 0.25s, transform 0.25s; }
.param-item:hover .param-icon { background: var(--blue); color: #fff; transform: translateY(-2px); }
.param-text { flex: 1; min-width: 0; padding-right: 26px; }
.param-text h3 { font-size: 16.5px; font-weight: 700; color: var(--ink); margin: 2px 0 6px; line-height: 1.3; }
.param-text p { font-size: 14px; line-height: 1.6; color: var(--muted); margin: 0; }
.param-num { position: absolute; top: 26px; right: 26px; font-size: 12px; font-weight: 800; letter-spacing: 0.06em; color: #A3B6CC; transition: color 0.25s; }
.param-item:hover .param-num { color: var(--blue); }

/* ===== PROCESS ===== */
.process { padding: 100px 0; }
.process::after { right: auto; left: -260px; top: auto; bottom: -360px; }
.process .section-lead { color: rgba(255,255,255,0.65); }
.steps { list-style: none; padding: 0; margin: 0; position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.steps::before { content: ''; position: absolute; top: 28px; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, transparent, rgba(140,198,238,0.45) 12%, rgba(140,198,238,0.45) 88%, transparent); }
.step { position: relative; text-align: center; padding: 0 4px; }
.step-num { position: relative; z-index: 1; width: 56px; height: 56px; margin: 0 auto 24px; border-radius: 50%; display: grid; place-items: center; background: var(--navy-800); border: 1px solid rgba(140,198,238,0.35); color: #fff; font-size: 16px; font-weight: 800; box-shadow: 0 0 0 8px var(--navy-900); transition: background 0.3s, border-color 0.3s; }
.step:hover .step-num { background: var(--blue); border-color: var(--blue); }
.step h3 { color: #fff; font-size: 16.5px; font-weight: 700; line-height: 1.35; margin-bottom: 10px; }
.step p { color: rgba(255,255,255,0.62); font-size: 14px; line-height: 1.65; margin: 0; }
.process-cta { margin-top: 68px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding: 28px 32px; border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.03); border-radius: 18px; }
.process-cta p { margin: 0; color: #fff; font-size: 18px; font-weight: 600; line-height: 1.5; max-width: 560px; }
.process-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ===== ADVANTAGES ===== */
.pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 32px; }
.pillar { border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 20px; transition: border-color 0.25s, box-shadow 0.25s; }
.pillar:hover { border-color: var(--blue-100); box-shadow: var(--shadow-sm); }
.pillar i { display: block; color: var(--blue); font-size: 20px; margin-bottom: 12px; }
.pillar h3 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.pillar p { font-size: 13.5px; line-height: 1.55; color: var(--muted); margin: 0; }
.adv-panel { height: 100%; background: var(--bg-soft); border-radius: 22px; padding: 40px 44px; display: flex; flex-direction: column; }
.adv-panel-title { font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.adv-grid { list-style: none; padding: 0; margin: 0 0 32px; display: grid; grid-template-columns: 1fr 1fr; column-gap: 36px; flex-grow: 1; }
.adv-grid li { display: flex; align-items: center; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 15px; font-weight: 600; color: var(--ink); line-height: 1.4; }
.adv-grid li span { min-width: 24px; font-size: 12px; font-weight: 800; letter-spacing: 0.04em; color: var(--blue); }
.adv-panel-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ===== CTA BAND ===== */
.cta-wrap { padding: 0 0 100px; }
.cta-band { position: relative; overflow: hidden; isolation: isolate; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; padding: 60px 64px; border-radius: 24px; background: linear-gradient(120deg, var(--navy-900) 0%, var(--navy) 55%, var(--blue-700) 100%); box-shadow: 0 30px 60px -30px rgba(15,27,54,0.55); }
.cta-band::before { content: ''; position: absolute; z-index: -1; width: 420px; height: 420px; right: -120px; top: -200px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.12); box-shadow: 0 0 0 60px rgba(255,255,255,0.03), 0 0 0 120px rgba(255,255,255,0.02); }
.cta-band h2 { color: #fff; font-size: clamp(26px, 3vw, 36px); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 10px; }
.cta-band p { color: rgba(255,255,255,0.72); font-size: 16.5px; margin: 0; max-width: 560px; }
.cta-band-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ===== CONTENT PAGES ===== */
.section-intro { padding: 88px 0 72px; }

/* Aside card + long-form article (About, Parameters & Methodology) */
.content-aside { position: sticky; top: 130px; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 22px; padding: 36px 32px; }
.content-aside-logo { display: block; height: 64px; width: auto; margin-bottom: 28px; }
.content-aside-title { margin: 0; font-size: 22px; font-weight: 800; line-height: 1.35; letter-spacing: -0.015em; color: var(--navy); }
.content-aside-title::before { content: ''; display: block; width: 48px; height: 3px; margin-bottom: 20px; border-radius: 2px; background: var(--blue); }
.content-article p { margin: 0; padding: 28px 0; border-bottom: 1px solid var(--line); font-size: 16.5px; line-height: 1.9; color: var(--text); }
.content-article p:first-child { padding-top: 0; }
.content-article p:last-child { padding-bottom: 0; border-bottom: 0; }
.content-article .content-article-lead { font-size: 19px; line-height: 1.75; font-weight: 500; color: var(--ink); }

/* Centered intro statement */
.page-callout { max-width: 880px; margin: 0 auto; text-align: center; }
.page-callout::before { content: ''; display: block; width: 48px; height: 3px; margin: 0 auto 22px; border-radius: 2px; background: var(--blue); }
.page-callout p, .page-callout h2 { margin: 0; font-size: clamp(21px, 2.3vw, 27px); font-weight: 800; line-height: 1.4; letter-spacing: -0.015em; color: var(--navy); }
.page-lead { max-width: 880px; margin: 20px auto 0; text-align: center; font-size: 17.5px; line-height: 1.8; font-weight: 500; color: var(--text); }
.page-callout-sm p { font-size: 17.5px; font-weight: 500; line-height: 1.85; letter-spacing: 0; color: var(--text); }

/* Icon cards (Advantages, Center of Excellence) */
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.feature-card { display: flex; align-items: flex-start; gap: 20px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s; }
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: transparent; }
.feature-grid > .feature-card:last-child:nth-child(odd) { grid-column: 1 / -1; }
.feature-icon { width: 52px; height: 52px; border-radius: 14px; flex-shrink: 0; display: grid; place-items: center; background: var(--blue-50); color: var(--blue); font-size: 20px; transition: background 0.25s, color 0.25s; }
.feature-card:hover .feature-icon { background: var(--blue); color: #fff; }
.feature-card h3 { margin: 4px 0 10px; font-size: 18px; font-weight: 700; line-height: 1.35; }
.feature-card p { margin: 0; font-size: 15px; line-height: 1.75; color: var(--muted); }

/* Numbered timeline (Process) */
.timeline { list-style: none; padding: 0; margin: 0 auto; max-width: 920px; position: relative; }
.timeline::before { content: ''; position: absolute; left: 27px; top: 28px; bottom: 28px; width: 2px; background: var(--blue-100); }
.timeline li { position: relative; display: grid; grid-template-columns: 56px 1fr; column-gap: 24px; }
.timeline li + li { margin-top: 18px; }
.timeline-num { position: relative; z-index: 1; width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; background: #fff; border: 2px solid var(--blue-100); color: var(--blue); font-size: 16px; font-weight: 800; box-shadow: 0 0 0 6px var(--bg-soft); transition: background 0.25s, border-color 0.25s, color 0.25s; }
.timeline li:hover .timeline-num { background: var(--blue); border-color: var(--blue); color: #fff; }
.timeline-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 28px; transition: box-shadow 0.25s; }
.timeline li:hover .timeline-card { box-shadow: var(--shadow-md); }
.timeline-card h3 { margin-bottom: 8px; font-size: 18px; font-weight: 700; line-height: 1.35; }
.timeline-card p { margin: 0; font-size: 15px; line-height: 1.75; color: var(--muted); }

/* Dark closing statement */
.closing-note { position: relative; overflow: hidden; isolation: isolate; display: flex; align-items: flex-start; gap: 22px; margin-top: 48px; padding: 38px 42px; border-radius: 20px; background: var(--navy-900); }
.closing-note::after { content: ''; position: absolute; z-index: -1; width: 460px; height: 460px; right: -160px; top: -220px; border-radius: 50%; background: radial-gradient(circle, rgba(20,117,187,0.45) 0%, rgba(20,117,187,0) 65%); }
.closing-note > i { width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0; display: grid; place-items: center; background: rgba(140,198,238,0.12); border: 1px solid rgba(140,198,238,0.2); color: var(--blue-300); font-size: 18px; }
.closing-note p { margin: 0; font-size: 17px; line-height: 1.8; color: rgba(255,255,255,0.86); }
.timeline + .closing-note { max-width: 920px; margin-left: auto; margin-right: auto; }

/* Vision & Mission */
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.vm-card { position: relative; overflow: hidden; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 22px; padding: 40px 36px; }
.vm-card::before { content: ''; position: absolute; left: 0; right: 0; top: 0; height: 4px; background: linear-gradient(90deg, var(--navy), var(--blue)); }
.vm-card-icon { width: 60px; height: 60px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 24px; background: linear-gradient(135deg, var(--navy), var(--blue)); color: #fff; font-size: 24px; }
.vm-card h3 { margin-bottom: 16px; font-size: 19px; font-weight: 800; line-height: 1.45; color: var(--navy); }
.vm-card p { margin: 0; font-size: 16px; line-height: 1.85; color: var(--text); }

/* Contact: split screen, navy details on the left and the form on the right */
.contact-split { position: relative; overflow: hidden; isolation: isolate; background: #fff; }
.contact-split-info h2 { margin-bottom: 40px; font-size: clamp(30px, 3.4vw, 44px); font-weight: 800; line-height: 1.15; letter-spacing: -0.025em; color: #fff; }
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li { display: flex; align-items: flex-start; gap: 18px; padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.08); }
.contact-list li:first-child { padding-top: 0; border-top: 0; }
.contact-list-icon { width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0; display: grid; place-items: center; background: rgba(140,198,238,0.1); border: 1px solid rgba(140,198,238,0.2); color: var(--blue-300); font-size: 16px; }
.contact-list h5 { margin: 2px 0 4px; font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue-300); }
.contact-list p { margin: 0; font-size: 16px; line-height: 1.65; color: rgba(255,255,255,0.88); }
.contact-list a { color: rgba(255,255,255,0.88); }
.contact-list a:hover { color: #fff; }
.contact-split-form .form-card-title { margin-bottom: 30px; font-size: clamp(26px, 2.6vw, 34px); letter-spacing: -0.02em; }
.contact-split-form .form-control { padding: 14px 16px; background-color: var(--bg-soft); border-color: var(--bg-soft); }
.contact-split-form .form-control:focus { background-color: #fff; border-color: var(--blue); }
@media (min-width: 992px) {
    .contact-split::before { content: ''; position: absolute; z-index: -2; inset: 0 50% 0 0; background: radial-gradient(ellipse 70% 55% at 90% 0%, rgba(20,117,187,0.45) 0%, rgba(20,117,187,0) 70%), var(--navy-900); }
    .contact-split::after {
        content: ''; position: absolute; z-index: -1; inset: 0 50% 0 0;
        background-image: linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
        background-size: 56px 56px;
        -webkit-mask-image: radial-gradient(ellipse 80% 70% at 70% 30%, #000 20%, transparent 75%);
        mask-image: radial-gradient(ellipse 80% 70% at 70% 30%, #000 20%, transparent 75%);
    }
    .contact-split-info { height: 100%; padding: 100px 64px 100px 0; }
    .contact-split-form { height: 100%; display: flex; flex-direction: column; justify-content: center; padding: 100px 0 100px 64px; }
}
@media (max-width: 991.98px) {
    .contact-split-info { background: radial-gradient(ellipse 80% 50% at 100% 0%, rgba(20,117,187,0.4) 0%, rgba(20,117,187,0) 70%), var(--navy-900); margin: 0 calc(50% - 50vw); padding: 64px calc(50vw - 50%); }
    .contact-split-form { padding: 56px 0 72px; }
}
.form-card-title { margin-bottom: 26px; font-size: 24px; font-weight: 800; letter-spacing: -0.015em; color: var(--ink); }

/* Login */
.login-shell { display: grid; grid-template-columns: 1fr 1fr; max-width: 1020px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-md); }
.login-visual { display: grid; place-items: center; padding: 40px; border-right: 1px solid var(--line); }
.login-visual img { max-height: 320px; width: auto; }
.login-form { padding: 56px 52px; }
.login-form h2 { margin-bottom: 26px; font-size: 26px; font-weight: 800; letter-spacing: 0.02em; color: var(--ink); }
.login-note { margin: 24px 0 0; padding-top: 22px; border-top: 1px solid var(--line); font-size: 14px; line-height: 1.7; color: var(--muted); }

/* ===== PAGE BANNER (inner pages) ===== */
.page-banner { color: #fff; padding: 76px 0 68px; }
.page-banner::after { width: 560px; height: 560px; top: -280px; right: -140px; }
.page-banner h1 { position: relative; font-size: clamp(30px, 4vw, 46px); font-weight: 800; letter-spacing: -0.025em; color: #fff; margin: 0; }
.page-banner p { color: rgba(255,255,255,0.7); font-size: 16.5px; margin: 10px 0 0; }
.page-banner .breadcrumb { background: transparent; padding: 0; margin: 0 0 12px !important; font-size: 14px; }
.page-banner .breadcrumb-item a { color: var(--blue-300); }
.page-banner .breadcrumb-item a:hover { color: #fff; }
.page-banner .breadcrumb-item.active { color: rgba(255,255,255,0.7); }
.page-banner .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.35); }
.breadcrumb-custom { margin-top: 16px; font-size: 14px; color: rgba(255,255,255,0.7); }
.breadcrumb-custom a { color: var(--blue-300); }
.breadcrumb-custom a:hover { color: #fff; }
.breadcrumb-custom span { margin: 0 8px; color: rgba(255,255,255,0.35); }

/* ===== INNER PAGE CONTENT ===== */
.section-title h2 { font-size: clamp(26px, 3vw, 34px); font-weight: 800; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 10px; }
.section-title p { color: var(--muted); font-size: 16px; margin: 0; }
.title-line { width: 48px; height: 3px; background: var(--blue); border-radius: 2px; margin: 18px auto 0; }
.title-line-gold { width: 48px; height: 3px; background: var(--blue-300); border-radius: 2px; }

.content-blockquote { background: var(--blue-50); border-left: 3px solid var(--blue); padding: 22px 28px; border-radius: 0 14px 14px 0; margin: 20px 0; }
.content-blockquote p { margin: 0; font-size: 16px; font-weight: 600; color: var(--navy); }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow-md); padding: 44px; }
.form-card-note { font-size: 13.5px; color: var(--muted); }
.form-label { font-weight: 600; color: var(--ink); font-size: 14px; margin-bottom: 7px; }
.form-label .req { color: var(--blue); }
.form-control, .form-select { font-family: var(--font); border: 1px solid #D5DEEA; border-radius: var(--radius-sm); font-size: 15px; padding: 12px 14px; background-color: #fff; color: var(--ink); transition: border-color 0.2s, box-shadow 0.2s; }
.form-control::placeholder { color: #9AA7B8; }
.form-control:focus, .form-select:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(20,117,187,0.12); outline: none; }
.form-check-input:checked { background-color: var(--blue); border-color: var(--blue); }

.home-faq { max-width: 900px; margin: 0 auto; }
.faq-wrap { max-width: 900px; margin: 0 auto; }
.faq-group + .faq-group { margin-top: 56px; }
.faq-group-head { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.faq-group-letter { width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0; display: grid; place-items: center; background: linear-gradient(135deg, var(--navy), var(--blue)); color: #fff; font-size: 18px; font-weight: 800; }
.faq-group-head h2 { margin: 0; font-size: 22px; font-weight: 800; letter-spacing: -0.015em; }
.faq-body p { margin: 0 0 10px; }
.faq-body p:last-child { margin-bottom: 0; }
.faq-body a { color: var(--blue); font-weight: 600; }
.faq-grades { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.faq-grades span { min-width: 58px; padding: 8px 14px; border-radius: 10px; display: inline-flex; align-items: center; justify-content: center; background: var(--blue-50); border: 1px solid var(--blue-100); color: var(--navy); font-size: 15px; font-weight: 800; }
.faq-item { border: 1px solid var(--line) !important; border-radius: 14px !important; margin-bottom: 12px; overflow: hidden; background: #fff; }
.faq-btn { font-family: var(--font); background: #fff; color: var(--ink); font-weight: 700; font-size: 15.5px; padding: 20px 24px; border: none; }
.faq-btn:not(.collapsed) { background: #fff; color: var(--blue); box-shadow: inset 0 -1px 0 var(--line); }
.faq-btn:focus { box-shadow: none; }
.faq-body { font-size: 15px; line-height: 1.8; color: var(--text); padding: 20px 24px 24px; background: #fff; }

.login-box { background: #fff; border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow-md); padding: 40px; }

/* ===== FOOTER ===== */
.site-footer { background: var(--navy-950); color: rgba(255,255,255,0.62); font-size: 14.5px; }
.footer-main { padding: 80px 0 56px; }
.footer-logo { height: 110px; width: auto; display: block; }
.footer-desc { margin: 22px 0 26px; line-height: 1.8; max-width: 360px; }
.footer-social { display: flex; gap: 10px; }
.fsoc-btn { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.7); font-size: 14px; transition: all 0.25s; }
.fsoc-btn:hover { background: var(--blue); border-color: var(--blue); color: #fff; transform: translateY(-2px); }
.footer-title { color: #fff; font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 22px; }
.footer-nav { list-style: none; padding: 0; margin: 0; }
.footer-nav li + li { margin-top: 12px; }
.footer-nav a { color: rgba(255,255,255,0.68); }
.footer-nav a:hover { color: #fff; }
.footer-contact-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 20px; }
.footer-contact-list li { display: flex; gap: 14px; align-items: flex-start; }
.fcon-icon { width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0; display: grid; place-items: center; background: rgba(140,198,238,0.08); border: 1px solid rgba(140,198,238,0.16); }
.fcon-icon i { color: var(--blue-300); font-size: 14px; }
.footer-contact-list span { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue-300); margin-bottom: 3px; }
.footer-contact-list p { margin: 0; color: rgba(255,255,255,0.8); line-height: 1.65; }
.footer-contact-list a { color: rgba(255,255,255,0.8); }
.footer-contact-list a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 22px 0; font-size: 13.5px; color: rgba(255,255,255,0.5); }
.footer-bottom strong { color: rgba(255,255,255,0.85); font-weight: 600; }

/* ===== SCROLL REVEAL ===== */
.js [data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2,0.8,0.2,1); }
.js [data-reveal].is-visible { opacity: 1; transform: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1199.98px) {
    .main-navbar .navbar-collapse { border-top: 1px solid var(--line); margin-top: 14px; padding: 10px 0 6px; max-height: calc(100vh - 100px); overflow-y: auto; }
    .main-navbar .nav-link { padding: 12px 2px !important; }
    .main-navbar .nav-link.active::before { display: none; }
    .main-navbar .dropdown-menu { border: 0; box-shadow: none; padding: 0 0 8px; margin: 0 !important; animation: none; }
    .nav-actions { margin: 12px 0 6px; }
    .nav-actions a { flex: 1; }
}

@media (max-width: 991.98px) {
    .section, .process { padding: 80px 0; }
    .hero { padding: 72px 0 150px; }
    .hero-visual { margin: 64px auto 0; max-width: 440px; }
    .params-intro { position: static; }
    .about-pillars { grid-template-columns: 1fr 1fr; }
    .steps { grid-template-columns: 1fr; gap: 0; max-width: 560px; margin: 0 auto; }
    .steps::before { top: 0; bottom: 28px; left: 28px; right: auto; width: 1px; height: auto; background: rgba(140,198,238,0.3); }
    .step { display: grid; grid-template-columns: 56px 1fr; column-gap: 22px; text-align: left; padding: 0 0 32px; }
    .step-num { grid-row: span 2; margin: 0; }
    .step h3 { margin: 12px 0 6px; }
    .process-cta { margin-top: 40px; }
    .adv-panel { padding: 32px; }
    .cta-band { padding: 44px 36px; }
    .stat span { font-size: 11.5px; letter-spacing: 0.08em; white-space: nowrap; }
    .form-card { padding: 32px; }
    .content-aside { position: static; }
    .vm-grid { grid-template-columns: 1fr; }
    .login-shell { grid-template-columns: 1fr; }
    .login-visual { border-right: 0; border-bottom: 1px solid var(--line); padding: 28px; }
    .login-visual img { max-height: 200px; }
}

@media (max-width: 767.98px) {
    .stats-card { grid-template-columns: 1fr 1fr; }
    .stat { padding: 26px 16px; }
    .stat:nth-child(3) { grid-column: 1 / -1; border-top: 1px solid var(--line); }
    .stat:nth-child(3)::before { display: none; }
    .about-points, .adv-grid { grid-template-columns: 1fr; }
    .about-pillars { grid-template-columns: 1fr; }
    .feature-grid { grid-template-columns: 1fr; }
    .closing-note { flex-direction: column; padding: 30px 26px; }
    .section-intro { padding: 64px 0 52px; }
    .about-media { padding: 0 0 32px 24px; }
    .about-media-card { right: 12px; left: 36px; }
}

@media (max-width: 575.98px) {
    /* .g-5 rows are wider than the container's padding on phones and cause sideways scroll */
    .row.g-5 { --bs-gutter-x: 1.5rem; }
    body { font-size: 15px; }
    .section, .process { padding: 64px 0; }
    .actions-section { padding: 56px 0 64px; }
    .cta-wrap { padding-bottom: 64px; }
    .hero { padding: 56px 0 136px; }
    .hero-eyebrow { font-size: 10.5px; letter-spacing: 0.05em; padding: 7px 12px 7px 10px; }
    .hero-actions a { flex: 1 1 100%; }
    .hero-trust { gap: 16px; }
    .scorecard { padding: 24px; }
    .sc-score strong { font-size: 42px; }
    .params-panel { grid-template-columns: 1fr; }
    .param-item, .param-item:nth-child(odd) { border-right: 0; }
    .param-item:nth-last-child(2) { border-bottom: 1px solid var(--line); }
    .param-item { padding: 22px 20px; gap: 14px; }
    .param-num { top: 22px; right: 20px; }
    .pillars { grid-template-columns: 1fr; }
    .adv-panel { padding: 26px 22px; }
    .cta-band { padding: 36px 24px; border-radius: 20px; }
    .cta-band-actions, .process-cta-actions { width: 100%; }
    .cta-band-actions a, .process-cta-actions a { flex: 1 1 100%; }
    .form-card, .login-box { padding: 24px; }
    .content-aside { padding: 26px 22px; }
    .content-aside-title { font-size: 19px; }
    .content-article p { font-size: 15.5px; padding: 22px 0; }
    .content-article .content-article-lead { font-size: 17px; }
    .feature-card { flex-direction: column; gap: 16px; padding: 24px 22px; }
    .timeline::before { left: 21px; }
    .timeline li { grid-template-columns: 44px 1fr; column-gap: 14px; }
    .timeline-num { width: 44px; height: 44px; font-size: 14px; }
    .timeline-card { padding: 20px; }
    .vm-card { padding: 30px 24px; }
    .login-form { padding: 32px 24px; }
    .footer-main { padding: 64px 0 40px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
    .js [data-reveal] { opacity: 1; transform: none; }
}
