 :root {
            --button-radius: 28px;
        }

        * {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            font-family: 'Inter', sans-serif;
        }

        .text-center {
            text-align: center;
        }

        .container {
            max-width: min(100% - 32px, 1180px);
            margin: 0 auto;
            padding-bottom: 18px;
        }

        .topbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: #ffffff;
            padding: 12px 20px;
            color: #000000;
            box-shadow: none;
            border-bottom: 1px solid #E4E9F4;
            padding: 14px 0;
            color: #0D1B3E;
        }

        .bg-container {
            padding-top: 48px;
            background-color: #ffffff;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 14px;
            font-weight: 600;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.2px;
            color: #0D1B3E;
        }

        .brand img {
            width: 70px;
            height: 70px;
            object-fit: contain;
        }

        .topbar-actions {
            display: flex;
            gap: 12px;
        }
        /* ── NAVBAR ── */
        .navbar {
            background: #ffffff;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 4px;
            padding: 0;
        }

        .nav-link {
            padding: 14px 28px;
            font-size: 14px;
            font-weight: 500;
            color: #6b7280;
            text-decoration: none;
            border-radius: 8px;
            border: 1.5px solid transparent;
            transition: color 0.18s, background 0.18s;
            white-space: nowrap;
        }

        .nav-link:hover {
            color: #4169E1;
            background: #EEF3FF;
            padding: 8px 28px;
        }

        .nav-link.active {
            color: #0D1B3E;
            border-color: #E4E9F4;
            padding: 8px 28px;
            background: #F1F5FF;
        }

        .btn {
            padding: 10px 18px;
            border-radius: 10px;
            border: 1px solid transparent;
            font-weight: 600;
            font-size: 13px;
            cursor: pointer;
            transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-outline {
            background: transparent;
            color: #4169E1;
            border-color: #4169E1;
        }

        .btn-outline:hover {
            background: #EEF3FF;
        }

        .btn-solid {
            background: linear-gradient(90deg, #1E2E5C 0%, #4169E1 100%);
            color: #ffffff;
            box-shadow: none;
            border: none;
        }

        .btn-solid:hover {
            opacity: 0.88;
            transform: translateY(-1px);
        }

        .hero {
            margin-top: 0;
            background: linear-gradient(90deg, #1E2E5C 0%, #4169E1 100%);
            border-radius: 0;
            box-shadow: none;
            padding: 72px 64px;
            min-height: 540px;
            grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
            gap: 40px;
            align-items: center;
            color: #ffffff;
        }
        
        .hero-inner {
            display: grid;
            grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
            gap: 40px;
            align-items: center;
        }

        .hero-title {
            font-size: clamp(32px, 4vw, 44px);
            font-weight: 700;
            line-height: 1.15;
            margin: 0 0 20px;
        }

        .hero-subtitle {
            margin: 0 0 28px;
            color: var(--text-muted);
            font-size: 16px;
            line-height: 1.6;
        }

        .hero-actions {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .btn-primary {
           background: #ffffff;
            color: #1E2E5C;
            border: none;
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
            padding: 14px 26px;
            font-size: 14px;
            font-weight: 600;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
        }

        .btn-secondary {
            background: transparent;
            border: 1.5px solid rgba(255, 255, 255, 0.6);
            color: #ffffff;
            padding: 14px 26px;
            font-size: 14px;
            font-weight: 600;
        }
        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(255, 255, 255, 0.95);
        }
        


        .hero-media {
            display: flex;
            justify-content: center;
        }

        .hero-media img {
            width: min(100%, 460px);
            height: auto;
            object-fit: contain;
        }

        .subsidies {
            margin: 80px auto 0;
        }

        .section-label {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 14px;
            border-radius: 12px;
            border: 1px solid #a6b6ff;
            color: #4263d7;
            font-size: 12px;
            font-weight: 600;
            margin: 0 auto 14px;
        }

        .section-title {
            margin: 0 0 34px;
            text-align: center;
            font-size: clamp(24px, 3vw, 32px);
            font-weight: 700;
        }

        .cards {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .card.hidden {
            display: none;
        }

        .card {
            background: #ffffff;
            border-radius: 16px;
            width: 300px;
            padding: 24px 22px 20px;
            box-shadow: 0 8px 24px rgba(16, 24, 40, 0.08);
            border: 1px solid #eef0f4;
            display: flex;
            flex-direction: column;
            min-height: 240px;
        }

        .card-icon {
            width: 40px;
            height: 40px;
            margin-bottom: 14px;
            object-fit: contain;
        }

        .card-title {
            font-size: 16px;
            font-weight: 700;
            margin: 20px 0;
            line-height: 1.35;
        }

        .card-text {
            margin: 0 0 18px;
            color: var(--text-muted);
            font-size: 13px;
            line-height: 1.6;
        }

        .card-action {
            margin-top: auto;
            width: 100%;
            padding: 10px 16px;
            border-radius: 12px;
            font-size: 13px;
            font-weight: 600;
            border: none;
            cursor: pointer;
        }

        .card-action.primary {
            background: #f1f1f2;
            color: #9aa1ac;
        }

        .card-action.primary:hover {
            background: #4263d7;
            color: #ffffff;
        }

        .card-action.btn-primary {
            background: linear-gradient(90deg, #1E2E5C 0%, #4169E1 100%);
            color: #ffffff;
            box-shadow: 0 12px 24px rgba(66, 99, 215, 0.25);
        }

        .card-action.btn-primary:hover {
            background: #3551b8;
            transform: translateY(-2px);
            box-shadow: 0 16px 32px rgba(66, 99, 215, 0.35);
        }

        .card-action.muted {
            background: #f1f1f2;
            color: #9aa1ac;
        }

        .subsidies-footer {
            display: flex;
            justify-content: center;
            margin-top: 26px;
        }

        .more-btn {
            background: #1f1f1f;
            color: #ffffff;
            border: none;
            border-radius: 12px;
            padding: 10px 22px;
            font-size: 13px;
            box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
            cursor: pointer;
        }

        .process {
            margin: 80px auto 0;
        }

        .process-header {
            text-align: center;
            margin-bottom: 32px;
        }

        .process-subtitle {
            margin: 0 auto;
            max-width: 720px;
            color: #6b7280;
            font-size: 13px;
            line-height: 1.6;
        }

        .process-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            column-gap: 80px;
            row-gap: 24px;
        }

        .process-card {
            background: #ffffff;
            border-radius: 14px;
            border: 1px solid #e8edf7;
            box-shadow: 0 10px 22px rgba(16, 24, 40, 0.08);
            overflow: hidden;
        }

        .process-card-top {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px 16px;
            background: #F0F4FF;
        }

        .process-icon {
            width: 34px;
            height: 34px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #ffffff;
            border-radius: 10px;
            box-shadow: 0 6px 14px rgba(16, 24, 40, 0.08);
        }

        .process-icon img {
            width: 18px;
            height: 18px;
            object-fit: contain;
        }

        .process-step {
            font-size: 10px;
            font-weight: 700;
            color: #4263d7;
            letter-spacing: 0.6px;
        }

        .process-title {
            font-size: 14px;
            font-weight: 700;
            margin-top: 2px;
        }

        .process-card-body {
            padding: 16px 16px 18px;
            font-size: 12px;
            color: #6b7280;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .process-meta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #4263d7;
            font-weight: 600;
            font-size: 11px;
        }

        .process-meta img {
            width: 14px;
            height: 14px;
            object-fit: contain;
        }

        .text-decoration-none{
            text-decoration: none;
        }

        @media (max-width: 768px) {
            .hero,
            .hero-container,
            .hero-content {
                width: 100%;
                max-width: 100%;
                margin: 0 auto;
                box-sizing: border-box;
            }
        }
        @media (max-width: 768px) {
            .hero-content {
                display: flex;
                flex-direction: column;
                align-items: center;
                text-align: center;
                padding: 32px 20px;
            }
        }
        @media (max-width: 768px) {
            .hero-title,
            .hero-text,
            .hero-image,
            .hero-buttons {
                margin-left: 0;
                padding-left: 0;
                left: auto;
            }
        }
        @media (max-width: 768px) {
            .hero-title,
            .hero-subtitle,
            .hero-text {
                text-align: center;
                margin-right: 0;
            }

            .hero-buttons {
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 12px;
                width: 100%;
            }
        }
        
        @media (max-width: 900px) {
            .hero {
                grid-template-columns: 1fr;
                padding: 36px 28px;
                width: 100%;
            }

            .hero-media {
                order: -1;
                width: 100%;
            }

            .topbar {
                flex-direction: column;
                gap: 14px;
                text-align: center;
                width: 100%;
            }

            .cards {
                flex-direction: column;
                align-items: center;
            }

            .process-grid {
                grid-template-columns: 1fr;
            }
        }

        .solution {
            margin: 80px auto 0;
        }

        .solution-header {
            text-align: center;
            margin-bottom: 32px;
        }

        .solution-subtitle {
            margin: 0 auto;
            max-width: 720px;
            color: #6b7280;
            font-size: 13px;
            line-height: 1.6;
        }

        .solution-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 20px;
        }

        .solution-card {
            background: #ffffff;
            border-radius: 16px;
            border: 1px solid #eef0f4;
            padding: 22px 20px;
            box-shadow: 0 8px 20px rgba(16, 24, 40, 0.08);
            min-height: 150px;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .solution-icon {
            width: 36px;
            height: 36px;
            object-fit: contain;
        }

        .solution-title {
            margin: 0;
            font-size: 14px;
            font-weight: 700;
        }

        .solution-text {
            margin: 0;
            color: #6b7280;
            font-size: 12px;
            line-height: 1.6;
        }

        @media (max-width: 900px) {
            .solution-grid {
                grid-template-columns: 1fr;
            }
        }

        .statistics {
            margin: 80px auto 0;
            position: relative;
            min-height: 420px;
            padding: 40px 0 60px;
        }

        .statistics-content-container {
            display: flex;
        }

        .statistics-content {
            max-width: 520px;
            position: relative;
            z-index: 1;
            padding-right: 16px;
        }

        .statistics-container {
            width: 100%;
            position: relative;
            z-index: 2;
        }

        .statistics-title {
            margin: 0 0 16px;
            font-size: clamp(28px, 3.5vw, 36px);
            font-weight: 700;
        }

        .statistics-text {
            margin: 0 0 26px;
            color: #6b7280;
            font-size: 14px;
            line-height: 1.6;
        }

        .stats-btn {
            background: #4263d7;
            color: #ffffff;
            border: none;
            border-radius: 12px;
            padding: 12px 26px;
            font-size: 13px;
            font-weight: 600;
            box-shadow: 0 10px 18px rgba(66, 99, 215, 0.25);
            cursor: pointer;
        }

        .stats-grid {
            margin-top: 200px;
            display: flex;
            width: 100%;
            justify-content: space-between;
            z-index: 3;
        }

        .stats-card {
            background: #ffffff;
            border-radius: 16px;
            padding: 18px 16px;
            border: 1px solid #eef0f4;
            min-height: 96px;
            min-width: 220px;
        }

        .stats-card.primary {
            background: #4263d7;
            color: #ffffff;
            border-color: transparent;
        }

        .stats-value {
            font-size: 28px;
            font-weight: 700;
            margin: 0 0 6px;
        }

        .stats-label {
            margin: 0;
            font-size: 12px;
            line-height: 1.4;
        }

        .stats-plain {
            padding: 8px 6px;
            min-width: 140px;
            z-index: 3;
            background-color: white;
            box-shadow: 0 8px 24px rgba(16, 24, 40, 0.08);
            border-radius: 16px;
            border: 1px solid #eef0f4;
            padding: 18px 16px;
            min-height: 96px;
            min-width: 220px;
        }

        .stats-plain .stats-value {
            color: #4263d7;
        }

        .statistics-hero {
            position: absolute;
            top: -10px;
            right: -10px;
            width: min(56vw, 640px);
            max-width: 620px;
            z-index: 1;
        }

        .statistics-hero img {
            width: 100%;
            height: auto;
            position: absolute;
            z-index: 2;
            display: block;
        }

        @media (max-width: 1000px) {
            .statistics {
                min-height: auto;
                padding: 32px 0 40px;
                padding-right: 0;
            }

            .statistics-hero {
                position: static;
                width: min(100%, 560px);
                margin: 26px auto 0;
            }

        }

        @media (max-width: 900px) {
            .statistics-content-container {
                flex-direction: column;
            }

            .statistics-hero {
                display: none;
            }

            .stats-grid {
                flex-direction: column;
                gap: 16px;
                margin-top: 32px;
            }

            .stats-card,
            .stats-plain {
                width: 100%;
                min-width: auto;
            }
        }

        .faq {
            margin: 0 auto;
            margin-top: 100px;

        }

        .faq-wrapper {
            background: linear-gradient(to top, #1E2E5C 0%, #4169E1 100%);
            min-height: 260px;
            overflow: hidden;
        }

        .faq-content-container {
            max-width: 1180px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-content {
            width: 50%;
            max-width: 420px;
            color: #ffffff;
            padding: 48px 24px;
            z-index: 2;
        }

        .faq-title {
            margin: 0 0 12px;
            font-size: clamp(22px, 3vw, 30px);
            font-weight: 700;
            line-height: 1.2;
        }

        .faq-text {
            margin: 0 0 22px;
            font-size: 13px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.85);
        }

        .faq-button {
            background: #ffffff;
            color: #4263d7;
            border: none;
            border-radius: 12px;
            padding: 12px 22px;
            font-size: 13px;
            font-weight: 600;
            box-shadow: 0 10px 18px rgba(0, 0, 0, 0.2);
            cursor: pointer;
        }

        .faq-hero {
            background: url("assets/bg-review.png") center/cover no-repeat;
            padding: 20px 0;
            width: 50%;
            height: 100%;
            z-index: 1;
        }

        .faq-hero img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        @media (max-width: 900px) {
            .faq-wrapper {
                padding: 32px 24px;
                min-height: 0;
            }

            .faq-hero {
                position: static;
                margin: 24px auto 0;
            }
        }

        .laws {
            max-width: 1180px;
            margin: 0 auto;
            margin-top: 100px;
        }

        .laws-header {
            text-align: center;
            margin-bottom: 28px;
        }

        .laws-grid {
            display: flex;
            flex-direction: column;
            gap: 12px;
            max-width: 1050px;
            margin: 0 auto;
        }

        .laws-card {
            border: 1px solid #eef0f4;
            border-radius: 12px;
            padding: 16px 18px;
            background: #ffffff;
            box-shadow: 0 6px 16px rgba(16, 24, 40, 0.06);
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 12px;
        }

        .laws-text {
            margin: 0;
            font-size: 12px;
            line-height: 1.45;
        }

        .laws-icon {
            width: 20px;
            height: 20px;
            flex: 0 0 auto;
        }

        .law-card {
            border: 1px solid #557AEC;
            border-radius: 12px;
            padding: 16px 18px;
            background: #ffffff;
            box-shadow: 0 6px 16px rgba(16, 24, 40, 0.06);
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 12px;
            text-decoration: none;
            color: inherit;
            transition: transform 0.15s ease, box-shadow 0.15s ease;
            
        }

        .law-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(16, 24, 40, 0.1);
        }

        .law-card-content {
            flex: 1;
        }

        .law-name {
            margin: 0;
            font-size: 12px;
            line-height: 1.45;
            font-weight: 600;
        }

        .law-card-icon {
            width: 20px;
            height: 20px;
            flex: 0 0 auto;
        }
        .sites-grid-top { 
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 18px;
            max-width: 1050px;
            margin: 0 auto; 
            margin-bottom: 40px;
        }
        .sites-grid-bottom{
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 16px;
            max-width: 1050px;
            margin: 0 auto;
        }
        .site-card {
            counter-increment: law-num;
            border: 1px solid #557AEC;
            border-radius: 16px;
            padding: 18px 20px;
            background: #fff;
            box-shadow: 0 4px 10px rgba(16, 24, 40, 0.08);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            text-decoration: none;
            color: inherit;
}
        .site-name {
            margin: 0;
            font-size: 12px;
            line-height: 1.4;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .site-name::before {
            content: counter(law-num);
            color: #4c6fff;
            font-weight: 700;
            flex-shrink: 0;
        }

        @media (max-width: 900px) {
            .laws-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 900px) {
            .sites-grid-bottom {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 600px) {
            .sites-grid-top,
            .sites-grid-bottom {
                grid-template-columns: 1fr;
            }
        }

        .appeals {
            margin: 80px auto 0;
        }

        .appeals-label {
            display: flex;
            justify-content: center;
            margin-bottom: 16px;
        }

        .appeals-bar {
            background: linear-gradient(to top, #1E2E5C 0%, #4169E1 100%);
            padding: 44px 16px 52px;
            color: #ffffff;
            text-align: center;
        }

        .appeals-inner {
            max-width: 720px;
            margin: 0 auto;
        }

        .appeals-title {
            margin: 0 0 12px;
            font-size: clamp(22px, 3.2vw, 30px);
            font-weight: 700;
        }

        .appeals-text {
            margin: 0 0 22px;
            font-size: 13px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.9);
        }

        .appeals-button {
            background: #ffffff;
            color: #4263d7;
            border: none;
            border-radius: 12px;
            padding: 10px 20px;
            font-size: 12px;
            font-weight: 600;
            box-shadow: 0 10px 18px rgba(0, 0, 0, 0.18);
            cursor: pointer;
        }

        .appeals-button:hover {
            transform: translateY(-1px);
            box-shadow: 0 12px 20px rgba(0, 0, 0, 0.22);
        }
        .service-bar {
            background: linear-gradient(to top, #1E2E5C 0%, #4169E1 100%);
            padding: 44px 26px 52px;
            color: #ffffff;
        }
        .service-inner {
            max-width: 1100px;
            margin: 0 auto;
        }
        .services {
            padding: 48px 0 70px;
        }

        .services-container {
            width: min(980px, calc(100% - 40px));
            margin: 0 auto;
        }

        .services-title {
            margin: 0 0 34px;
            font-size: 36px;
            line-height: 1.15;
            font-weight: 700;
            color: #ffffff;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 24px 16px;
            align-items: start;
        }

        .service-card {
            height: 170px;
            min-height: 126px;
            padding: 18px 6px 16px;
            background: #ffffff;
            border-radius: 14px;
            box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
            text-decoration: none;
            color: inherit;

            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-end;
        }

        .service-logo {
            max-height: 82px;
            max-width: 160px;
            width: auto;
            object-fit: contain;
            margin-bottom: 14px;
        }

        .service-text {
            margin: 0;
            font-size: 13px;
            line-height: 1.25;
            font-weight: 600;
            color: #1f2937;
            text-align: center;

            display: -webkit-box;
            -webkit-line-clamp: 3;   /* ограничение по строкам */
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        @media (max-width: 1000px) {
            .services-grid {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }
        }

        @media (max-width: 760px) {
            .services-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 520px) {
            .services-grid {
                grid-template-columns: 1fr;
            }

            .services-title {
                font-size: 28px;
            }
        }


        /* Модальное окно обращений */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .modal.show {
            opacity: 1;
        }

        .modal-content {
            background-color: #ffffff;
            border-radius: 16px;
            padding: 32px;
            max-width: 600px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            transform: scale(0.9);
            transition: transform 0.3s ease;
            position: relative;
        }

        .modal.show .modal-content {
            transform: scale(1);
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 24px;
        }

        .modal-title {
            font-size: 24px;
            font-weight: 700;
            color: #1f2937;
            margin: 0;
        }

        .modal-close {
            background: none;
            border: none;
            font-size: 28px;
            color: #9ca3af;
            cursor: pointer;
            padding: 0;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            transition: background-color 0.15s ease, color 0.15s ease;
        }

        .modal-close:hover {
            background-color: #f3f4f6;
            color: #1f2937;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-label {
            display: block;
            margin-bottom: 8px;
            font-size: 14px;
            font-weight: 600;
            color: #374151;
        }

        .form-input,
        .form-textarea {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid #d1d5db;
            border-radius: 8px;
            font-size: 14px;
            font-family: 'Inter', sans-serif;
            transition: border-color 0.15s ease, box-shadow 0.15s ease;
            box-sizing: border-box;
        }

        select.form-input {
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            cursor: pointer;
            padding-right: 40px;
            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='%236b7280' 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 12px center;
            background-color: #fff;
        }

        select.form-input:focus,
        .form-input:focus,
        .form-textarea:focus {
            outline: none;
            border-color: #4263d7;
            box-shadow: 0 0 0 3px rgba(66, 99, 215, 0.1);
        }

        .form-input.input-error,
        .form-textarea.input-error {
            border-color: #ef4444;
        }

        .form-textarea {
            resize: vertical;
            min-height: 120px;
        }

        .error-message {
            display: none;
            color: #ef4444;
            font-size: 12px;
            margin-top: 6px;
        }

        .form-submit-button {
            width: 100%;
            padding: 14px;
            background: #4263d7;
            color: #ffffff;
            border: none;
            border-radius: 12px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
            box-shadow: 0 4px 12px rgba(66, 99, 215, 0.25);
        }

        .form-submit-button:hover:not(:disabled) {
            background: #3556c4;
            transform: translateY(-1px);
            box-shadow: 0 6px 16px rgba(66, 99, 215, 0.3);
        }

        .form-submit-button:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        .file-input-wrapper {
            position: relative;
        }

        .form-file-input-hidden {
            position: absolute;
            width: 0;
            height: 0;
            opacity: 0;
            overflow: hidden;
        }

        .file-attach-button {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 18px;
            background: #ffffff;
            border: 1px solid #d1d5db;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            color: #4263d7;
            cursor: pointer;
            transition: all 0.2s ease;
            font-family: 'Inter', sans-serif;
        }

        .file-attach-button:hover {
            background: #f0f4ff;
            border-color: #4263d7;
            transform: translateY(-1px);
            box-shadow: 0 2px 4px rgba(66, 99, 215, 0.1);
        }

        .file-attach-button:active {
            transform: translateY(0);
        }

        .file-attach-icon {
            font-size: 16px;
        }

        .attachments-list {
            margin-top: 12px;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .attachment-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 14px;
            background: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            font-size: 13px;
            color: #374151;
            transition: all 0.15s ease;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
        }

        .attachment-item:hover {
            border-color: #4263d7;
            box-shadow: 0 2px 4px rgba(66, 99, 215, 0.1);
            transform: translateY(-1px);
        }

        .attachment-name {
            flex: 1;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            padding-right: 8px;
            font-weight: 500;
        }

        .attachment-remove {
            background: #fef2f2;
            border: none;
            color: #ef4444;
            cursor: pointer;
            font-size: 18px;
            font-weight: 600;
            padding: 4px 8px;
            margin-left: 8px;
            border-radius: 4px;
            width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.15s ease;
            line-height: 1;
        }

        .attachment-remove:hover {
            background: #fee2e2;
            color: #dc2626;
            transform: scale(1.1);
        }

        .attachment-remove:active {
            transform: scale(0.95);
        }

        .attachment-icon {
            margin-right: 8px;
            font-size: 16px;
            flex-shrink: 0;
        }

        .ecp-info {
            display: none;
            background: #fef3c7;
            border: 1px solid #fcd34d;
            border-radius: 8px;
            padding: 12px 16px;
            margin-bottom: 20px;
            font-size: 13px;
            color: #92400e;
        }

        .ecp-info-title {
            font-weight: 600;
            margin-bottom: 6px;
        }   
        .page-empty {
            min-height: 520px;
            background: #E8F0FF; 
        }

        @media (max-width: 600px) {
            .modal-content {
                padding: 24px 20px;
                width: 95%;
            }

            .modal-title {
                font-size: 20px;
            }
        }

        .site-footer {
            margin-top: 70px;
            background: #1f1f1f;
            color: #d6d7db;
            padding: 26px 0 28px;
        }

        .footer-inner {
            max-width: min(100% - 32px, 1180px);
            margin: 0 auto;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 18px;
            display: flex;
            justify-content: end;
            align-items: center;
            font-size: 13px;
        }

        .footer-muted {
            color: #c8cbd3;
        }

        @media (max-width: 700px) {
            .footer-inner {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }
        }
        @media (max-width: 900px) {
            .hero-inner {
                display: flex;
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 24px;
            }

            .hero-actions {
                flex-direction: column;
                align-items: center;
            }

            .navbar .container {
                overflow-x: auto;
            }

            .nav-links {
                width: max-content;
                min-width: 100%;
                gap: 8px;
            }
        }