@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap');

/* ===== Premium Gold & Navy Design System ===== */
:root {
    --navy: #0b1121;
    --navy-mid: #111a2e;
    --navy-light: #182240;
    --navy-surface: #1c2742;

    --gold: #c8a04e;
    --gold-light: #e8c96e;
    --gold-bright: #f5dea0;
    --gold-dark: #a07d30;
    --gold-glow: rgba(200, 160, 78, 0.25);

    --white: #ffffff;
    --off-white: #f7f6f3;
    --cream: #faf8f4;
    --warm-grey: #e8e4dd;
    --text: #1a1a2e;
    --text-secondary: #4a4a5a;
    --text-muted: #8a8a9a;
    --border: rgba(0, 0, 0, 0.07);
    --border-gold: rgba(200, 160, 78, 0.2);

    --font: 'Manrope', system-ui, -apple-system, sans-serif;
    --max-w: 1260px;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
    --radius-full: 100px;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
    --shadow: 0 4px 24px rgba(0,0,0,0.06);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.1);
    --shadow-xl: 0 24px 64px rgba(0,0,0,0.14);
    --shadow-gold: 0 8px 32px rgba(200, 160, 78, 0.2);
    --shadow-gold-lg: 0 16px 48px rgba(200, 160, 78, 0.25);

    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-back: cubic-bezier(0.34, 1.56, 0.64, 1);
    --t: 0.4s;
    --t-fast: 0.2s;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.75;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--gold-light); }
ul, ol { list-style: none; }
::selection { background: var(--gold); color: var(--navy); }

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font);
    color: var(--navy);
    line-height: 1.15;
    letter-spacing: -0.025em;
}
h1 { font-size: clamp(2rem, 4.2vw + 0.5rem, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 2.8vw + 0.6rem, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 0.6vw + 1rem, 1.3rem); font-weight: 600; }

/* ===== Layout ===== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }

.section {
    padding: clamp(60px, 7vw, 110px) 0;
    position: relative;
}

.section--cream { background: var(--cream); }
.section--dark {
    background: var(--navy);
    color: var(--white);
}
.section--dark h2, .section--dark h3 { color: var(--white); }

.section-header {
    text-align: center;
    margin-bottom: clamp(36px, 4.5vw, 64px);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-size: clamp(1.6rem, 2.8vw + 0.6rem, 2.6rem);
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.025em;
    margin-bottom: 0;
    text-transform: none;
    position: relative;
    text-align: center;
}

.section--dark .section-label { color: var(--gold-light); }
.section--dark .section-label::before { background: var(--gold-light); }
.section--dark .section-title { color: var(--white); }

.section-desc {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 580px;
    margin: 16px auto 0;
    line-height: 1.7;
}
.section--dark .section-desc { color: rgba(255,255,255,0.5); }

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

/* ===== Utility Bar ===== */
.utility-bar {
    background: var(--navy);
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: relative;
    z-index: 1002;
}
.utility-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.utility-bar__left a {
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 0.06em;
    font-size: 0.76rem;
    text-transform: uppercase;
    transition: all var(--t-fast);
}
.utility-bar__left a:hover {
    color: var(--gold-light);
    text-shadow: 0 0 16px var(--gold-glow);
}
.utility-bar__right {
    display: flex;
    gap: 28px;
    align-items: center;
}
.utility-bar__item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.65);
}
.utility-bar__item svg {
    width: 14px; height: 14px;
    stroke: var(--gold);
    fill: none;
    flex-shrink: 0;
}

/* ===== Navigation ===== */
.main-nav {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all var(--t);
}
.main-nav.scrolled {
    background: rgba(255,255,255,0.97);
    box-shadow: 0 4px 32px rgba(0,0,0,0.08);
}
.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo__icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.logo__icon::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 13px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    z-index: -1;
    opacity: 0.5;
}
.logo__icon svg { width: 22px; height: 22px; }
.logo__text { display: flex; flex-direction: column; min-width: 0; }
.logo__name {
    font-size: 1.02rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: var(--navy);
    line-height: 1.3;
    white-space: nowrap;
}

