

/* Start:/local/templates/main/asset/css/style.css?177607635483208*/
/* ============================================
   Dignity ADHC ECM - Main Stylesheet
   style.css
   ============================================ */

/* ============================================
   DESIGN SYSTEM TOKENS
   ============================================ */
   :root {
    /* Primary palette */
    --primary: #0C4A6E;
    --primary-dark: #083344;
    --primary-light: #0E7490;
    --on-primary: #FFFFFF;

    /* Secondary */
    --secondary: #0E7490;

    /* Accent palette */
    --accent: #047857;
    --accent-light: #059669;
    --on-accent: #FFFFFF;

    /* Backgrounds */
    --background: #F1F5F9;
    --background-white: #FFFFFF;

    /* Text */
    --foreground: #0F172A;
    --foreground-light: #475569;

    /* Utility */
    --muted: #E2E8F0;
    --border: #94A3B8;
    --border-light: #CBD5E1;
    --destructive: #DC2626;
    --ring: #0C4A6E;

    /* Shadows */
    --card-shadow: 0 2px 16px rgba(12, 74, 110, 0.08);
    --card-shadow-hover: 0 8px 32px rgba(12, 74, 110, 0.15);

    /* Radius */
    --radius: 12px;
    --radius-lg: 16px;
    --radius-full: 9999px;

    /* Typography */
    --font-heading: 'Figtree', 'Noto Sans SC', sans-serif;
    --font-body: 'Noto Sans', 'Noto Sans SC', sans-serif;

    /* Motion */
    --transition: 250ms ease;
}


/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--foreground);
    background: var(--background-white);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.3;
}


/* ============================================
   TYPOGRAPHY
   ============================================ */
h1 { font-size: 52px; font-weight: 700; }
h2 { font-size: 38px; font-weight: 700; }
h3 { font-size: 24px; font-weight: 600; }
h4 { font-size: 20px; font-weight: 600; }

p {
    font-size: 16px;
    color: var(--foreground-light);
    line-height: 1.7;
}

strong {
    font-weight: 600;
}


/* ============================================
   CONTAINER & GRID UTILITIES
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

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


/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    line-height: 1.4;
}

.btn--primary {
    background: var(--primary);
    color: var(--on-primary);
}

.btn--primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(12, 74, 110, 0.3);
}

.btn--accent {
    background: var(--accent);
    color: var(--on-accent);
}

.btn--accent:hover {
    background: #047857;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(4, 120, 87, 0.3);
}

.btn--outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn--outline:hover {
    background: var(--primary);
    color: white;
}

.btn--white {
    background: white;
    color: var(--primary);
}

.btn--white:hover {
    background: var(--background);
    transform: translateY(-1px);
}

.btn--large {
    padding: 16px 36px;
    font-size: 17px;
}

.btn--submit {
    width: 100%;
    height: 52px;
    justify-content: center;
    font-size: 16px;
    border-radius: var(--radius);
}

.btn--submit svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: white;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* ============================================
   SECTION HEADER
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header__tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(12, 74, 110, 0.1);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-header__title {
    font-size: 38px;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 16px;
}

.section-header__text {
    font-size: 17px;
    color: var(--foreground-light);
    max-width: 600px;
    margin: 0 auto;
}


/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    padding: 16px 0;
    transition: box-shadow var(--transition);
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(12, 74, 110, 0.1);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header__logo-icon {
    width: 40px;
    height: 40px;
    /* background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 10px; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.header__logo-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.header__logo-text {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--foreground);
}

.header__logo-text-footer {
    color: #D2D2D2;
}

.header__logo-text span {
    color: var(--primary);
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header__nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--foreground);
    transition: color var(--transition);
    position: relative;
}

.header__nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition);
}

.header__nav-link:hover {
    color: var(--primary);
}

.header__nav-link:hover::after {
    width: 100%;
}

.header__nav-link--active {
    color: var(--primary);
}

.header__nav-link--active::after {
    width: 100%;
}

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

/* Language switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 4px;
    background: var(--muted);
    border-radius: var(--radius-full);
    padding: 4px;
}

.lang-switcher__btn {
    padding: 6px 12px;
    border: none;
    background: transparent;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all var(--transition);
    color: var(--foreground-light);
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.lang-switcher__btn--active {
    background: var(--primary);
    color: white;
}

/* Burger menu */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

.burger span {
    width: 24px;
    height: 2px;
    background: var(--foreground);
    border-radius: 2px;
    transition: all var(--transition);
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu__link {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--foreground);
    transition: color var(--transition);
}

.mobile-menu__link:hover {
    color: var(--primary);
}

.mobile-menu__link--active {
    color: var(--primary);
}


/* ============================================
   HERO SECTION (HOME)
   ============================================ */
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(165deg, var(--background) 0%, #E2E8F0 40%, var(--background-white) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(12, 74, 110, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(4, 120, 87, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(12, 74, 110, 0.1);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
}

.hero__badge svg {
    width: 16px;
    height: 16px;
}

.hero__title {
    font-size: 52px;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 20px;
    line-height: 1.15;
}

.hero__title span {
    color: var(--primary);
}

.hero__text {
    font-size: 18px;
    color: var(--foreground-light);
    margin-bottom: 36px;
    max-width: 500px;
    line-height: 1.7;
}

.hero__buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero__image {
    position: relative;
}

