/* =============================================
   Колибри Финанс — Premium Landing Page
   ============================================= */

:root {
    --navy: #1B2A4A;
    --navy-deep: #111D35;
    --navy-light: #243656;
    --teal: #00A89D;
    --teal-light: #00C4B8;
    --teal-dark: #008F86;
    --teal-glow: rgba(0, 168, 157, 0.15);
    --white: #FFFFFF;
    --gray-100: #F4F6F9;
    --gray-200: #E2E6ED;
    --gray-300: #C4CAD6;
    --gray-500: #7A8499;
    --gray-700: #3D4555;
    --red: #E5484D;
    --red-bg: rgba(229, 72, 77, 0.08);
    --green: #30A46C;
    --green-bg: rgba(48, 164, 108, 0.08);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
    --shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 12px rgba(0,0,0,0.04);
    --shadow-lg: 0 4px 16px rgba(0,0,0,0.08), 0 12px 40px rgba(0,0,0,0.06);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =============================================
   Header
   ============================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.header--scrolled {
    background: rgba(17, 29, 53, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

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

.header__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--white);
}

.header__logo img {
    border-radius: 8px;
}

.header__brand {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.header__brand span {
    font-weight: 400;
    opacity: 0.7;
}

.header__nav {
    display: flex;
    gap: 32px;
}

.header__nav a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

.header__nav a:hover {
    color: var(--white);
}

.header__nav a:hover::after {
    width: 100%;
}

.header__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.header__burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

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

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

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

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    background: rgba(17, 29, 53, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.mobile-nav.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 24px;
    font-weight: 500;
    transition: var(--transition);
}

.mobile-nav a:hover {
    color: var(--teal);
}

/* =============================================
   Buttons
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: var(--teal);
    color: var(--white);
    box-shadow: 0 0 0 0 rgba(0, 168, 157, 0.3);
}

.btn--primary:hover {
    background: var(--teal-light);
    box-shadow: 0 4px 20px rgba(0, 168, 157, 0.35);
    transform: translateY(-1px);
}

.btn--primary:active {
    transform: translateY(0);
}

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

.btn__loader {
    display: none;
}

.btn--loading .btn__text {
    visibility: hidden;
}

.btn--loading .btn__loader {
    display: flex;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

/* =============================================
   Hero
   ============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy-deep);
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero__bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.hero__orb--1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--teal) 0%, transparent 70%);
    top: -200px;
    right: -150px;
    animation: orbFloat1 12s ease-in-out infinite;
}

.hero__orb--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #1a5c8a 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation: orbFloat2 15s ease-in-out infinite;
}

.hero__orb--3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--teal-dark) 0%, transparent 70%);
    top: 40%;
    left: 30%;
    opacity: 0.2;
    animation: orbFloat3 18s ease-in-out infinite;
}

.hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 20%, transparent 70%);
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-30px, 40px) scale(1.05); }
    66% { transform: translate(20px, -20px) scale(0.95); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

@keyframes orbFloat3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(50px, -40px); }
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero__badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 100px;
    background: rgba(0, 168, 157, 0.12);
    border: 1px solid rgba(0, 168, 157, 0.2);
    color: var(--teal-light);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.hero__title {
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.hero__accent {
    background: linear-gradient(135deg, var(--teal-light), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-size: 20px;
    color: rgba(255,255,255,0.5);
    font-weight: 400;
    margin-bottom: 40px;
    letter-spacing: -0.01em;
}

.hero__cta {
    margin-bottom: 56px;
    font-size: 16px;
    padding: 16px 36px;
}

.hero__stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 28px 40px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
    max-width: 600px;
    margin: 0 auto;
}

.hero__stat {
    text-align: center;
}

.hero__stat-value {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.hero__stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    font-weight: 400;
}

.hero__stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.1);
}

.hero__scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.25);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* =============================================
   Section Title
   ============================================= */
.section-title {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 700;
    color: var(--navy);
    text-align: center;
    letter-spacing: -0.03em;
    margin-bottom: 56px;
}

/* =============================================
   Criteria
   ============================================= */
.criteria {
    padding: 100px 0;
    background: var(--gray-100);
}

.criteria__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 48px;
}

.criteria__card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.criteria__card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.criteria__card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}