/* Nav links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-links > li > a {
    font-size: 0.84rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--navy);
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    position: relative;
    transition: all var(--t);
    display: flex;
    align-items: center;
    gap: 5px;
}
.nav-links > li > a:hover {
    color: var(--gold-dark);
    background: rgba(200, 160, 78, 0.06);
}
.nav-links > li > a.active {
    color: var(--gold-dark);
}
.nav-links > li > a.active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--gold);
    border-radius: 1px;
}

/* Dropdown — FIXED hover gap */
.has-dropdown { position: relative; }
.has-dropdown > a .dropdown-arrow {
    width: 10px; height: 10px;
    transition: transform var(--t);
}

.dropdown-menu {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
    padding: 20px 24px;
    min-width: min(740px, calc(100vw - 40px));
    max-width: calc(100vw - 40px);
    z-index: 100;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px 28px;
    transition: all 0.3s var(--ease);
    pointer-events: none;
}

/* Bridge element to prevent hover gap */
.has-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 12px;
    background: transparent;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.has-dropdown:hover > a .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    font-size: 0.84rem;
    color: var(--text-secondary);
    border-radius: var(--radius-xs);
    transition: all var(--t-fast);
    font-weight: 500;
}
.dropdown-menu a::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    flex-shrink: 0;
    transition: all var(--t-fast);
}
.dropdown-menu a:hover {
    color: var(--navy);
    background: var(--cream);
}
.dropdown-menu a:hover::before {
    opacity: 1;
}

/* Mobile toggle */
.menu-toggle {
    display: none;
    background: none;
    border: 1px solid var(--border);
    cursor: pointer;
    padding: 8px 10px;
    color: var(--navy);
    border-radius: var(--radius-sm);
    transition: all var(--t-fast);
}
.menu-toggle:hover { background: var(--cream); }
.menu-toggle svg { width: 22px; height: 22px; }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    background: var(--navy);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 40%, rgba(200, 160, 78, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 60%, rgba(200, 160, 78, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 50% 20%, rgba(255, 220, 120, 0.05) 0%, transparent 50%);
    animation: heroGlow 10s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% { opacity: 0.8; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.05); }
}

/* Subtle grid */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(200,160,78,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200,160,78,0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent);
}

/* Decorative line */
.hero-line {
    position: absolute;
    top: 80px;
    right: 10%;
    width: 1px;
    height: 200px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    opacity: 0.3;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    position: relative;
    z-index: 2;
    min-height: 700px;
    padding-top: 40px;
    padding-bottom: 40px;
    text-align: center;
}

.hero__content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}
.hero__content p {
    margin-left: auto;
    margin-right: auto;
}
.hero__actions {
    justify-content: center;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px 8px 12px;
    background: rgba(200, 160, 78, 0.1);
    border: 1px solid rgba(200, 160, 78, 0.2);
    border-radius: var(--radius-full);
    color: var(--gold-light);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 32px;
}
.hero__badge-dot {
    width: 8px; height: 8px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--gold-glow);
    animation: dotPulse 2s ease infinite;
}
@keyframes dotPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 12px var(--gold-glow); }
    50% { opacity: 0.5; box-shadow: 0 0 24px var(--gold-glow); }
}

.hero__content h1 {
    color: var(--white);
    font-size: clamp(2.1rem, 4.6vw + 0.6rem, 3.8rem);
    letter-spacing: -0.02em;
    line-height: 1.08;
    margin-bottom: 24px;
}
.hero__content h1 .gold {
    color: var(--gold-light);
}

.hero__content p {
    color: rgba(255,255,255,0.55);
    font-size: clamp(0.98rem, 0.4vw + 0.9rem, 1.12rem);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 480px;
}

.hero__actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    font-weight: 700;
    font-size: 0.88rem;
    border-radius: var(--radius-full);
    letter-spacing: 0.04em;
    transition: all var(--t);
    box-shadow: var(--shadow-gold);
    text-decoration: none;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-lg);
    color: var(--white);
}
.btn-primary svg { width: 18px; height: 18px; transition: transform var(--t); }
.btn-primary:hover svg { transform: translateX(3px); }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 28px;
    background: transparent;
    color: rgba(255,255,255,0.7);
    font-weight: 600;
    font-size: 0.88rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255,255,255,0.15);
    transition: all var(--t);
    text-decoration: none;
    cursor: pointer;
}
.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold-light);
    background: rgba(200, 160, 78, 0.06);
}