.hero__image-main {
    width: 100%;
    height: 480px;
    background: linear-gradient(135deg, #E2E8F0 0%, #94A3B8 50%, #CBD5E1 100%);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--card-shadow);
}

.hero__image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__image-main svg {
    width: 200px;
    height: 200px;
    opacity: 0.3;
}

.hero__image-float {
    position: absolute;
    background: white;
    border-radius: var(--radius);
    padding: 16px 20px;
    box-shadow: var(--card-shadow-hover);
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero__image-float--top {
    top: -20px;
    right: -20px;
}

.hero__image-float--bottom {
    bottom: 30px;
    left: -30px;
}

.hero__float-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__float-icon--green { background: rgba(4, 120, 87, 0.1); }
.hero__float-icon--blue  { background: rgba(12, 74, 110, 0.1); }

.hero__float-icon svg {
    width: 22px;
    height: 22px;
}

.hero__float-text strong {
    display: block;
    font-size: 14px;
    color: var(--foreground);
}

.hero__float-text span {
    font-size: 12px;
    color: var(--foreground-light);
}


/* ============================================
   PAGE HERO (INNER PAGES)
   ============================================ */
.page-hero {
    padding: 140px 0 60px;
    background: linear-gradient(165deg, var(--background) 0%, #E2E8F0 50%, var(--background-white) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(12, 74, 110, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(4, 120, 87, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.page-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.page-hero__breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: var(--foreground-light);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.page-hero__breadcrumb a {
    color: var(--primary);
    font-weight: 500;
    transition: color var(--transition);
}

.page-hero__breadcrumb a:hover {
    color: var(--primary-dark);
}

.page-hero__breadcrumb span {
    color: var(--border);
}

.page-hero__title {
    font-size: 44px;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.page-hero__text {
    font-size: 18px;
    color: var(--foreground-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.page-hero__subtitle {
    font-size: 18px;
    color: var(--foreground-light);
    line-height: 1.7;
}

/* Breadcrumb component (alternate) */
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: var(--foreground-light);
    margin-bottom: 20px;
}

.breadcrumb a {
    color: var(--primary);
    font-weight: 500;
    transition: color var(--transition);
}

.breadcrumb a:hover {
    color: var(--primary-dark);
}

.breadcrumb__sep {
    color: var(--border);
}


/* ============================================
   STATISTICS SECTION
   ============================================ */
.stats {
    padding: 80px 0;
    background: var(--background-white);
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stats__item {
    text-align: center;
    padding: 32px 20px;
    background: var(--background);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: all var(--transition);
}

.stats__item:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow);
}

.stats__icon {
    width: 56px;
    height: 56px;
    background: rgba(12, 74, 110, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.stats__icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary);
    fill: none;
    stroke-width: 2;
}

.stats__number {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.stats__label {
    font-size: 14px;
    color: var(--foreground-light);
    font-weight: 500;
}


/* ============================================
   SERVICE CARDS (SMALL GRID)
   ============================================ */
.services {
    padding: 100px 0;
    background: var(--background);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: var(--background-white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1px solid var(--border-light);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform var(--transition);
    transform-origin: left;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--card-shadow-hover);
    border-color: var(--border);
}

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

.service-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-card__icon--cyan  { background: rgba(12, 74, 110, 0.1); }
.service-card__icon--green { background: rgba(4, 120, 87, 0.1); }
.service-card__icon--teal  { background: rgba(20, 184, 166, 0.1); }

.service-card__icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 1.8;
}

.service-card__title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 10px;
}

.service-card__text {
    font-size: 15px;
    color: var(--foreground-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    transition: gap var(--transition);
}

.service-card__link:hover {
    gap: 10px;
}

.service-card__link svg {
    width: 16px;
    height: 16px;
    stroke: var(--primary);
    fill: none;
    stroke-width: 2;
}


/* ============================================
   SERVICE CARDS (LARGE WITH IMAGE)
   ============================================ */
.services-list {
    padding: 80px 0 100px;
}

.services-list__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card-lg {
    background: var(--background-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: all var(--transition);
}

.service-card-lg:hover {
    transform: translateY(-6px);
    box-shadow: var(--card-shadow-hover);
}

.service-card-lg__image {
    height: 200px;
    background: linear-gradient(135deg, var(--background), #E2E8F0);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.service-card-lg__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card-lg__image svg {
    width: 64px;
    height: 64px;
    opacity: 0.25;
}

.service-card-lg__image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(12, 74, 110, 0.05) 100%);
}

.service-card-lg__body {
    padding: 28px;
}

.service-card-lg__tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(12, 74, 110, 0.1);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
}

.service-card-lg__title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-card-lg__text {
    font-size: 15px;
    color: var(--foreground-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-card-lg__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    transition: gap var(--transition);
}

.service-card-lg__link:hover {
    gap: 10px;
}

.service-card-lg__link svg {
    width: 16px;
    height: 16px;
    stroke: var(--primary);
    fill: none;
    stroke-width: 2;
}


/* ============================================
   SERVICE DETAIL (2-COLUMN WITH SIDEBAR)
   ============================================ */
.service-hero {
    padding: 140px 0 80px;
    background: linear-gradient(165deg, var(--background) 0%, #E2E8F0 50%, var(--background-white) 100%);
}

.service-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-hero__breadcrumb {
    display: flex;
    gap: 8px;
    font-size: 14px;
    color: var(--foreground-light);
    margin-bottom: 16px;
}

.service-hero__breadcrumb a {
    color: var(--primary);
    font-weight: 500;
}

.service-hero__tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(12, 74, 110, 0.1);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
}

.service-hero__title {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 16px;
}

.service-hero__title span {
    color: var(--primary);
}

.service-hero__text {
    font-size: 18px;
    color: var(--foreground-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

.service-hero__image {
    height: 400px;
    background: linear-gradient(135deg, #E2E8F0, #94A3B8, #CBD5E1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--card-shadow);
    overflow: hidden;
}

.service-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-hero__image svg {
    width: 120px;
    height: 120px;
    opacity: 0.2;
}

.service-detail {
    padding: 80px 0;
}

.service-detail__grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.service-detail__content h2 {
    font-size: 28px;
    margin-bottom: 16px;
}

.service-detail__content p {
    font-size: 16px;
    color: var(--foreground-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-detail__list {
    margin: 20px 0 30px;
}

.service-detail__list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: var(--foreground);
}

.service-detail__list li svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
    margin-top: 2px;
}

.service-detail__sidebar-card {
    background: var(--background);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--border-light);
    position: sticky;
    top: 100px;
}

.service-detail__sidebar-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.service-detail__sidebar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 14px;
}

.service-detail__sidebar-item:last-child {
    border-bottom: none;
}

.service-detail__sidebar-item svg {
    width: 18px;
    height: 18px;
    stroke: var(--primary);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
}


/* ============================================
   PROCESS / STEPS SECTION
   ============================================ */
.process {
    padding: 100px 0;
    background: var(--background-white);
}

.process__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.process__grid::before {
    content: '';
    position: absolute;
    top: 48px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, var(--border), var(--primary), var(--accent), var(--border));
    z-index: 0;
}

.process__step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.process__step-number {
    width: 96px;
    height: 96px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 4px solid white;
    box-shadow: 0 4px 20px rgba(12, 74, 110, 0.2);
}

.process__step-number svg {
    width: 36px;
    height: 36px;
    stroke: white;
    fill: none;
    stroke-width: 2;
}

.process__step-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.process__step-text {
    font-size: 14px;
    color: var(--foreground-light);
    max-width: 220px;
    margin: 0 auto;
}


/* ============================================
   WHY-US SECTION (DARK BACKGROUND)
   ============================================ */
.why-us {
    padding: 100px 0;
    background: linear-gradient(165deg, var(--foreground) 0%, #0F172A 100%);
    color: white;
}

.why-us .section-header__tag {
    background: rgba(255, 255, 255, 0.15);
    color: var(--primary-light);
}

.why-us .section-header__title {
    color: white;
}

.why-us .section-header__text {
    color: rgba(255, 255, 255, 0.7);
}

.why-us__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.why-us__card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.why-us__card:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-4px);
}

.why-us__icon {
    width: 60px;
    height: 60px;
    background: rgba(12, 74, 110, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.why-us__icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary-light);
    fill: none;
    stroke-width: 2;
}

.why-us__title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.why-us__text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
}


/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    padding: 100px 0;
    background: var(--background);
}

.testimonials__slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonials .carousel__slide {
    display: none;
}

.testimonials .carousel__slide--active {
    display: block;
}

.testimonial-card {
    background: var(--background-white);
    border-radius: var(--radius-lg);
    padding: 48px;
    text-align: center;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-light);
}

.testimonial-card__stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-card__stars svg {
    width: 20px;
    height: 20px;
    fill: #FBBF24;
}

.testimonial-card__text {
    font-size: 18px;
    color: var(--foreground);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 28px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.testimonial-card__avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: white;
    font-family: var(--font-heading);
    overflow: hidden;
}

.testimonial-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card__name {
    font-weight: 600;
    font-size: 16px;
}

.testimonial-card__role {
    font-size: 13px;
    color: var(--foreground-light);
}

.testimonials__dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
}

.testimonials__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: all var(--transition);
    border: none;
}

.testimonials__dot--active {
    background: var(--primary);
    width: 32px;
    border-radius: 5px;
}

.testimonials__arrows {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.testimonials__arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
}

.testimonials__arrow:hover {
    border-color: var(--primary);
    background: var(--primary);
}

.testimonials__arrow:hover svg {
    stroke: white;
}

.testimonials__arrow svg {
    width: 18px;
    height: 18px;
    stroke: var(--foreground);
    fill: none;
    stroke-width: 2;
}


/* ============================================
   CTA SECTIONS
   ============================================ */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
}

.cta__inner {
    position: relative;
    z-index: 1;
}

.cta__title {
    font-size: 40px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    font-family: var(--font-heading);
}

.cta__text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta__buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* CTA Help variant (FAQ page) */
.cta-help {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, var(--accent) 100%);
    text-align: center;
    color: white;
}

.cta-help__icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.cta-help__icon svg {
    width: 32px;
    height: 32px;
    stroke: white;
    stroke-width: 2;
    fill: none;
}

.cta-help__title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.cta-help__text {
    font-size: 18px;
    opacity: 0.85;
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.cta-help__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}


/* ============================================
   FAQ TABS & ACCORDION
   ============================================ */
.faq-section {
    padding: 80px 0 100px;
}

.faq-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.faq-tab {
    padding: 10px 24px;
    border: 2px solid var(--border);
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--foreground-light);
    background: var(--background-white);
    cursor: pointer;
    transition: all var(--transition);
}

.faq-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.faq-tab--active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--on-primary);
}

.faq-tab--active:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--on-primary);
}

/* FAQ list */
.faq-list {
    max-width: 820px;
    margin: 0 auto;
}

/* Alternate FAQ list class (service detail pages) */
.faq__list {
    max-width: 800px;
    margin: 0 auto;
}

/* FAQ item */
.faq-item {
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    margin-bottom: 12px;
    background: var(--background-white);
    overflow: hidden;
    transition: box-shadow var(--transition), border-color var(--transition);
}

.faq-item:hover {
    border-color: var(--border);
}

.faq-item--open {
    border-color: var(--primary);
    box-shadow: var(--card-shadow);
}

.faq-item__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    gap: 16px;
    user-select: none;
    transition: background var(--transition);
}

.faq-item__header:hover {
    background: var(--background);
}

.faq-item--open .faq-item__header {
    background: var(--background);
}

.faq-item__question {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 600;
    color: var(--foreground);
    line-height: 1.4;
}