.criteria__card-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: -0.02em;
}

.criteria__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.criteria__icon--yes {
    background: var(--green-bg);
    color: var(--green);
}

.criteria__icon--no {
    background: var(--red-bg);
    color: var(--red);
}

.criteria__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.criteria__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    line-height: 1.5;
    color: var(--gray-700);
}

.criteria__item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.criteria__item--yes svg {
    color: var(--green);
}

.criteria__item--no svg {
    color: var(--red);
}

.criteria__item strong {
    font-weight: 600;
    color: var(--navy);
}

.criteria__cta {
    text-align: center;
}

/* =============================================
   FAQ
   ============================================= */
.faq {
    padding: 100px 0;
    background: var(--white);
}

.faq__list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq__item {
    background: var(--gray-100);
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    transition: var(--transition);
    overflow: hidden;
}

.faq__item:hover {
    border-color: var(--gray-200);
}

.faq__item.active {
    background: var(--white);
    border-color: var(--gray-200);
    box-shadow: var(--shadow);
}

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font);
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    text-align: left;
    line-height: 1.4;
    letter-spacing: -0.01em;
    transition: var(--transition);
}

.faq__question:hover {
    color: var(--teal-dark);
}

.faq__chevron {
    flex-shrink: 0;
    color: var(--gray-300);
    transition: var(--transition);
}

.faq__item.active .faq__chevron {
    transform: rotate(180deg);
    color: var(--teal);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__item.active .faq__answer {
    max-height: 200px;
}

.faq__answer p {
    padding: 0 24px 20px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-500);
}

/* =============================================
   Contact
   ============================================= */
.contact {
    padding: 100px 0;
    background: var(--navy-deep);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 168, 157, 0.08) 0%, transparent 70%);
    top: -150px;
    right: -150px;
    pointer-events: none;
}

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

.contact__title {
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.contact__desc {
    font-size: 16px;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    margin-bottom: 32px;
}

.contact__features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact__feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    font-weight: 500;
}

.contact__feature svg {
    color: var(--teal);
    flex-shrink: 0;
}

.contact__form {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 36px;
    backdrop-filter: blur(10px);
}

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

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    margin-bottom: 8px;
    letter-spacing: 0.01em;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-xs);
    font-family: var(--font);
    font-size: 15px;
    color: var(--white);
    transition: var(--transition);
    outline: none;
}

.form-group input::placeholder {
    color: rgba(255,255,255,0.2);
}

.form-group input:focus {
    border-color: var(--teal);
    background: rgba(0, 168, 157, 0.06);
    box-shadow: 0 0 0 3px rgba(0, 168, 157, 0.1);
}

.form-group input.error {
    border-color: var(--red);
    background: rgba(229, 72, 77, 0.06);
}

.form-error {
    display: none;
    font-size: 12px;
    color: var(--red);
    margin-top: 6px;
}

.form-group input.error ~ .form-error {
    display: block;
}

/* ---- Consent checkbox ---- */
.form-consent {
    margin: 20px 0 24px;
}

.consent {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}

.consent input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.consent__box {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 1.5px solid rgba(255,255,255,0.2);
    border-radius: 5px;
    background: rgba(255,255,255,0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    transition: var(--transition);
    margin-top: 1px;
}

.consent input:checked + .consent__box {
    background: var(--teal);
    border-color: var(--teal);
    color: var(--white);
}

.consent input:focus-visible + .consent__box {
    box-shadow: 0 0 0 3px rgba(0, 168, 157, 0.25);
}

.consent.error .consent__box {
    border-color: var(--red);
    background: rgba(229, 72, 77, 0.08);
}

.consent__text {
    font-size: 12px;
    line-height: 1.5;
    color: rgba(255,255,255,0.5);
}

.consent__text a {
    color: var(--teal-light);
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 196, 184, 0.3);
    transition: var(--transition);
}