/* Hero right visual */
.hero__visual {
    flex-shrink: 0;
    width: 420px;
    height: 420px;
    position: relative;
}
.hero__visual-ring {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(200, 160, 78, 0.15);
    border-radius: 50%;
    animation: ringRotate 30s linear infinite;
}
.hero__visual-ring::before {
    content: '';
    position: absolute;
    top: -3px; left: 50%;
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--gold-glow);
}
.hero__visual-ring:nth-child(2) {
    inset: 40px;
    border-color: rgba(200, 160, 78, 0.1);
    animation-duration: 25s;
    animation-direction: reverse;
}
.hero__visual-ring:nth-child(3) {
    inset: 80px;
    border-color: rgba(200, 160, 78, 0.08);
    animation-duration: 20s;
}
@keyframes ringRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.hero__visual-center {
    position: absolute;
    inset: 120px;
    background: rgba(200, 160, 78, 0.08);
    border: 1px solid rgba(200, 160, 78, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}
.hero__visual-center span {
    font-family: var(--font);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--gold);
    text-align: center;
    letter-spacing: 0.04em;
    line-height: 1.3;
}

/* ===== Stats ===== */
.stats-bar {
    position: relative;
    z-index: 3;
    margin-top: -60px;
    padding-bottom: 0;
}
.stats-bar__inner {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 44px 48px;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 32px;
}
.stat-item { text-align: center; position: relative; }
.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -16px;
    top: 10%; height: 80%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--warm-grey), transparent);
}
.stat-item__number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold-dark);
    line-height: 1.1;
    margin-bottom: 4px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    min-width: 0;
}
.stat-item__number a {
    word-break: break-word;
    overflow-wrap: anywhere;
}
.stat-item__label {
    font-size: 0.84rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ===== Feature Cards ===== */
.feature-banners { padding: 100px 0; }

.feature-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: all var(--t);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t);
}
.feature-card:hover {
    border-color: var(--border-gold);
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}
.feature-card:hover::before { transform: scaleX(1); }

.feature-card__icon {
    width: 56px; height: 56px;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: all var(--t);
}
.feature-card:hover .feature-card__icon {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-color: transparent;
    box-shadow: var(--shadow-gold);
}
.feature-card__icon svg {
    width: 26px; height: 26px;
    stroke: var(--gold-dark);
    fill: none;
    transition: stroke var(--t);
}
.feature-card:hover .feature-card__icon svg { stroke: var(--white); }

.feature-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}
.feature-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ===== Organ Block ===== */
.organ-block {
    text-align: center;
    padding: 100px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}
.organ-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(200,160,78,0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(200,160,78,0.04) 0%, transparent 50%);
}
.organ-block .section-label,
.organ-block .section-title { position: relative; }
.organ-block .section-title { color: var(--white); }
.organ-block__name {
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    margin-top: 16px;
    position: relative;
}
.organ-block__accred {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 10px 24px;
    background: rgba(200, 160, 78, 0.1);
    border: 1px solid rgba(200, 160, 78, 0.2);
    border-radius: var(--radius-full);
    color: var(--gold-light);
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    position: relative;
}

/* ===== Object Cards ===== */
.object-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 28px;
    text-align: center;
    transition: all var(--t);
    position: relative;
    overflow: hidden;
}
.object-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    transform: scaleX(0);
    transition: transform var(--t);
}
.object-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-gold);
}
.object-card:hover::after { transform: scaleX(1); }

.object-card__icon {
    width: 80px; height: 80px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    transition: all var(--t);
}
.object-card:hover .object-card__icon {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    box-shadow: var(--shadow-gold);
    transform: scale(1.06) rotate(-2deg);
}
.object-card__icon svg {
    width: 34px; height: 34px;
    stroke: var(--white);
    fill: none;
}
.object-card h3 {
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}
.object-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ===== Timeline ===== */
.timeline { max-width: 780px; margin: 0 auto; position: relative; }
.timeline::before {
    content: '';
    position: absolute;
    left: 40px; top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), var(--gold-dark), rgba(200,160,78,0.2));
}

.timeline__step {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    padding: 20px 0;
    position: relative;
}

.timeline__number {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
    min-width: 82px; height: 82px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border: 2px solid rgba(200, 160, 78, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    flex-shrink: 0;
    transition: all var(--t);
}
.timeline__step:hover .timeline__number {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-color: transparent;
    box-shadow: var(--shadow-gold);
    transform: scale(1.06);
}

.timeline__text {
    padding-top: 26px;
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-secondary);
}
.section--dark .timeline__text { color: rgba(255,255,255,0.6); }
.section--dark .timeline::before { background: linear-gradient(to bottom, var(--gold), rgba(200,160,78,0.2)); }
.section--dark .timeline__number { border-color: rgba(200,160,78,0.3); }