.faq-item--open .faq-item__question {
    color: var(--primary);
}

.faq-item__chevron {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition);
}

.faq-item__chevron svg {
    width: 20px;
    height: 20px;
    stroke: var(--foreground-light);
    stroke-width: 2.5;
    fill: none;
    transition: stroke var(--transition);
}

.faq-item--open .faq-item__chevron {
    transform: rotate(180deg);
}

.faq-item--open .faq-item__chevron svg {
    stroke: var(--primary);
}

.faq-item__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 350ms ease;
}

.faq-item--open .faq-item__body {
    max-height: 500px;
}

.faq-item__answer {
    padding: 0 24px 24px;
    font-size: 15px;
    color: var(--foreground-light);
    line-height: 1.8;
}

.faq-item__answer p {
    margin-bottom: 12px;
}

.faq-item__answer p:last-child {
    margin-bottom: 0;
}

.faq-item__answer ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 12px;
}

.faq-item__answer ul:last-child {
    margin-bottom: 0;
}

.faq-item__answer li {
    margin-bottom: 4px;
}

.faq-item__tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    margin-bottom: 10px;
}

.faq-item__tag--general     { background: rgba(12, 74, 110, 0.1); color: var(--primary); }
.faq-item__tag--services    { background: rgba(4, 120, 87, 0.1); color: var(--accent); }
.faq-item__tag--eligibility { background: rgba(234, 179, 8, 0.15); color: #A16207; }
.faq-item__tag--cost        { background: rgba(168, 85, 247, 0.1); color: #7C3AED; }

/* Alternate FAQ (service detail page) */
.faq__item {
    background: white;
    border-radius: var(--radius);
    margin-bottom: 12px;
    border: 1px solid var(--border-light);
    overflow: hidden;
}

.faq__question {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    transition: background var(--transition);
}

.faq__question:hover {
    background: var(--background);
}

.faq__question svg {
    width: 20px;
    height: 20px;
    stroke: var(--foreground-light);
    fill: none;
    stroke-width: 2;
    transition: transform var(--transition);
    flex-shrink: 0;
}

.faq__item--open .faq__question svg {
    transform: rotate(180deg);
}

.faq__answer {
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--foreground-light);
    line-height: 1.7;
    display: none;
}

.faq__item--open .faq__answer {
    display: block;
}


/* ============================================
   WHO-FOR CARDS
   ============================================ */
.who-for {
    padding: 80px 0;
    background: var(--background);
}

.who-for__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.who-for__card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all var(--transition);
}

.who-for__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow);
}

.who-for__icon {
    width: 64px;
    height: 64px;
    background: rgba(12, 74, 110, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.who-for__icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary);
    fill: none;
    stroke-width: 2;
}

.who-for__title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.who-for__text {
    font-size: 14px;
    color: var(--foreground-light);
}


/* ============================================
   HOW-TO STEPS
   ============================================ */
.how-to {
    padding: 80px 0;
}

.how-to__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.how-to__step {
    text-align: center;
    position: relative;
}

.how-to__step-num {
    width: 56px;
    height: 56px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.how-to__step-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.how-to__step-text {
    font-size: 14px;
    color: var(--foreground-light);
    max-width: 260px;
    margin: 0 auto;
}


/* ============================================
   RELATED SERVICES
   ============================================ */
.related {
    padding: 80px 0;
}

.related__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.related__card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--border-light);
    transition: all var(--transition);
}

.related__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow);
}

.related__card-icon {
    width: 48px;
    height: 48px;
    background: rgba(12, 74, 110, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.related__card-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
    fill: none;
    stroke-width: 2;
}

.related__card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.related__card-text {
    font-size: 14px;
    color: var(--foreground-light);
    margin-bottom: 16px;
}

.related__card-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.related__card-link svg {
    width: 16px;
    height: 16px;
    stroke: var(--primary);
    fill: none;
    stroke-width: 2;
}


/* ============================================
   MISSION (ABOUT PAGE)
   ============================================ */
.mission {
    padding: 80px 0;
}

.mission__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mission__image {
    height: 400px;
    background: linear-gradient(135deg, #E2E8F0, #94A3B8, #CBD5E1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--card-shadow);
    overflow: hidden;
}

.mission__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mission__image svg {
    width: 120px;
    height: 120px;
    opacity: 0.2;
}

.mission__content h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.mission__content p {
    font-size: 16px;
    color: var(--foreground-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.mission__highlight {
    display: flex;
    gap: 16px;
    margin-top: 28px;
}

.mission__highlight-item {
    flex: 1;
    background: var(--background);
    border-radius: var(--radius);
    padding: 20px;
    border: 1px solid var(--border-light);
    text-align: center;
}

.mission__highlight-item strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 4px;
}

.mission__highlight-item span {
    font-size: 13px;
    color: var(--foreground-light);
}


/* ============================================
   TIMELINE (VERTICAL)
   ============================================ */
.timeline-section {
    padding: 80px 0;
    background: var(--background);
}

.timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
    transform: translateX(-50%);
}

.timeline__item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 48px;
    position: relative;
}

.timeline__item:nth-child(odd) {
    flex-direction: row-reverse;
    text-align: right;
}

.timeline__dot {
    width: 16px;
    height: 16px;
    background: var(--primary);
    border-radius: 50%;
    border: 3px solid var(--background-white);
    position: absolute;
    left: 50%;
    top: 8px;
    transform: translateX(-50%);
    z-index: 1;
    box-shadow: 0 0 0 4px rgba(12, 74, 110, 0.2);
}

.timeline__content {
    width: calc(50% - 40px);
    background: var(--background-white);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-light);
}

.timeline__year {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.timeline__text {
    font-size: 14px;
    color: var(--foreground-light);
    line-height: 1.6;
}


/* ============================================
   TEAM CARDS & POPUP MODAL
   ============================================ */
.team {
    padding: 80px 0;
}

.team__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.team__card {
    background: var(--background-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: all var(--transition);
    cursor: pointer;
}

.team__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
}

.team__photo {
    height: 240px;
    background: linear-gradient(135deg, var(--muted), var(--border-light));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.team__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team__photo svg {
    width: 60px;
    height: 60px;
    opacity: 0.2;
}

.team__info {
    padding: 20px;
    text-align: center;
}

.team__name {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.team__role {
    font-size: 13px;
    color: var(--primary);
    font-weight: 500;
}

.team__bio-hint {
    font-size: 12px;
    color: var(--foreground-light);
    margin-top: 8px;
}

/* Team popup modal */
.team-popup-preview,
.team-popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.team-popup-preview--show,
.team-popup--active,
.team-popup.active {
    display: flex;
}

.team-popup__card {
    background: #fff;
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 90%;
    padding: 40px;
    position: relative;
}

.team-popup__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border: none;
    background: var(--muted);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.team-popup__close:hover {
    background: var(--border);
}

.team-popup__close svg {
    width: 16px;
    height: 16px;
    stroke: var(--foreground);
    fill: none;
    stroke-width: 2;
}


/* ============================================
   VALUES CARDS
   ============================================ */
.values {
    padding: 80px 0;
    background: var(--background);
}

.values__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.values__card {
    background: var(--background-white);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all var(--transition);
}

.values__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow);
}

.values__icon {
    width: 64px;
    height: 64px;
    background: rgba(12, 74, 110, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.values__icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary);
    fill: none;
    stroke-width: 2;
}

.values__title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.values__text {
    font-size: 14px;
    color: var(--foreground-light);
    line-height: 1.6;
}


/* ============================================
   PARTNERS GRID
   ============================================ */
.partners {
    padding: 80px 0;
}

.partners__grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.partners__logo {
    width: 140px;
    height: 60px;
    background: var(--muted);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--foreground-light);
    transition: all var(--transition);
    overflow: hidden;
}

.partners__logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.partners__logo:hover {
    background: var(--background);
    box-shadow: var(--card-shadow);
}


/* ============================================
   BLOG CARDS
   ============================================ */