.consent__text a:hover {
    color: var(--white);
    border-bottom-color: var(--white);
}

.consent__error {
    display: none;
    margin-top: 8px;
    margin-left: 32px;
}

.form-consent.error .consent__error {
    display: block;
}

/* =============================================
   Footer
   ============================================= */
.footer {
    padding: 56px 0 24px;
    background: var(--navy-deep);
    border-top: 1px solid rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.5);
}

.footer__top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer__col--brand {
    max-width: 320px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 14px;
}

.footer__logo img {
    border-radius: 8px;
}

.footer__tagline {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255,255,255,0.4);
}

.footer__heading {
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 18px;
}

.footer__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    line-height: 1.5;
}

.footer__links a:hover {
    color: var(--teal-light);
}

.footer__links--plain li {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    line-height: 1.5;
}

.footer__bottom {
    padding-top: 24px;
    text-align: center;
}

.footer__copy {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .footer__top {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* =============================================
   Policy Modal
   ============================================= */
.modal--policy .modal__content--wide {
    max-width: 760px;
    width: 92%;
    max-height: 85vh;
    padding: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: none;
    background: var(--gray-100);
    color: var(--gray-700);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 2;
}

.modal__close:hover {
    background: var(--gray-200);
    color: var(--navy);
}

.policy {
    overflow-y: auto;
    padding: 48px 56px;
    color: var(--gray-700);
}

.policy::-webkit-scrollbar {
    width: 8px;
}

.policy::-webkit-scrollbar-track {
    background: transparent;
}

.policy::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: 4px;
}

.policy__title {
    font-size: 26px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    padding-right: 40px;
}

.policy__lead {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-700);
    padding: 16px 20px;
    background: var(--gray-100);
    border-left: 3px solid var(--teal);
    border-radius: var(--radius-xs);
    margin-bottom: 20px;
}

.policy h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--navy);
    margin: 24px 0 10px;
    letter-spacing: -0.01em;
}

.policy p {
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 12px;
}

.policy ul {
    margin: 0 0 16px;
    padding-left: 20px;
}

.policy ul li {
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 4px;
}

.policy a {
    color: var(--teal-dark);
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 168, 157, 0.3);
    transition: var(--transition);
}

.policy a:hover {
    color: var(--teal);
    border-bottom-color: var(--teal);
}

@media (max-width: 600px) {
    .policy {
        padding: 36px 24px;
    }
    .policy__title {
        font-size: 22px;
    }
}

/* =============================================
   Modal
   ============================================= */
.modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.modal.active {
    opacity: 1;
    pointer-events: all;
}

.modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
}

.modal__content {
    position: relative;
    background: var(--white);
    border-radius: var(--radius);
    padding: 48px 40px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    transform: scale(0.95) translateY(10px);
    transition: var(--transition);
}

.modal.active .modal__content {
    transform: scale(1) translateY(0);
}

.modal__icon {
    color: var(--teal);
    margin-bottom: 20px;
}

.modal__content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.modal__content p {
    font-size: 15px;
    color: var(--gray-500);
    margin-bottom: 28px;
}

/* =============================================
   Scroll animations
   ============================================= */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* =============================================
   Responsive
   ============================================= */
@media (max-width: 768px) {
    .header__nav {
        display: none;
    }

    .header__burger {
        display: flex;
    }

    .mobile-nav {
        display: flex;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero__stats {
        flex-direction: column;
        gap: 20px;
        padding: 24px;
    }

    .hero__stat-divider {
        width: 40px;
        height: 1px;
    }

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

    .criteria__card {
        padding: 28px;
    }

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

    .contact__form {
        padding: 28px;
    }

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

    .section-title {
        margin-bottom: 40px;
    }

    .criteria, .faq, .contact {
        padding: 72px 0;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 28px;
    }

    .hero__badge {
        font-size: 11px;
    }

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

    .btn {
        padding: 14px 24px;
    }

    .faq__question {
        padding: 16px 20px;
        font-size: 15px;
    }

    .faq__answer p {
        padding: 0 20px 16px;
    }
}