/* ===== Results ===== */
.results-block { max-width: 780px; margin: 0 auto; }
.results-block p {
    margin-bottom: 20px;
    line-height: 1.9;
    color: var(--text-secondary);
    font-size: 1.05rem;
}
.results-highlight {
    background: linear-gradient(135deg, rgba(200,160,78,0.04), rgba(200,160,78,0.08));
    border-left: 3px solid var(--gold);
    padding: 28px 32px;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 28px 0;
}
.results-highlight p { color: var(--text); margin-bottom: 0; }

/* ===== Breadcrumb ===== */
.breadcrumb {
    padding: 20px 0;
    font-size: 0.84rem;
    color: var(--text-muted);
}
.breadcrumb a { color: var(--text-muted); font-weight: 500; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { margin: 0 10px; color: var(--warm-grey); }

/* ===== Page Content ===== */
.page-header {
    background: var(--cream);
    padding: clamp(32px, 4vw, 52px) 0;
    border-bottom: 1px solid var(--border);
    position: relative;
}
.page-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark), var(--gold-light));
}
.page-header h1 {
    font-size: clamp(1.4rem, 2.4vw + 0.6rem, 2.2rem);
    font-weight: 800;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.page-content { padding: clamp(40px, 5vw, 64px) 0 clamp(60px, 8vw, 100px); }
.page-content .content-body { max-width: 780px; }
.page-content .content-body p {
    margin-bottom: 20px;
    line-height: 1.9;
    color: var(--text-secondary);
    font-size: 1.02rem;
}
.page-content .content-body ul { margin: 20px 0; }
.page-content .content-body ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    line-height: 1.8;
    color: var(--text-secondary);
}
.page-content .content-body ul li::before {
    content: '';
    position: absolute;
    left: 0; top: 12px;
    width: 8px; height: 8px;
    background: var(--gold);
    border-radius: 50%;
}
.page-content .content-body h2 {
    font-size: 1.5rem;
    margin: 40px 0 20px;
    padding-left: 16px;
    position: relative;
}
.page-content .content-body h2::before {
    content: '';
    position: absolute;
    left: 0; top: 4px; bottom: 4px;
    width: 3px;
    background: linear-gradient(to bottom, var(--gold), var(--gold-dark));
    border-radius: 2px;
}
.page-content .content-body h3 {
    font-size: 1.2rem;
    margin: 28px 0 14px;
}

/* ===== Type Cards ===== */
.type-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 32px;
    transition: all var(--t);
    position: relative;
    overflow: hidden;
}
.type-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--gold), var(--gold-dark));
    opacity: 0;
    transition: opacity var(--t);
}
.type-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
    border-color: var(--border-gold);
}
.type-card:hover::before { opacity: 1; }

.type-card__number {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 16px;
}
.type-card h3 {
    font-size: 1.1rem;
    line-height: 1.4;
}

/* ===== Contact ===== */
.contact-info {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
    margin-bottom: 72px;
}
.contact-info__item {
    text-align: center;
    padding: 44px 28px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--t);
}
.contact-info__item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-gold);
}
.contact-info__icon {
    width: 72px; height: 72px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all var(--t);
}
.contact-info__item:hover .contact-info__icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    box-shadow: var(--shadow-gold);
}
.contact-info__icon svg { width: 30px; height: 30px; stroke: var(--white); fill: none; }
.contact-info__item h3 { font-size: 1.05rem; margin-bottom: 8px; }
.contact-info__item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.contact-info__item a {
    color: var(--text);
    font-weight: 600;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.contact-form {
    max-width: 640px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 52px 44px;
    box-shadow: var(--shadow);
}
.contact-form .form-group { margin-bottom: 24px; }
.contact-form label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 0.95rem;
    color: var(--text);
    transition: all var(--t);
    outline: none;
    background: var(--cream);
}
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(200,160,78,0.1);
    background: var(--white);
}
.contact-form textarea { min-height: 150px; resize: vertical; }
.contact-form .form-error {
    font-size: 0.8rem;
    color: #dc2626;
    margin-top: 6px;
    display: none;
    font-weight: 500;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    font-family: var(--font);
    font-size: 0.92rem;
    font-weight: 700;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--t);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    box-shadow: var(--shadow-gold);
    width: 100%;
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-lg);
    color: var(--white);
}