.blog-section {
    padding: 80px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.blog-card {
    background: var(--background-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: var(--card-shadow);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--card-shadow-hover);
}

.blog-card__image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card__image svg {
    width: 56px;
    height: 56px;
    opacity: 0.2;
    fill: white;
}

.blog-card__image--cyan       { background: linear-gradient(135deg, #0C4A6E, #0E7490); }
.blog-card__image--green      { background: linear-gradient(135deg, #047857, #059669); }
.blog-card__image--teal       { background: linear-gradient(135deg, #083344, #2DD4BF); }
.blog-card__image--cyan-light { background: linear-gradient(135deg, #06B6D4, #67E8F9); }
.blog-card__image--green-dark { background: linear-gradient(135deg, #047857, #34D399); }
.blog-card__image--teal-dark  { background: linear-gradient(135deg, #115E59, #5EEAD4); }

.blog-card__body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.blog-card__date {
    font-size: 13px;
    color: var(--foreground-light);
    font-weight: 500;
}

.blog-card__category {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(12, 74, 110, 0.1);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card__category--green {
    background: rgba(4, 120, 87, 0.1);
    color: var(--accent);
}

.blog-card__title {
    font-size: 20px;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card__excerpt {
    font-size: 14px;
    color: var(--foreground-light);
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    transition: all var(--transition);
}

.blog-card__link svg {
    width: 16px;
    height: 16px;
    stroke: var(--primary);
    fill: none;
    stroke-width: 2;
    transition: transform var(--transition);
}

.blog-card__link:hover {
    color: var(--primary-dark);
}

.blog-card__link:hover svg {
    transform: translateX(4px);
    stroke: var(--primary-dark);
}


/* ============================================
   PAGINATION
   ============================================ */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 0 0 80px;
}

.pagination__btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    background: var(--background-white);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--foreground);
    cursor: pointer;
    transition: all var(--transition);
}

.pagination__btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(12, 74, 110, 0.05);
}

.pagination__btn--active {
    background: var(--primary);
    color: var(--on-primary);
    border-color: var(--primary);
}

.pagination__btn--active:hover {
    background: var(--primary-dark);
    color: var(--on-primary);
    border-color: var(--primary-dark);
}

.pagination__btn--arrow {
    border: none;
    background: transparent;
}

.pagination__btn--arrow:hover {
    background: rgba(12, 74, 110, 0.05);
    border: none;
}

.pagination__btn svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}


/* ============================================
   CONTACT INFO CARDS
   ============================================ */
.contact-info {
    padding: 80px 0;
}

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

.contact-card {
    background: var(--background-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: all var(--transition);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
    border-color: var(--border);
}

.contact-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-card__icon--phone   { background: rgba(12, 74, 110, 0.1); }
.contact-card__icon--phone svg { stroke: var(--primary); }
.contact-card__icon--email   { background: rgba(4, 120, 87, 0.1); }
.contact-card__icon--email svg { stroke: var(--accent); }
.contact-card__icon--address { background: rgba(12, 74, 110, 0.1); }
.contact-card__icon--address svg { stroke: var(--primary); }
.contact-card__icon--hours   { background: rgba(4, 120, 87, 0.1); }
.contact-card__icon--hours svg { stroke: var(--accent); }

.contact-card__icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-card__title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-card__text {
    font-size: 15px;
    color: var(--foreground-light);
    line-height: 1.6;
}


/* ============================================
   CONTACT FORM
   ============================================ */
.contact-section {
    padding: 0 0 80px;
}

.contact-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-form {
    background: var(--background-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--card-shadow);
}

.contact-form__title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-form__subtitle {
    font-size: 15px;
    color: var(--foreground-light);
    margin-bottom: 32px;
}

.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label:not(.form-checkbox) {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 8px;
}

.form-group label .required {
    color: var(--destructive);
    margin-left: 2px;
}

.form-group input:not([type="checkbox"]),
.form-group select,
.form-group textarea {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--foreground);
    background: var(--background-white);
    transition: all var(--transition);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.form-group input:not([type="checkbox"])::placeholder,
.form-group textarea::placeholder {
    color: #94A3B8;
}

.form-group input:not([type="checkbox"]):focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(12, 74, 110, 0.12);
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
    cursor: pointer;
}

.form-group textarea {
    height: 140px;
    padding: 14px 16px;
    resize: vertical;
    line-height: 1.6;
}

.form-group__submit {
    margin-bottom: 0;
    margin-top: 8px;
}

/* --- Checkbox consent --- */
.form-group--checkbox {
    margin-bottom: 16px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    position: relative;
    font-weight: 400;
}

.form-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.form-checkbox__mark {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border: 2px solid var(--border-light);
    border-radius: 5px;
    background: var(--background-white);
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.form-checkbox__mark::after {
    content: '';
    display: block;
    width: 6px;
    height: 11px;
    border: solid #fff;
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg) scale(0);
    transition: transform 0.2s ease;
}

.form-checkbox input[type="checkbox"]:checked ~ .form-checkbox__mark {
    background: var(--primary);
    border-color: var(--primary);
}

.form-checkbox input[type="checkbox"]:checked ~ .form-checkbox__mark::after {
    transform: rotate(45deg) scale(1);
}

.form-checkbox input[type="checkbox"]:focus-visible ~ .form-checkbox__mark {
    box-shadow: 0 0 0 3px rgba(12, 74, 110, 0.12);
}

.form-checkbox__text {
    font-size: 14px;
    line-height: 1.5;
    color: var(--muted);
}

.form-checkbox__text a {
    color: var(--primary);
    text-decoration: underline;
    transition: color var(--transition);
}

.form-checkbox__text a:hover {
    color: var(--primary-dark);
}

/* --- Form field errors --- */
.form-input--error,
.form-group .form-input--error {
    border-color: var(--destructive) !important;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-error {
    display: block;
    font-size: 13px;
    color: var(--destructive);
    margin-top: 6px;
    line-height: 1.4;
}

.form-checkbox.form-checkbox--error .form-checkbox__mark {
    border-color: var(--destructive);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

/* --- Form-level error summary --- */
.form-errors {
    background: rgba(220, 38, 38, 0.06);
    border: 1px solid rgba(220, 38, 38, 0.25);
    border-radius: var(--radius);
    padding: 14px 18px;
    margin-bottom: 16px;
}

.form-errors__title {
    font-size: 14px;
    font-weight: 600;
    color: var(--destructive);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-errors__title svg {
    width: 18px;
    height: 18px;
    stroke: var(--destructive);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
}

.form-errors__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.form-errors__list li {
    font-size: 13px;
    color: var(--destructive);
    padding: 2px 0;
    padding-left: 26px;
    position: relative;
}

.form-errors__list li::before {
    content: '\2022';
    position: absolute;
    left: 10px;
    color: var(--destructive);
}

/* Generic form inputs (eligibility form, etc.) */
.form-input,
.form-select {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--foreground);
    background: var(--background-white);
    transition: all var(--transition);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.form-input::placeholder {
    color: #94A3B8;
}

.form-input:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(12, 74, 110, 0.12);
}

.form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}


/* ============================================
   MAP PLACEHOLDER
   ============================================ */
.map-placeholder {
    background: #E2E8F0;
    border-radius: var(--radius-lg);
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.map-placeholder__bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.15) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px);
    background-size: 40px 40px;
}

.map-placeholder__content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.map-placeholder__icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.map-placeholder__icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: var(--primary);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.map-placeholder__label {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 4px;
}

.map-placeholder__sublabel {
    font-size: 14px;
    color: var(--foreground-light);
}


/* ============================================
   ELIGIBILITY CRITERIA CARDS
   ============================================ */
.criteria {
    padding: 80px 0 100px;
}

.criteria__header {
    text-align: center;
    margin-bottom: 56px;
}

.criteria__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(12, 74, 110, 0.1);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
}

.criteria__label svg {
    width: 16px;
    height: 16px;
}

.criteria__title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
}

.criteria__subtitle {
    font-size: 17px;
    color: var(--foreground-light);
    max-width: 560px;
    margin: 0 auto;
}

.criteria__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.criteria-card {
    background: var(--background-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    text-align: center;
    transition: all var(--transition);
}

.criteria-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--card-shadow-hover);
    border-color: var(--border);
}

.criteria-card__icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.criteria-card__icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 1.8;
    fill: none;
}

.criteria-card__icon--teal    { background: rgba(12, 74, 110, 0.1); }
.criteria-card__icon--teal svg { stroke: var(--primary); }
.criteria-card__icon--green    { background: rgba(4, 120, 87, 0.1); }
.criteria-card__icon--green svg { stroke: var(--accent); }
.criteria-card__icon--emerald    { background: rgba(20, 184, 166, 0.1); }
.criteria-card__icon--emerald svg { stroke: #0D9488; }

.criteria-card__title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.criteria-card__text {
    font-size: 14px;
    color: var(--foreground-light);
    line-height: 1.7;
}

.criteria-card__badge {
    display: inline-block;
    margin-top: 14px;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
}

.criteria-card__badge--required {
    background: rgba(12, 74, 110, 0.1);
    color: var(--primary);
}

.criteria-card__badge--varies {
    background: rgba(245, 158, 11, 0.1);
    color: #D97706;
}


/* ============================================
   ELIGIBILITY FORM & RESULT MODAL
   ============================================ */
.elig-form-section {
    padding: 80px 0 100px;
    background: var(--background);
}

.elig-form-section__header {
    text-align: center;
    margin-bottom: 48px;
}

.elig-form-section__title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
}

.elig-form-section__text {
    font-size: 17px;
    color: var(--foreground-light);
    max-width: 520px;
    margin: 0 auto;
}

.elig-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.elig-form {
    background: var(--background-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    padding: 40px;
    box-shadow: var(--card-shadow);
}

.elig-form__title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
}

.elig-form__subtitle {
    font-size: 14px;
    color: var(--foreground-light);
    margin-bottom: 28px;
}

.elig-form__submit {
    width: 100%;
    padding: 14px 28px;
    margin-top: 8px;
}

.elig-form__submit svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: white;
    stroke-width: 2;
}

/* Modal / Popup preview */
.modal-preview {
    position: relative;
}

.modal-preview__label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--foreground-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.modal-preview__label::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
}

.modal-popup {
    background: var(--background-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    box-shadow: 0 20px 60px rgba(12, 74, 110, 0.15), 0 4px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.modal-popup__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 28px;
    border-bottom: 1px solid var(--border-light);
}

.modal-popup__header-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
}

.modal-popup__close {
    width: 32px;
    height: 32px;
    border: none;
    background: var(--muted);
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.modal-popup__close:hover {
    background: var(--border);
}

.modal-popup__close svg {
    width: 16px;
    height: 16px;
    stroke: var(--foreground-light);
    fill: none;
    stroke-width: 2;
}

.modal-popup__body {
    padding: 28px;
}

.modal-popup__status {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(4, 120, 87, 0.06);
    border: 1px solid rgba(4, 120, 87, 0.15);
    border-radius: var(--radius);
    margin-bottom: 24px;
}

.modal-popup__status-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.modal-popup__status-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
    fill: none;
    stroke-width: 2.5;
}

.modal-popup__status-label {
    font-size: 13px;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.modal-popup__status-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--foreground);
}

.modal-popup__details {
    margin-bottom: 24px;
}

.modal-popup__details-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 12px;
}

.modal-popup__detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 14px;
}

