:root {
    --navy: #061f46;
    --navy-2: #092b5f;
    --gold: #d99a16;
    --gold-2: #f7be35;
    --green: #1d6f43;
    --blue: #0b66c3;
    --orange: #de8a00;
    --purple: #7431a8;
    --ink: #14213d;
    --muted: #6b7280;
    --line: rgba(8, 31, 70, 0.12);
    --surface: #ffffff;
    --soft: #f4f7fb;
    --radius: 22px;
    --shadow: 0 18px 50px rgba(6, 31, 70, 0.12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    color: var(--ink);
    background: #fff;
    line-height: 1.65;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img, picture, video { max-width: 100%; height: auto; display: block; }
.container { width: min(1180px, calc(100% - 34px)); margin: 0 auto; }
.top-strip { background: var(--navy); color: #fff; font-size: 13px; }
.top-strip-inner { display: flex; gap: 24px; justify-content: flex-end; padding: 8px 0; flex-wrap: wrap; }
.site-header { position: sticky; top: 0; z-index: 20; background: rgba(255,255,255,0.96); backdrop-filter: blur(18px); border-bottom: 1px solid var(--line); }
.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: flex; align-items: center; gap: 12px; min-width: 240px; }
.brand img { width: 74px; height: 50px; object-fit: contain; border-radius: 10px; background:#fff; }
.brand strong { display: block; color: var(--navy); font-size: 24px; letter-spacing: .04em; line-height: 1; }
.brand small { display: block; color: var(--green); font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: .06em; }
.site-nav { display: flex; align-items: center; justify-content: flex-end; gap: 4px; font-size: 14px; font-weight: 700; color: var(--navy); }
.site-nav > a, .nav-dropdown > button { padding: 10px 12px; border-radius: 999px; border: 0; background: transparent; color: inherit; cursor: pointer; font: inherit; }
.site-nav > a:hover, .nav-dropdown > button:hover, .site-nav .active { background: #edf4ff; color: var(--blue); }
.nav-cta { background: linear-gradient(135deg, var(--gold), var(--gold-2)) !important; color: var(--navy) !important; box-shadow: 0 10px 25px rgba(217,154,22,.25); }
.nav-login { border: 1px solid var(--line) !important; }
.nav-dropdown { position: relative; }
.dropdown-menu { position: absolute; right: 0; top: 100%; min-width: 255px; padding: 10px; border-radius: 16px; box-shadow: var(--shadow); border: 1px solid var(--line); background: #fff; opacity: 0; visibility: hidden; transform: translateY(8px); transition: .2s; }
.nav-dropdown:hover .dropdown-menu, .nav-dropdown:focus-within .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a { display: block; padding: 11px 12px; border-radius: 12px; color: var(--ink); }
.dropdown-menu a:hover { background: var(--soft); color: var(--blue); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: #fff; border-radius: 12px; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.menu-toggle span { width: 22px; height: 2px; background: var(--navy); display: block; border-radius: 2px; }
.hero { position: relative; background: radial-gradient(circle at top right, rgba(247,190,53,.22), transparent 28%), linear-gradient(135deg, var(--navy), #07152f 60%, #0c3d69); color: #fff; overflow: hidden; }
.hero:before { content:""; position:absolute; inset:auto -12% -35% -12%; height: 330px; background: radial-gradient(ellipse, rgba(18,107,194,.42), transparent 60%); }
.hero-inner { position: relative; display: grid; grid-template-columns: 1.04fr .96fr; gap: 42px; align-items: center; padding: 76px 0; }
.hero-kicker { display: inline-flex; align-items: center; gap: 8px; padding: 8px 13px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; background: rgba(255,255,255,.08); color: #ffe4a4; font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
.hero h1 { margin: 18px 0 18px; font-size: clamp(34px, 5.2vw, 66px); line-height: 1.03; letter-spacing: -.04em; }
.hero p { font-size: clamp(16px, 1.5vw, 19px); color: rgba(255,255,255,.86); max-width: 650px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 13px 18px; border-radius: 999px; font-weight: 800; border: 1px solid transparent; transition: .2s ease; cursor:pointer; }
.btn-primary { background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: var(--navy); box-shadow: 0 16px 38px rgba(217,154,22,.22); }
.btn-secondary { border-color: rgba(255,255,255,.25); color: #fff; background: rgba(255,255,255,.08); }
.btn:hover { transform: translateY(-2px); }
.hero-card, .page-hero-visual, .pdf-visual { overflow: hidden; }
.hero-card { border-radius: 26px; background: rgba(255,255,255,.07); padding: 12px; border: 1px solid rgba(255,255,255,.16); box-shadow: 0 30px 80px rgba(0,0,0,.24); }
.hero-card img, .page-hero-visual img, .pdf-visual img, .mobile-full-image {
    width: 100%;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    object-position: center center !important;
    aspect-ratio: auto !important;
    background: #fff;
    image-rendering: auto;
}
.hero-card img { border-radius: 18px; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 30px; }
.stat-card { padding: 16px; border-radius: 16px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); }
.stat-card strong { display: block; font-size: 26px; color: #fff; line-height: 1; }
.stat-card span { display: block; color: rgba(255,255,255,.72); font-size: 13px; margin-top: 6px; }
.section { padding: 82px 0; }
.section.soft { background: var(--soft); }
.section.dark { background: linear-gradient(135deg, var(--navy), #071631); color: #fff; }
.section-heading { max-width: 760px; margin: 0 auto 38px; text-align: center; }
.section-heading.left { margin-left: 0; text-align: left; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--green); font-weight: 900; text-transform: uppercase; letter-spacing: .12em; font-size: 12px; }
.dark .eyebrow { color: var(--gold-2); }
.section-heading h2 { margin: 8px 0 12px; color: var(--navy); font-size: clamp(28px, 4vw, 46px); line-height: 1.08; letter-spacing: -.03em; }
.dark .section-heading h2 { color: #fff; }
.section-heading p { margin: 0; color: var(--muted); font-size: 17px; }
.dark .section-heading p { color: rgba(255,255,255,.76); }
.division-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.division-card { position: relative; display: flex; flex-direction: column; min-height: 300px; padding: 22px; border-radius: 24px; background: #fff; border: 1px solid var(--line); box-shadow: 0 14px 35px rgba(6,31,70,.08); overflow: hidden; transition: .2s ease; }
.division-card:before { content:""; position:absolute; inset:0 0 auto 0; height: 7px; background: var(--gold); }
.division-card.blue:before { background: var(--blue); }
.division-card.green:before { background: var(--green); }
.division-card.orange:before { background: var(--orange); }
.division-card.purple:before { background: var(--purple); }
.division-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.division-number { color: var(--gold); font-weight: 900; font-size: 14px; letter-spacing: .12em; }
.division-card.blue .division-number { color: var(--blue); }
.division-card.green .division-number { color: var(--green); }
.division-card.orange .division-number { color: var(--orange); }
.division-card.purple .division-number { color: var(--purple); }
.division-icon { font-size: 34px; margin: 10px 0 4px; }
.division-card h3 { margin: 4px 0 10px; color: var(--navy); font-size: 18px; line-height: 1.2; }
.division-card p { margin: 0 0 18px; color: var(--muted); font-size: 14px; }
.card-link { margin-top: auto; color: var(--navy); font-weight: 900; font-size: 14px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 42px; align-items: center; }
.panel { padding: 30px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); }
.panel h3 { margin-top: 0; color: var(--navy); font-size: 26px; line-height: 1.14; }
.panel p { color: var(--muted); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card { padding: 22px; border-radius: 20px; background: #fff; border: 1px solid var(--line); box-shadow: 0 12px 28px rgba(6,31,70,.06); }
.feature-card strong { display: block; color: var(--navy); font-size: 18px; margin-bottom: 7px; }
.feature-card p { margin: 0; color: var(--muted); }
.list-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.list-grid.two { grid-template-columns: repeat(2, 1fr); }
.list-panel { background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 22px; box-shadow: 0 12px 28px rgba(6,31,70,.06); }
.list-panel h3 { margin: 0 0 12px; display: flex; gap: 10px; align-items: center; color: var(--navy); font-size: 18px; line-height: 1.2; }
.list-panel h3 span { width: 34px; height: 34px; border-radius: 12px; background: #edf6ef; display: inline-flex; align-items: center; justify-content: center; flex: 0 0 34px; }
ul { padding-left: 20px; margin: 0; }
li { margin: 7px 0; }
.visual-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; align-items: start; }
.pdf-visual { margin: 0; border-radius: 24px; background: #fff; box-shadow: var(--shadow); border: 1px solid var(--line); }
.pdf-visual figcaption { padding: 10px 14px; color: var(--muted); font-size: 12px; border-top: 1px solid var(--line); background: #fff; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.gallery-grid .pdf-visual { border-radius: 18px; }
.cta-band { position: relative; overflow: hidden; border-radius: 30px; background: linear-gradient(135deg, var(--navy), var(--green)); color: #fff; padding: 44px; display: flex; align-items: center; justify-content: space-between; gap: 30px; box-shadow: var(--shadow); }
.cta-band h2 { margin: 0 0 10px; font-size: clamp(26px, 4vw, 42px); line-height: 1.1; }
.cta-band p { margin: 0; color: rgba(255,255,255,.78); max-width: 650px; }
.page-hero { background: radial-gradient(circle at top right, rgba(217,154,22,.24), transparent 30%), linear-gradient(135deg, var(--navy), #071632); color: #fff; padding: 72px 0 64px; }
.page-hero-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
.breadcrumb { color: rgba(255,255,255,.7); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 18px; }
.page-hero h1 { margin: 0 0 18px; font-size: clamp(32px, 4.6vw, 58px); line-height: 1.06; letter-spacing: -.04em; }
.page-hero p { color: rgba(255,255,255,.82); max-width: 760px; font-size: 18px; }
.page-hero-visual { border-radius: 24px; padding: 10px; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.15); }
.page-hero-visual img { border-radius: 18px; }
.number-chip { display:inline-flex; align-items:center; justify-content:center; width:54px; height:54px; border-radius:18px; background:linear-gradient(135deg,var(--gold),var(--gold-2)); color:var(--navy); font-weight:900; margin-bottom:12px; font-size:20px; }
.timeline { display: grid; grid-template-columns: repeat(8, 1fr); gap: 8px; margin-top: 26px; }
.timeline span { padding: 12px 8px; border-radius: 14px; background: #fff; border: 1px solid var(--line); text-align: center; font-weight: 800; font-size: 12px; color: var(--navy); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 28px; }
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 26px; box-shadow: var(--shadow); }
.contact-card h3 { margin-top:0; color:var(--navy); }
.contact-item { display:flex; gap:12px; padding:14px 0; border-bottom:1px solid var(--line); overflow-wrap:anywhere; }
.contact-item:last-child { border-bottom:0; }
.contact-item span { width:40px; height:40px; border-radius:14px; display:inline-flex; align-items:center; justify-content:center; background:#edf6ef; flex:0 0 40px; }
.form-grid { display:grid; grid-template-columns: 1fr 1fr; gap:14px; }
.form-grid .full { grid-column: 1 / -1; }
label { display:block; font-weight:800; font-size:13px; color: var(--navy); margin-bottom: 6px; }
input, textarea, select { width:100%; border:1px solid var(--line); border-radius:14px; padding:13px 14px; font:inherit; outline:0; background:#fff; }
input:focus, textarea:focus, select:focus { border-color: var(--blue); box-shadow:0 0 0 4px rgba(11,102,195,.1); }
textarea { min-height:140px; resize:vertical; }
.notice, .alert { padding: 14px 16px; border-radius: 14px; border: 1px solid transparent; margin-bottom: 18px; font-weight: 700; }
.notice, .alert-success { background: #eefaf1; color: #165d34; border-color: rgba(29,111,67,.18); }
.alert-error { background:#fff1f1; color:#a91d2b; border-color:rgba(220,53,69,.25); }
.site-footer { background: #061631; color: rgba(255,255,255,.78); padding-top: 58px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .85fr 1fr 1fr; gap: 32px; }
.footer-brand img { width: 120px; border-radius: 14px; background:#fff; }
.site-footer h3 { color:#fff; margin:0 0 14px; }
.site-footer a { display:block; color:rgba(255,255,255,.78); margin:7px 0; }
.site-footer a:hover { color: var(--gold-2); }
.footer-bottom { border-top:1px solid rgba(255,255,255,.1); margin-top:42px; padding: 17px 0; font-size:13px; }
.footer-bottom .container { display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap; }
.reveal { opacity:0; transform: translateY(18px); transition: .55s ease; }
.reveal.visible { opacity:1; transform: translateY(0); }

/* Auth pages */
.auth-section { background: radial-gradient(circle at top left, rgba(247,190,53,.15), transparent 28%), linear-gradient(180deg,#f7faff 0%,#ffffff 100%); padding: 64px 0; }
.auth-layout { display:grid; grid-template-columns: .95fr 1.05fr; gap: 30px; align-items:center; }
.auth-card { background:#fff; border:1px solid var(--line); box-shadow:var(--shadow); border-radius:26px; padding:30px; }
.auth-card h2 { margin:0 0 8px; color:var(--navy); font-size: clamp(26px,3vw,36px); line-height:1.1; }
.auth-card p { color:var(--muted); margin-top:0; }
.auth-form .form-group { margin-bottom: 15px; }
.auth-form .btn { width:100%; margin-top:4px; }
.auth-links, .auth-footer { text-align:center; margin-top:16px; }
.auth-links a, .auth-footer a { color:var(--green); font-weight:800; }
.auth-visual { border-radius:26px; padding:10px; background:#fff; box-shadow:var(--shadow); border:1px solid var(--line); }
.auth-visual img { border-radius:18px; width:100%; height:auto !important; object-fit:contain !important; }
.password-note { font-size:13px; color:var(--muted); margin-top:8px; }

@media (max-width: 1120px) {
    .division-grid { grid-template-columns: repeat(3, 1fr); }
    .site-nav { font-size: 13px; }
    .site-nav > a, .nav-dropdown > button { padding: 9px 9px; }
}
@media (max-width: 900px) {
    .top-strip-inner { justify-content: center; gap: 12px; }
    .menu-toggle { display:flex; }
    .site-nav { position: fixed; left: 16px; right: 16px; top: 102px; display: none; flex-direction: column; align-items: stretch; background:#fff; border:1px solid var(--line); border-radius:22px; padding:14px; box-shadow:var(--shadow); max-height: calc(100vh - 120px); overflow:auto; }
    .site-nav.open { display:flex; }
    .site-nav > a, .nav-dropdown > button { text-align:left; border-radius:12px; }
    .nav-dropdown > button { width:100%; }
    .dropdown-menu { position:static; opacity:1; visibility:visible; transform:none; box-shadow:none; border:0; padding:0 0 0 12px; min-width:auto; }
    .hero-inner, .page-hero-inner, .split, .contact-grid, .auth-layout { grid-template-columns: 1fr; }
    .hero-inner { padding: 48px 0; }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .feature-grid, .list-grid, .list-grid.two, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .timeline { grid-template-columns: repeat(4, 1fr); }
    .page-hero-visual, .auth-visual { order: 2; }
}
@media (max-width: 640px) {
    .container { width: min(100% - 22px, 1180px); }
    .brand { min-width: 0; gap: 9px; }
    .brand img { width: 58px; height: 42px; }
    .brand strong { font-size: 20px; }
    .brand small { font-size: 10px; }
    .nav-wrap { min-height: 70px; }
    .site-nav { top: 90px; left: 12px; right: 12px; }
    .hero h1, .page-hero h1 { letter-spacing: -.03em; font-size: clamp(29px, 9vw, 38px); }
    .hero p, .page-hero p { font-size: 16px; }
    .section { padding: 54px 0; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .btn { width: 100%; }
    .division-grid, .feature-grid, .list-grid, .list-grid.two, .visual-grid, .gallery-grid, .footer-grid { grid-template-columns: 1fr; }
    .division-card { min-height: 0; }
    .stats-row { grid-template-columns: 1fr; }
    .cta-band { padding: 26px; align-items: flex-start; flex-direction: column; border-radius:22px; }
    .form-grid { grid-template-columns: 1fr; }
    .timeline { grid-template-columns: repeat(2, 1fr); }
    .page-hero { padding: 42px 0 36px; }
    .footer-bottom .container { display:block; }
    .top-strip { display:none; }
    .panel, .contact-card, .auth-card { padding: 20px; border-radius: 20px; }
    .auth-section { padding: 36px 0 46px; }
    .hero-card, .page-hero-visual, .pdf-visual, .auth-visual { border-radius: 18px; padding: 6px; overflow: visible; }
    .hero-card img, .page-hero-visual img, .pdf-visual img, .auth-visual img {
        border-radius: 14px;
        width: 100%;
        height: auto !important;
        max-height: none !important;
        object-fit: contain !important;
        object-position: center center !important;
        aspect-ratio: auto !important;
    }
    .pdf-visual figcaption { font-size: 11px; padding: 8px 10px; }
}