.form-success {
    display: none;
    text-align: center;
    padding: 36px;
    background: rgba(200,160,78,0.06);
    border: 1px solid rgba(200,160,78,0.2);
    border-radius: var(--radius);
    color: var(--navy);
    font-weight: 600;
    font-size: 1.05rem;
}
.form-fail {
    display: none;
    text-align: center;
    margin-top: 16px;
    padding: 14px 18px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: var(--radius-sm);
    color: #b91c1c;
    font-weight: 500;
    font-size: 0.92rem;
}
.btn[disabled] { opacity: 0.6; cursor: not-allowed; transform: none; }

/* ===== Placeholder ===== */
.placeholder-block {
    text-align: center;
    padding: 80px 20px;
    background: var(--cream);
    border-radius: 24px;
    border: 2px dashed var(--warm-grey);
}
.placeholder-block svg {
    width: 72px; height: 72px;
    stroke: var(--text-muted);
    fill: none;
    margin: 0 auto 20px;
    display: block;
}
.placeholder-block p {
    color: var(--text-muted);
    font-size: 1.15rem;
    font-weight: 500;
}

/* ===== Team Cards ===== */
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.team-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 44px 28px;
    text-align: center;
    transition: all var(--t);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.team-card__avatar {
    width: 110px; height: 110px;
    background: var(--cream);
    border: 2px solid var(--warm-grey);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.team-card__avatar svg { width: 48px; height: 48px; stroke: var(--text-muted); fill: none; }
.team-card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.team-card p { font-size: 0.88rem; color: var(--text-muted); }

/* ===== PDF Link ===== */
.pdf-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--navy);
    font-weight: 600;
    transition: all var(--t);
    margin-top: 24px;
}
.pdf-link:hover {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--white);
    border-color: transparent;
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}
.pdf-link svg { width: 22px; height: 22px; fill: currentColor; }

/* ===== Document Cards ===== */
.doc-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 32px 0 16px;
}
.doc-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 24px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: left;
    cursor: pointer;
    font-family: var(--font);
    transition: all var(--t);
    position: relative;
    overflow: hidden;
}
.doc-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--gold), var(--gold-dark));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform var(--t);
}
.doc-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-gold);
}
.doc-card:hover::before { transform: scaleY(1); }

.doc-card__icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--t);
}
.doc-card:hover .doc-card__icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    box-shadow: var(--shadow-gold);
}
.doc-card__icon svg {
    width: 24px; height: 24px;
    stroke: var(--white);
    fill: none;
}

.doc-card__body {
    flex: 1;
    min-width: 0;
}
.doc-card__body h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
    line-height: 1.4;
}
.doc-card__meta {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.doc-card__arrow {
    width: 20px; height: 20px;
    stroke: var(--text-muted);
    fill: none;
    flex-shrink: 0;
    transition: all var(--t);
}
.doc-card:hover .doc-card__arrow {
    stroke: var(--gold-dark);
    transform: translateX(4px);
}

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

/* ===== PDF Inline Viewer ===== */
.pdf-viewer {
    margin: 24px 0 16px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.pdf-viewer__toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 20px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
    flex-wrap: wrap;
}

.pdf-viewer__title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--white);
    min-width: 0;
}
.pdf-viewer__title svg {
    width: 20px; height: 20px;
    stroke: var(--gold-light);
    fill: none;
    flex-shrink: 0;
}
.pdf-viewer__title span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pdf-viewer__download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-gold);
    transition: all var(--t-fast);
    white-space: nowrap;
    flex-shrink: 0;
}
.pdf-viewer__download:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-gold-lg);
    color: var(--white);
}
.pdf-viewer__download svg { width: 16px; height: 16px; }

.pdf-viewer__frame {
    height: 720px;
    background: #525659;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px;
    gap: 12px;
}

.pdf-viewer__page {
    display: block;
    background: var(--white);
    box-shadow: 0 4px 24px rgba(0,0,0,0.35);
    max-width: 100%;
    height: auto;
}