.modal-popup__detail-row:last-child {
    border-bottom: none;
}

.modal-popup__detail-label {
    color: var(--foreground-light);
}

.modal-popup__detail-value {
    font-weight: 600;
    color: var(--foreground);
}

.modal-popup__services {
    margin-bottom: 24px;
}

.modal-popup__services-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 12px;
}

.modal-popup__service-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(12, 74, 110, 0.08);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    color: var(--primary);
    margin: 0 6px 8px 0;
}

.modal-popup__service-tag svg {
    width: 14px;
    height: 14px;
    stroke: var(--primary);
    fill: none;
    stroke-width: 2;
}

.modal-popup__actions {
    display: flex;
    gap: 12px;
}

.modal-popup__actions .btn {
    flex: 1;
    justify-content: center;
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--foreground);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand-text {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.6);
}

.footer__social {
    display: flex;
    gap: 12px;
}

.footer__social-link {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.footer__social-link:hover {
    background: var(--primary);
}

.footer__social-link svg {
    width: 18px;
    height: 18px;
    fill: white;
}

.footer__heading {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
}

.footer__link {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    padding: 6px 0;
    transition: color var(--transition);
}

.footer__link:hover {
    color: var(--primary-light);
}

.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 6px 0;
    font-size: 14px;
}

.footer__contact-item svg {
    width: 16px;
    height: 16px;
    stroke: var(--primary-light);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
    margin-top: 3px;
}

.footer__bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.footer__bottom-links {
    display: flex;
    gap: 24px;
}

.footer__bottom-links a {
    color: rgba(255, 255, 255, 0.4);
    transition: color var(--transition);
}

.footer__bottom-links a:hover {
    color: var(--primary-light);
}


/* ============================================
   FLOATING CALL BUTTON
   ============================================ */
.float-call {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 999;
    width: 56px;
    height: 56px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(4, 120, 87, 0.4);
    transition: all var(--transition);
    cursor: pointer;
    border: none;
}

.float-call:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(4, 120, 87, 0.5);
}

.float-call svg {
    width: 24px;
    height: 24px;
    fill: white;
}


/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 998;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(12, 74, 110, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: opacity var(--transition), visibility var(--transition), transform var(--transition), background var(--transition);
}

.back-to-top--visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.back-to-top svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5;
}


/* ============================================
   MOBILE NAV DRAWER + OVERLAY
   ============================================ */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
    z-index: 998;
}

.mobile-nav-overlay--active {
    opacity: 1;
    visibility: visible;
}

.burger--active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger--active span:nth-child(2) {
    opacity: 0;
}

.burger--active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


/* ============================================
   LEGAL / TEXT CONTENT PAGES
   (Privacy Policy, Terms of Service, Accessibility)
   ============================================ */
.legal-section {
    padding: 64px 0 100px;
}

.legal-section__wrap {
    max-width: 820px;
    margin: 0 auto;
}

.legal-section__updated {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    background: rgba(12, 74, 110, 0.08);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
}

.legal-section__intro {
    font-size: 17px;
    color: var(--foreground-light);
    line-height: 1.75;
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-light);
}

.legal-section h2 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: var(--foreground);
    margin-top: 48px;
    margin-bottom: 16px;
    padding-left: 16px;
    border-left: 4px solid var(--primary);
}

.legal-section h3 {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 600;
    color: var(--foreground);
    margin-top: 28px;
    margin-bottom: 12px;
}

.legal-section p {
    font-size: 16px;
    color: var(--foreground-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-section ul {
    margin: 8px 0 20px 0;
    padding-left: 0;
}

.legal-section ul li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 10px;
    font-size: 16px;
    color: var(--foreground-light);
    line-height: 1.75;
}

.legal-section ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-light);
}

.legal-section a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-section a:hover {
    color: var(--primary-dark);
}

.legal-section__contact-box {
    margin-top: 48px;
    padding: 28px 32px;
    background: var(--background);
    border-radius: var(--radius);
    border-left: 4px solid var(--accent);
}

.legal-section__contact-box h3 {
    margin-top: 0;
}

.legal-section__contact-box p:last-child {
    margin-bottom: 0;
}


/* ============================================
   BLOG POST DETAIL PAGE
   ============================================ */
   .post-section {
    padding: 48px 0 80px;
}

.post-section__wrap {
    max-width: 860px;
    margin: 0 auto;
}

.post-section__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--foreground-light);
}

.post-section__meta > span,
.post-section__meta > time {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.post-section__meta svg {
    width: 16px;
    height: 16px;
    stroke: var(--primary-light);
    fill: none;
    stroke-width: 2;
}

.post-section__category {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(12, 74, 110, 0.1);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.post-section__title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--foreground);
    margin-bottom: 24px;
}

.post-section__cover {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: var(--card-shadow);
}

.post-section__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-section__body {
    font-size: 17px;
    line-height: 1.85;
    color: var(--foreground-light);
}

.post-section__body p {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.85;
}

.post-section__body p:first-child::first-line {
    font-weight: 500;
}

.post-section__body h2 {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 700;
    color: var(--foreground);
    margin-top: 48px;
    margin-bottom: 16px;
}

.post-section__body h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--foreground);
    margin-top: 32px;
    margin-bottom: 12px;
}

.post-section__body ul,
.post-section__body ol {
    margin: 16px 0 24px 0;
    padding-left: 0;
}

.post-section__body ul li,
.post-section__body ol li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 17px;
    line-height: 1.75;
    color: var(--foreground-light);
}

.post-section__body ul li::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 13px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-light);
}

.post-section__body ol {
    counter-reset: post-counter;
    list-style: none;
}

.post-section__body ol li {
    counter-increment: post-counter;
}

.post-section__body ol li::before {
    content: counter(post-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--on-primary);
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
}

.post-section__body strong {
    color: var(--foreground);
    font-weight: 600;
}

.post-section__body a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.post-section__body a:hover {
    color: var(--primary-dark);
}

.post-section__body blockquote {
    margin: 32px 0;
    padding: 24px 32px;
    background: var(--background);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    font-size: 18px;
    line-height: 1.7;
    color: var(--foreground);
}

.post-section__body blockquote p {
    margin-bottom: 8px;
    font-size: 18px;
}

.post-section__body blockquote cite {
    display: block;
    font-style: normal;
    font-size: 14px;
    color: var(--foreground-light);
    font-weight: 600;
    margin-top: 8px;
}

.post-section__body figure {
    margin: 32px 0;
}

.post-section__body figure img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
}

.post-section__body figcaption {
    margin-top: 12px;
    font-size: 14px;
    color: var(--foreground-light);
    text-align: center;
    font-style: italic;
}

.post-section__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border-light);
}

.post-section__tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--background);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    color: var(--foreground-light);
    transition: all var(--transition);
}

.post-section__tag:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--on-primary);
}

.post-section__share {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
    padding: 20px 24px;
    background: var(--background);
    border-radius: var(--radius);
}

.post-section__share-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--foreground);
    margin-right: 4px;
}

.post-section__share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--background-white);
    border: 1px solid var(--border-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    cursor: pointer;
}

.post-section__share-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.post-section__share-btn:hover svg {
    fill: white;
}

.post-section__share-btn svg {
    width: 16px;
    height: 16px;
    fill: var(--foreground-light);
    transition: fill var(--transition);
}

/* Author box */
.post-author {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 48px;
    padding: 32px;
    background: var(--background);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent);
}

.post-author__avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: var(--card-shadow);
}

.post-author__info {
    flex: 1;
}

.post-author__label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: 4px;
    display: block;
}

.post-author__name {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 6px;
}

.post-author__bio {
    font-size: 14px;
    line-height: 1.6;
    color: var(--foreground-light);
    margin: 0;
}

/* Related posts */
.post-related {
    padding: 80px 0;
    background: var(--background);
}

.post-related__title {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 700;
    color: var(--foreground);
    text-align: center;
    margin-bottom: 48px;
}

.post-related__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* Post navigation (prev/next) */
.post-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border-light);
}

.post-nav__item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 20px 24px;
    background: var(--background-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.post-nav__item:hover {
    border-color: var(--primary);
    box-shadow: var(--card-shadow);
    transform: translateY(-2px);
}

.post-nav__item--next {
    text-align: right;
    align-items: flex-end;
}

.post-nav__label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-light);
}

.post-nav__title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--foreground);
    line-height: 1.4;
}
/* End */


/* Start:/local/templates/main/asset/css/animations.css?177569580412378*/
/* ============================================
   Dignity ADHC ECM - Animations & Transitions
   animations.css
   ============================================ */

/* ============================================
   KEYFRAMES
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.85;
    }
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.4;
    }
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 0.5;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes modalFadeOut {
    from {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
    to {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
    }
}

@keyframes overlayFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes overlayFadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* ============================================
   SCROLL REVEAL / ANIMATE ON SCROLL
   ============================================ */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 600ms ease, transform 600ms ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Directional variants */
.animate-on-scroll--left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 600ms ease, transform 600ms ease;
}

.animate-on-scroll--left.visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-on-scroll--right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 600ms ease, transform 600ms ease;
}

.animate-on-scroll--right.visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-on-scroll--scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 600ms ease, transform 600ms ease;
}

.animate-on-scroll--scale.visible {
    opacity: 1;
    transform: scale(1);
}

.animate-on-scroll--fade {
    opacity: 0;
    transition: opacity 600ms ease;
}

.animate-on-scroll--fade.visible {
    opacity: 1;
}


/* ============================================
   SCROLL REVEAL DELAYS
   ============================================ */

.delay-1 { transition-delay: 100ms; }
.delay-2 { transition-delay: 200ms; }
.delay-3 { transition-delay: 300ms; }
.delay-4 { transition-delay: 400ms; }
.delay-5 { transition-delay: 500ms; }
.delay-6 { transition-delay: 600ms; }


/* ============================================
   CARD HOVER TRANSITIONS
   ============================================ */

.service-card,
.service-card-lg,
.blog-card,
.stats__item,
.why-us__card,
.values__card,
.team__card,
.who-for__card,
.related__card,
.contact-card,
.criteria-card,
.partners__logo {
    transition: all var(--transition);
}

/* Lift effect on card hover */
.card-hover-lift {
    transition: all var(--transition);
}

.card-hover-lift:hover {
    transform: translateY(-6px);
    box-shadow: var(--card-shadow-hover);
}


/* ============================================
   BUTTON HOVER TRANSITIONS
   ============================================ */

.btn {
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

/* Focus-visible outline for accessibility */
.btn:focus-visible {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

/* Active press state */
.btn:active {
    transform: translateY(0) scale(0.98);
}


/* ============================================
   LINK HOVER TRANSITIONS
   ============================================ */

.service-card__link,
.service-card-lg__link,
.blog-card__link,
.related__card-link {
    transition: gap var(--transition), color var(--transition);
}

.service-card__link:hover,
.service-card-lg__link:hover,
.related__card-link:hover {
    gap: 10px;
}

.blog-card__link:hover svg {
    transform: translateX(4px);
}

/* Nav link underline animation */
.header__nav-link::after {
    transition: width var(--transition);
}


/* ============================================
   ACCORDION ANIMATION
   ============================================ */

.faq-item__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 350ms ease;
}

.faq-item--open .faq-item__body {
    max-height: 500px;
}

.faq-item__chevron {
    transition: transform var(--transition);
}

.faq-item--open .faq-item__chevron {
    transform: rotate(180deg);
}

.faq__question svg {
    transition: transform var(--transition);
}

.faq__item--open .faq__question svg {
    transform: rotate(180deg);
}


/* ============================================
   MODAL ANIMATIONS
   ============================================ */

/* Overlay backdrop */
.team-popup-preview,
.modal-overlay {
    transition: opacity 300ms ease, visibility 300ms ease;
}

.team-popup-preview--show,
.modal-overlay--show {
    animation: overlayFadeIn 300ms ease forwards;
}

.modal-overlay--closing {
    animation: overlayFadeOut 300ms ease forwards;
}

/* Modal card content */
.team-popup__card,
.modal-popup {
    animation: modalFadeIn 350ms ease forwards;
}

.modal-popup--closing {
    animation: modalFadeOut 250ms ease forwards;
}


/* ============================================
   COUNTER ANIMATION
   ============================================ */

.counter-animate {
    animation: countUp 600ms ease forwards;
}

.stats__number {
    transition: color var(--transition);
}


/* ============================================
   CAROUSEL / SLIDER TRANSITIONS
   ============================================ */

.testimonials__slider {
    position: relative;
    overflow: hidden;
}

.testimonial-card {
    transition: opacity 500ms ease, transform 500ms ease;
}

/* Slide left */
.testimonial-card--slide-left-enter {
    animation: slideInLeft 500ms ease forwards;
}

/* Slide right */
.testimonial-card--slide-right-enter {
    animation: slideInRight 500ms ease forwards;
}

/* Dot active transition */
.testimonials__dot {
    transition: all var(--transition);
}

.testimonials__dot--active {
    transition: width var(--transition), background var(--transition);
}

/* Arrow hover */
.testimonials__arrow {
    transition: all var(--transition);
}

.testimonials__arrow:hover svg {
    transition: stroke var(--transition);
}


/* ============================================
   FLOATING ELEMENTS
   ============================================ */

.hero__image-float {
    animation: float 3s ease-in-out infinite;
}

.hero__image-float--top {
    animation-delay: 0s;
}

.hero__image-float--bottom {
    animation-delay: 1.5s;
}

/* Floating call button pulse */
.float-call {
    transition: all var(--transition);
}

.float-call::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: rgba(4, 120, 87, 0.3);
    animation: pulse 2s ease-in-out infinite;
    z-index: -1;
}

/* Pulse dot on modal preview */
.modal-preview__label::before {
    animation: pulse-dot 2s ease-in-out infinite;
}


/* ============================================
   MOBILE MENU ANIMATION
   ============================================ */

.mobile-menu {
    transition: opacity 300ms ease, visibility 300ms ease;
}

.mobile-menu.active {
    animation: fadeIn 300ms ease forwards;
}

.mobile-menu__link {
    opacity: 0;
    transform: translateY(10px);
}

.mobile-menu.active .mobile-menu__link {
    animation: fadeInUp 400ms ease forwards;
}