.pdf-viewer__loader,
.pdf-viewer__error {
    margin: auto;
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    padding: 24px;
}
.pdf-viewer__error a {
    color: var(--gold-light);
    font-weight: 600;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .pdf-viewer__toolbar {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    .pdf-viewer__download { justify-content: center; }
    .pdf-viewer__frame { height: 560px; }
}

/* ===== CTA Block ===== */
.cta-block {
    background: var(--navy);
    padding: clamp(56px, 7vw, 96px) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 30% 50%, rgba(200, 160, 78, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 70% 50%, rgba(200, 160, 78, 0.06) 0%, transparent 50%);
    pointer-events: none;
}
.cta-block__inner {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
}
.cta-block__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--gold-light);
    margin-bottom: 18px;
}
.cta-block__label::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--gold-light);
}
.cta-block__title {
    color: var(--white);
    font-size: clamp(1.4rem, 2.2vw + 0.6rem, 2rem);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}
.cta-block__desc {
    color: rgba(255,255,255,0.55);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 auto 32px;
    max-width: 520px;
}

/* ===== Footer ===== */
.footer {
    background: var(--navy);
    color: rgba(255,255,255,0.5);
    padding: 52px 0;
    text-align: center;
    font-size: 0.85rem;
    position: relative;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.footer p {
    margin-bottom: 18px;
    line-height: 1.7;
}
.footer a {
    color: var(--gold);
    font-weight: 500;
    line-height: 1.7;
    display: inline-block;
}
.footer a:hover { color: var(--gold-light); }

/* ===== Animations ===== */
.fade-in {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

.fade-in-left {
    opacity: 0;
    transform: translateX(-36px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.fade-in-left.visible { opacity: 1; transform: translateX(0); }

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.scale-in.visible { opacity: 1; transform: scale(1); }

.stagger > * {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.08s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.16s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.24s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.32s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.4s; }
.stagger.visible > * { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */

/* Large desktops — keep container comfortable on wide screens */
@media (min-width: 1440px) {
    :root { --max-w: 1320px; }
}

/* Laptop / small desktop (1100–1260) — tighten nav */
@media (max-width: 1200px) {
    .nav-links { gap: 4px; }
    .nav-links > li > a { padding: 10px 12px; font-size: 0.8rem; }
    .logo__name { font-size: 0.92rem; }
}

/* Tablet landscape (1024) — switch 4→2 col grids, tighten hero */
@media (max-width: 1024px) {
    .container { padding: 0 24px; }

    .dropdown-menu {
        min-width: min(540px, calc(100vw - 40px));
        grid-template-columns: repeat(2,1fr);
        padding: 16px 20px;
    }

    .utility-bar { font-size: 0.74rem; }
    .utility-bar__right { gap: 18px; }
    .utility-bar__item:first-child { display: none; } /* hide clock, keep phone + address */

    .hero { min-height: 560px; }
    .hero .container { gap: 40px; min-height: 560px; }

    .stats-bar__inner {
        grid-template-columns: repeat(2,1fr);
        padding: 32px 32px;
        gap: 24px 32px;
    }
    .stat-item:nth-child(2)::after { display: none; }
    .stat-item__number { font-size: 2.2rem; }

    .grid-4 { grid-template-columns: repeat(2,1fr); }
    .contact-info { grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
    .contact-info__item { padding: 32px 20px; }
    .team-grid { grid-template-columns: repeat(2,1fr); }
}

/* Tablet portrait + small laptop (≤ 900px) — drop 3-col to 2-col */
@media (max-width: 900px) {
    .grid-3 { grid-template-columns: repeat(2,1fr); }
    .contact-info { grid-template-columns: repeat(2,1fr); }
    .utility-bar__item:nth-child(3) { display: none; } /* hide address, keep phone only */
    .utility-bar__right { gap: 0; }

}

/* Mobile menu breakpoint (≤ 860px) — switch to hamburger earlier to avoid cramped nav */
@media (max-width: 860px) {
    .main-nav .container { height: 68px; }
    .logo__name { font-size: 0.82rem; letter-spacing: 0; }
    .logo__icon { width: 40px; height: 40px; }
    .logo__icon svg { width: 20px; height: 20px; }

    .menu-toggle { display: flex; align-items: center; justify-content: center; }

    .nav-links {
        display: none;
        position: fixed;
        top: 0; right: 0;
        width: min(380px, 94vw);
        max-width: 100vw;
        height: 100dvh;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: 80px 18px 32px;
        gap: 0;
        box-shadow: -8px 0 48px rgba(0,0,0,0.12);
        z-index: 999;
        overflow-y: auto;
        overflow-x: hidden;
        overscroll-behavior: contain;
        box-sizing: border-box;
    }
    .nav-links.active { display: flex; }
    .nav-links * { box-sizing: border-box; min-width: 0; }
    .nav-links > li {
        border-bottom: 1px solid var(--border);
        width: 100%;
        list-style: none;
    }
    .nav-links > li:last-child { border-bottom: none; }
    .nav-links > li > a {
        display: flex !important;
        padding: 14px 6px;
        font-size: 0.92rem;
        background: none !important;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        width: 100%;
    }
    .nav-links > li > a.active {
        color: var(--gold-dark);
    }
    .nav-links > li > a.active::after { display: none; }
    .nav-links > li > a .dropdown-arrow {
        flex-shrink: 0;
        transition: transform var(--t-fast);
    }

    .dropdown-menu {
        visibility: visible;
        opacity: 1;
        display: none !important;
        position: static !important;
        transform: none !important;
        inset: auto !important;
        min-width: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        max-height: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 4px 0 12px 0 !important;
        margin: 0 0 6px 0;
        background: transparent;
        pointer-events: auto;
        grid-template-columns: none !important;
        gap: 0 !important;
    }
    .has-dropdown::after { display: none; }
    .has-dropdown.dropdown-open .dropdown-menu { display: block !important; }
    .has-dropdown:hover .dropdown-menu { display: none !important; }
    .has-dropdown.dropdown-open:hover .dropdown-menu { display: block !important; }
    .has-dropdown.dropdown-open > a .dropdown-arrow { transform: rotate(180deg); }
    .dropdown-menu a {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 10px 12px !important;
        margin: 2px 0;
        font-size: 0.85rem;
        line-height: 1.45;
        color: var(--text-secondary);
        background: rgba(200,160,78,0.04);
        border-radius: 8px;
        border-left: 2px solid transparent;
        white-space: normal !important;
        word-break: normal;
        overflow-wrap: break-word;
        text-align: left;
        gap: 0 !important;
    }
    .dropdown-menu a:hover,
    .dropdown-menu a:active {
        background: rgba(200,160,78,0.12);
        border-left-color: var(--gold);
        color: var(--navy);
    }
    .dropdown-menu a::before { display: none !important; }

    .nav-overlay {
        display: none;
        position: fixed; inset: 0;
        background: rgba(0,0,0,0.5);
        backdrop-filter: blur(4px);
        z-index: 998;
    }
    .nav-overlay.active { display: block; }

    html { scroll-padding-top: 78px; }
}

/* Mobile (≤ 768px) — stack hero, 1-col grids, form tweaks */
@media (max-width: 768px) {
    .container { padding: 0 20px; }

    .utility-bar { padding: 8px 0; }
    .utility-bar .container { flex-direction: column; gap: 6px; }
    .utility-bar__left a { font-size: 0.72rem; letter-spacing: 0.04em; }
    .utility-bar__right { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
    .utility-bar__item:first-child { display: flex; }
    .utility-bar__item:nth-child(3) { display: none; }
    .utility-bar__item { font-size: 0.72rem; }

    .hero { min-height: auto; padding: 40px 0 60px; }
    .hero .container {
        flex-direction: column;
        text-align: center;
        min-height: auto;
        gap: 32px;
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .hero__content { max-width: 100%; }
    .hero__content p { margin-left: auto; margin-right: auto; }
    .hero__badge { margin-bottom: 24px; }
    .hero__actions { justify-content: center; }
    .hero__visual { display: none; }
    .hero-line { display: none; }

    .stats-bar { margin-top: -40px; }
    .stats-bar__inner {
        grid-template-columns: repeat(2,1fr);
        padding: 24px 20px;
        gap: 18px;
        border-radius: 14px;
    }
    .stat-item:not(:last-child)::after { display: none; }
    .stat-item__number[data-count] { font-size: 2rem; line-height: 1.2; }
    .stat-item__number:not([data-count]) { font-size: 1.15rem !important; line-height: 1.35 !important; }
    .stat-item__number a { font-size: 1rem; word-break: break-word; }
    .stat-item__label { font-size: 0.78rem; }

    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; gap: 16px; }
    .contact-info { grid-template-columns: 1fr; gap: 16px; margin-bottom: 48px; }
    .contact-info__item { padding: 32px 20px; }
    .contact-form { padding: 28px 20px; border-radius: var(--radius); }
    .team-grid { grid-template-columns: 1fr; gap: 16px; }

    .feature-banners { padding: 64px 0; }
    .feature-card { padding: 28px 22px; }
    .object-card { padding: 32px 20px; }

    .organ-block { padding: 64px 0; }
    .organ-block__name { font-size: 1.15rem; }

    .timeline { padding-left: 4px; }
    .timeline__step { gap: 18px; padding: 14px 0; }
    .timeline__number { min-width: 56px; height: 56px; font-size: 1rem; border-radius: 14px; }
    .timeline::before { left: 28px; }
    .timeline__text { padding-top: 18px; font-size: 0.98rem; line-height: 1.65; }

    .results-highlight { padding: 22px 20px; }

    .btn-primary, .btn-outline { padding: 14px 22px; font-size: 0.84rem; }

    .page-content .content-body h2 { font-size: 1.25rem; margin: 32px 0 14px; }
    .page-content .content-body h3 { font-size: 1.05rem; }
    .page-content .content-body p,
    .page-content .content-body ul li { font-size: 0.96rem; line-height: 1.75; }

    .breadcrumb {
        padding: 14px 0;
        font-size: 0.76rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.6;
    }
    .breadcrumb span { margin: 0 6px; }

    .footer { padding: 36px 0; }
    .footer a { display: inline-block; line-height: 1.5; }
}

/* Small mobile (≤ 480px) — tighten further */
@media (max-width: 480px) {
    .container { padding: 0 16px; }

    .utility-bar__left a { font-size: 0.68rem; }
    .utility-bar__right { gap: 10px; }

    .main-nav .container { height: 62px; }
    .logo__name { font-size: 0.72rem; letter-spacing: 0; }
    .logo__icon { width: 36px; height: 36px; border-radius: 10px; }
    .logo__icon svg { width: 18px; height: 18px; }

    .hero__badge { font-size: 0.68rem; padding: 6px 14px 6px 10px; }
    .hero__content p { font-size: 0.95rem; }

    .stats-bar__inner { grid-template-columns: 1fr; padding: 20px 18px; }
    .stat-item__number[data-count] { font-size: 1.6rem; }
    .stat-item__number:not([data-count]) { font-size: 1.05rem !important; }
    .stat-item__number a { font-size: 0.92rem; }

    .btn-primary, .btn-outline { width: 100%; justify-content: center; padding: 14px 20px; }
    .hero__actions { flex-direction: column; width: 100%; gap: 12px; }
    .hero__actions a { width: 100%; }

    .contact-form { padding: 24px 16px; }
    .btn { font-size: 0.86rem; padding: 14px 24px; }

    .organ-block__accred {
        padding: 8px 16px;
        font-size: 0.75rem;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        line-height: 1.4;
    }

    .timeline::before { left: 22px; }
    .timeline__number { min-width: 44px; height: 44px; font-size: 0.86rem; border-radius: 12px; }
    .timeline__step { gap: 14px; }
    .timeline__text { padding-top: 12px; font-size: 0.92rem; }

    .doc-card { padding: 16px 14px; gap: 14px; }
    .doc-card__icon { width: 44px; height: 44px; }
    .doc-card__body h3 { font-size: 0.92rem; }
    .doc-card__meta { font-size: 0.7rem; }

    .page-content .content-body ul li { padding-left: 22px; }
    .page-content .content-body ul li::before { width: 6px; height: 6px; top: 10px; }

    .pdf-viewer__frame { height: 480px; padding: 8px; }
    .pdf-viewer__title { font-size: 0.85rem; }
    .pdf-viewer__download { font-size: 0.72rem; padding: 8px 14px; }
}

/* Extra small (≤ 360px) */
@media (max-width: 360px) {
    .container { padding: 0 12px; }
    .logo__text { display: none; }
    .logo { gap: 0; }
    .hero__content h1 { font-size: 1.8rem; }
    .section-title { font-size: 1.4rem; }
    .stat-item__number a { font-size: 0.85rem; }
}

/* Short screens — prevent hero eating entire viewport */
@media (max-height: 640px) and (min-width: 769px) {
    .hero { min-height: 520px; }
    .hero .container { min-height: 520px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
    .hero__visual-ring { animation: none; }
    .hero__badge-dot { animation: none; }
}