.mobile-menu.active .mobile-menu__link:nth-child(1) { animation-delay: 50ms; }
.mobile-menu.active .mobile-menu__link:nth-child(2) { animation-delay: 100ms; }
.mobile-menu.active .mobile-menu__link:nth-child(3) { animation-delay: 150ms; }
.mobile-menu.active .mobile-menu__link:nth-child(4) { animation-delay: 200ms; }
.mobile-menu.active .mobile-menu__link:nth-child(5) { animation-delay: 250ms; }
.mobile-menu.active .mobile-menu__link:nth-child(6) { animation-delay: 300ms; }
.mobile-menu.active .mobile-menu__link:nth-child(7) { animation-delay: 350ms; }

/* Burger animation */
.burger span {
    transition: all var(--transition);
}


/* ============================================
   HEADER SCROLL TRANSITION
   ============================================ */

.header {
    transition: box-shadow var(--transition), background var(--transition);
}


/* ============================================
   GENERAL INTERACTION STATES
   ============================================ */

/* Focus styles for form elements */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.form-input:focus,
.form-select:focus {
    transition: border-color var(--transition), box-shadow var(--transition);
}

/* Social link hover */
.footer__social-link {
    transition: all var(--transition);
}

/* Tab hover */
.faq-tab {
    transition: all var(--transition);
}

/* Pagination hover */
.pagination__btn {
    transition: all var(--transition);
}

/* Lang switcher button */
.lang-switcher__btn {
    transition: all var(--transition);
}


/* ============================================
   PAGE TRANSITION (OPTIONAL)
   ============================================ */

.page-transition-enter {
    opacity: 0;
}

.page-transition-enter-active {
    animation: fadeIn 400ms ease forwards;
}


/* ============================================
   PREFERS-REDUCED-MOTION
   ============================================ */

@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;
    }

    .animate-on-scroll,
    .animate-on-scroll--left,
    .animate-on-scroll--right,
    .animate-on-scroll--scale,
    .animate-on-scroll--fade {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .hero__image-float {
        animation: none;
    }

    .float-call::after {
        animation: none;
    }

    .modal-preview__label::before {
        animation: none;
    }

    .mobile-menu__link {
        opacity: 1;
        transform: none;
    }

    .testimonial-card {
        transition: none;
    }
}

/* End */


/* Start:/local/templates/main/asset/css/responsive.css?177591006818591*/
/* ============================================
   Dignity ADHC ECM - Responsive Styles
   responsive.css
   Mobile-first breakpoints:
     480px, 768px, 1024px, 1200px, 1440px
   ============================================ */


/* ============================================
   BASE / MOBILE (< 480px)
   ============================================ */

/* Ensure touch targets are at least 44px */
.btn,
.lang-switcher__btn,
.burger,
.testimonials__arrow,
.testimonials__dot,
.pagination__btn,
.float-call,
.faq-item__header,
.faq__question {
    min-height: 44px;
}

.testimonials__dot {
    min-width: 10px;
    min-height: 10px;
    padding: 6px;
}

/* Typography base (mobile) */
html {
    font-size: 15px;
}


/* ============================================
   EXTRA SMALL (max-width: 480px)
   ============================================ */
@media (max-width: 480px) {
    /* Typography */
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 16px;
    }

    /* Hero */
    .hero {
        padding: 120px 0 60px;
    }

    .hero__title {
        font-size: 28px;
    }

    .hero__text {
        font-size: 16px;
    }

    .hero__buttons {
        flex-direction: column;
    }

    .hero__buttons .btn {
        width: 100%;
        justify-content: center;
    }

    /* Page hero */
    .page-hero {
        padding: 110px 0 40px;
    }

    .page-hero__title {
        font-size: 28px;
    }

    .page-hero__text {
        font-size: 15px;
    }

    .page-hero__subtitle {
        font-size: 15px;
    }

    /* Section header */
    .section-header {
        margin-bottom: 40px;
    }

    .section-header__title {
        font-size: 24px;
    }

    .section-header__text {
        font-size: 15px;
    }

    /* Stats */
    .stats {
        padding: 48px 0;
    }

    .stats__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .stats__item {
        padding: 24px 16px;
    }

    .stats__number {
        font-size: 32px;
    }

    /* Services */
    .services {
        padding: 60px 0;
    }

    .service-card {
        padding: 28px 20px;
    }

    /* Process */
    .process {
        padding: 60px 0;
    }

    .process__step-number {
        width: 72px;
        height: 72px;
    }

    .process__step-number svg {
        width: 28px;
        height: 28px;
    }

    /* CTA */
    .cta {
        padding: 60px 0;
    }

    .cta__title {
        font-size: 24px;
    }

    .cta__text {
        font-size: 15px;
    }

    .cta__buttons {
        flex-direction: column;
    }

    .cta__buttons .btn {
        width: 100%;
        justify-content: center;
    }

    /* CTA Help */
    .cta-help {
        padding: 48px 0;
    }

    .cta-help__title {
        font-size: 24px;
    }

    .cta-help__text {
        font-size: 15px;
    }

    .cta-help__actions {
        flex-direction: column;
    }

    .cta-help__actions .btn {
        width: 100%;
        justify-content: center;
    }

    /* Testimonials */
    .testimonials {
        padding: 60px 0;
    }

    .testimonial-card {
        padding: 24px 16px;
    }

    .testimonial-card__text {
        font-size: 15px;
    }

    /* FAQ */
    .faq-section {
        padding: 48px 0 60px;
    }

    .faq-tabs {
        gap: 6px;
    }

    .faq-tab {
        padding: 8px 14px;
        font-size: 12px;
    }

    .faq-item__header {
        padding: 14px 16px;
    }

    .faq-item__question {
        font-size: 14px;
    }

    .faq-item__answer {
        padding: 0 16px 16px;
        font-size: 13px;
    }

    /* Contact */
    .contact-form {
        padding: 24px 16px;
    }

    .contact-form__title {
        font-size: 20px;
    }

    /* Criteria */
    .criteria {
        padding: 48px 0 60px;
    }

    .criteria__title {
        font-size: 24px;
    }

    .criteria-card {
        padding: 24px 20px;
    }

    /* Eligibility form */
    .elig-form-section {
        padding: 48px 0 60px;
    }

    .elig-form-section__title {
        font-size: 24px;
    }

    .elig-form {
        padding: 24px 16px;
    }

    /* Modal */
    .modal-popup__actions {
        flex-direction: column;
    }

    /* Blog */
    .blog-section {
        padding: 48px 0;
    }

    .pagination {
        padding: 0 0 48px;
    }

    /* Buttons */
    .btn--large {
        padding: 14px 28px;
        font-size: 15px;
    }

    /* Float call */
    .float-call {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
    }

    /* Lang switcher hidden on very small */
    .lang-switcher {
        display: none;
    }

    /* Mission */
    .mission__highlight {
        flex-direction: column;
        gap: 12px;
    }

    /* Footer */
    .footer {
        padding: 48px 0 0;
    }

    .footer__bottom {
        padding: 20px 0;
    }
}


/* ============================================
   SMALL / MOBILE (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {
    /* Typography */
    html {
        font-size: 15px;
    }

    /* Header */
    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 82%;
        max-width: 340px;
        height: 100vh;
        background: var(--background-white);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 100px 32px 32px;
        gap: 8px;
        box-shadow: -8px 0 32px rgba(15, 23, 42, 0.15);
        transition: right 300ms ease;
        z-index: 999;
        overflow-y: auto;
        display: flex;
    }

    .header__nav--open {
        right: 0;
    }

    .header__nav .header__nav-link {
        width: 100%;
        padding: 14px 0;
        font-size: 17px;
        border-bottom: 1px solid var(--border-light);
    }

    .burger {
        display: flex;
        position: relative;
        z-index: 1000;
    }

    .header__actions .btn {
        display: none;
    }

    /* Hero */
    .hero {
        padding: 130px 0 70px;
    }

    .hero__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero__image {
        display: none;
    }

    .hero__title {
        font-size: 34px;
    }

    .hero__text {
        max-width: 100%;
    }

    /* Page hero */
    .page-hero {
        padding: 120px 0 48px;
    }

    .page-hero__title {
        font-size: 32px;
    }

    .page-hero__text {
        font-size: 16px;
    }

    /* Section header */
    .section-header__title {
        font-size: 28px;
    }

    /* Stats */
    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    /* Services */
    .services__grid {
        grid-template-columns: 1fr;
    }

    .services-list__grid {
        grid-template-columns: 1fr;
    }

    /* Process */
    .process__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .process__grid::before {
        display: none;
    }

    /* Why-us */
    .why-us__grid {
        grid-template-columns: 1fr;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 32px 20px;
    }

    .testimonial-card__text {
        font-size: 16px;
    }

    /* CTA */
    .cta__title {
        font-size: 28px;
    }

    .cta__text {
        font-size: 16px;
    }

    /* CTA Help */
    .cta-help {
        padding: 60px 0;
    }

    .cta-help__title {
        font-size: 26px;
    }

    .cta-help__text {
        font-size: 16px;
    }

    .cta-help__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-help__actions .btn {
        justify-content: center;
    }

    /* FAQ */
    .faq-section {
        padding: 48px 0 64px;
    }

    .faq-tabs {
        gap: 6px;
    }

    .faq-tab {
        padding: 8px 16px;
        font-size: 13px;
    }

    .faq-item__header {
        padding: 16px 18px;
    }

    .faq-item__question {
        font-size: 15px;
    }

    .faq-item__answer {
        padding: 0 18px 18px;
        font-size: 14px;
    }

    /* Service detail */
    .service-hero__inner {
        grid-template-columns: 1fr;
    }

    .service-hero__image {
        height: 260px;
    }

    .service-hero__title {
        font-size: 32px;
    }

    .service-detail__grid {
        grid-template-columns: 1fr;
    }

    .service-detail__sidebar-card {
        position: static;
    }

    /* Who-for */
    .who-for__grid {
        grid-template-columns: 1fr;
    }

    /* How-to */
    .how-to__steps {
        grid-template-columns: 1fr;
    }

    /* Related */
    .related__grid {
        grid-template-columns: 1fr;
    }

    /* Mission */
    .mission__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .mission__image {
        height: 260px;
    }

    .mission__content h2 {
        font-size: 26px;
    }

    /* Timeline */
    .timeline::before {
        left: 20px;
    }

    .timeline__item,
    .timeline__item:nth-child(odd) {
        flex-direction: row;
        text-align: left;
        padding-left: 50px;
    }

    .timeline__dot {
        left: 20px;
    }

    .timeline__content {
        width: 100%;
    }

    /* Team */
    .team__grid {
        grid-template-columns: 1fr;
    }

    .team__photo {
        height: 200px;
    }

    /* Values */
    .values__grid {
        grid-template-columns: 1fr;
    }

    /* Blog */
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-section {
        padding: 60px 0;
    }

    .pagination {
        padding: 0 0 60px;
    }

    /* Contact */
    .contact-info__grid {
        grid-template-columns: 1fr;
    }

    .contact-section__grid {
        grid-template-columns: 1fr;
    }

    .contact-form__row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 28px 20px;
    }

    .map-placeholder {
        min-height: 300px;
    }

    /* Criteria */
    .criteria {
        padding: 60px 0 72px;
    }

    .criteria__title {
        font-size: 28px;
    }

    .criteria__grid {
        grid-template-columns: 1fr;
    }

    /* Eligibility form */
    .elig-form-section {
        padding: 60px 0 72px;
    }

    .elig-form-section__title {
        font-size: 28px;
    }

    .elig-form-wrapper {
        grid-template-columns: 1fr;
    }

    .elig-form {
        padding: 28px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .modal-popup__actions {
        flex-direction: column;
    }

    /* Footer */
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .footer__bottom-links {
        justify-content: center;
    }

    /* Partners */
    .partners__grid {
        gap: 20px;
    }

    .partners__logo {
        width: 120px;
        height: 50px;
    }
}


/* ============================================
   TABLET (min-width: 481px) AND (max-width: 768px)
   Only tablet-specific overrides
   ============================================ */
@media (min-width: 481px) and (max-width: 768px) {
    /* Show 2-column grids where appropriate on tablet */
    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .criteria__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-info__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ============================================
   TABLET / SMALL DESKTOP (min-width: 769px) AND (max-width: 1024px)
   ============================================ */
@media (min-width: 769px) and (max-width: 1024px) {
    /* Typography */
    html {
        font-size: 15px;
    }

    /* Hero */
    .hero__title {
        font-size: 40px;
    }

    .hero__inner {
        gap: 40px;
    }

    .hero__image-main {
        height: 380px;
    }

    /* Page hero */
    .page-hero__title {
        font-size: 38px;
    }

    /* Section header */
    .section-header__title {
        font-size: 32px;
    }

    /* Services */
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-list__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Process */
    .process__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .process__grid::before {
        display: none;
    }

    /* Why-us */
    .why-us__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Team */
    .team__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Values */
    .values__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Blog */
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Contact */
    .contact-info__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-section__grid {
        grid-template-columns: 1fr;
    }

    .map-placeholder {
        min-height: 400px;
    }

    /* Criteria */
    .criteria__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Eligibility */
    .elig-form-wrapper {
        grid-template-columns: 1fr;
    }

    /* Service detail */
    .service-hero__inner {
        grid-template-columns: 1fr;
    }

    .service-hero__image {
        height: 300px;
    }

    .service-detail__grid {
        grid-template-columns: 1fr;
    }

    .service-detail__sidebar-card {
        position: static;
    }

    /* Who-for */
    .who-for__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Mission */
    .mission__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Footer */
    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ============================================
   DESKTOP (min-width: 1025px) AND (max-width: 1200px)
   ============================================ */
@media (min-width: 1025px) and (max-width: 1200px) {
    /* Typography */
    html {
        font-size: 16px;
    }

    .container {
        max-width: 1100px;
    }

    /* Hero */
    .hero__title {
        font-size: 46px;
    }

    /* Stats - full 4 column */
    .stats__grid {
        grid-template-columns: repeat(4, 1fr);
    }

    /* Services - 3 column */
    .services__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-list__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Process - 4 column */
    .process__grid {
        grid-template-columns: repeat(4, 1fr);
    }

    /* Why-us - 4 column */
    .why-us__grid {
        grid-template-columns: repeat(4, 1fr);
    }

    /* Blog - 3 column */
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Team - 4 column */
    .team__grid {
        grid-template-columns: repeat(4, 1fr);
    }

    /* Contact info - 4 column */
    .contact-info__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}


/* ============================================
   LARGE DESKTOP (min-width: 1201px)
   ============================================ */
@media (min-width: 1201px) {
    /* Typography */
    html {
        font-size: 16px;
    }

    .container {
        max-width: 1200px;
        padding: 0 24px;
    }

    /* All multi-column grids at full capacity */
    .stats__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
    }

    .services__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }

    .services-list__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }

    .process__grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .why-us__grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .team__grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .values__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-info__grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .criteria__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer__grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }

    /* Comfortable spacing */
    .hero {
        padding: 160px 0 100px;
    }

    .hero__inner {
        gap: 60px;
    }

    .hero__title {
        font-size: 52px;
    }

    .services {
        padding: 100px 0;
    }

    .process {
        padding: 100px 0;
    }

    .why-us {
        padding: 100px 0;
    }

    .testimonials {
        padding: 100px 0;
    }

    .cta {
        padding: 100px 0;
    }
}


/* ============================================
   EXTRA LARGE DESKTOP (min-width: 1440px)
   ============================================ */
@media (min-width: 1441px) {
    .container {
        max-width: 1320px;
    }

    .hero__title {
        font-size: 56px;
    }

    .hero__text {
        font-size: 19px;
    }

    .page-hero__title {
        font-size: 48px;
    }

    .section-header__title {
        font-size: 42px;
    }

    .cta__title {
        font-size: 44px;
    }

    .stats__number {
        font-size: 44px;
    }

    .testimonial-card__text {
        font-size: 20px;
    }

    /* Bigger hero image */
    .hero__image-main {
        height: 520px;
    }
}


/* ============================================
   HEIGHT-BASED ADJUSTMENTS
   ============================================ */
@media (max-height: 700px) and (min-width: 769px) {
    .hero {
        padding: 120px 0 60px;
    }

    .hero__image-main {
        height: 360px;
    }
}


/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .header,
    .burger,
    .mobile-menu,
    .mobile-nav-overlay,
    .back-to-top,
    .float-call,
    .testimonials__arrows,
    .testimonials__dots,
    .cta,
    .cta-help {
        display: none !important;
    }

    body {
        background: white;
        color: black;
        font-size: 12pt;
    }

    .container {
        max-width: 100%;
        padding: 0;
    }

    .hero {
        padding: 20px 0;
        background: none;
    }

    .footer {
        background: none;
        color: black;
        padding: 20px 0;
    }

    a {
        text-decoration: underline;
    }
}

/* End */
/* /local/templates/main/asset/css/style.css?177607635483208 */
/* /local/templates/main/asset/css/animations.css?177569580412378 */
/* /local/templates/main/asset/css/responsive.css?177591006818591 */
