/* =========================================================
   RESET
========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    color: #172b4d;
    background: #ffffff;
    line-height: 1.6;
}

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

button {
    font-family: inherit;
}

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


/* =========================================================
   VARIABLES
========================================================= */

:root {

    --primary: #0b67b2;
    --primary-dark: #084c85;
    --primary-light: #eaf5ff;

    --navy: #12345b;

    --text: #172b4d;
    --muted: #6d7c91;

    --border: #e6edf4;

    --background: #ffffff;
    --light: #f7faff;

    --green: #17a673;
    --orange: #ed8a24;
    --purple: #7955d8;

    --shadow:
        0 12px 35px rgba(24, 62, 102, 0.08);

    --shadow-hover:
        0 20px 45px rgba(24, 62, 102, 0.13);

    --radius: 18px;
}


/* =========================================================
   CONTAINER
========================================================= */

.container {
    width: min(1180px, calc(100% - 40px));
    margin: auto;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255, 255, 255, 0.96);

    border-bottom: 1px solid rgba(230, 237, 244, 0.8);

    backdrop-filter: blur(12px);

    transition: 0.3s ease;
}

.site-header.scrolled {
    box-shadow:
        0 8px 30px rgba(18, 52, 91, 0.08);
}

.header-container {
    height: 78px;

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


/* =========================================================
   BRAND
========================================================= */

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;

    border-radius: 12px;

    overflow: hidden;

    border: 1px solid #e3ebf3;

    flex-shrink: 0;
}

.brand-logo img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    padding: 4px;
}

.brand-text {
    display: flex;
    flex-direction: column;

    line-height: 1.2;
}

.brand-title {
    font-size: 15px;
    font-weight: 800;

    color: var(--navy);
}

.brand-location {
    margin-top: 3px;

    font-size: 12px;
    font-weight: 600;

    color: var(--primary);
}


/* =========================================================
   DESKTOP NAV
========================================================= */

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link {
    padding: 9px 10px;

    color: #50647d;

    font-size: 13px;
    font-weight: 600;

    border-radius: 8px;

    transition: 0.2s ease;
}

.nav-link:hover {
    color: var(--primary);
    background: var(--primary-light);
}

.nav-button {
    margin-left: 10px;

    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 11px 17px;

    color: white;

    background: var(--primary);

    border-radius: 10px;

    font-size: 13px;
    font-weight: 700;

    box-shadow:
        0 8px 20px rgba(11, 103, 178, 0.18);

    transition: 0.25s ease;
}

.nav-button:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}


/* =========================================================
   MOBILE NAV
========================================================= */

.mobile-menu-button {
    display: none;

    width: 42px;
    height: 42px;

    border: 0;
    border-radius: 10px;

    background: var(--primary-light);
    color: var(--primary);

    font-size: 18px;

    cursor: pointer;
}

.mobile-nav {
    display: none;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    padding: 90px 0 85px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #f7fbff 0%,
            #ffffff 55%,
            #f2f8ff 100%
        );
}

.hero::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -220px;
    top: -230px;

    background: rgba(11, 103, 178, 0.06);

    border-radius: 50%;
}

.hero-container {
    position: relative;

    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(360px, 0.75fr);

    align-items: center;

    gap: 80px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 7px 12px;

    margin-bottom: 20px;

    border-radius: 30px;

    background: #e9f5ff;

    color: var(--primary);

    font-size: 12px;
    font-weight: 700;
}

.badge-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--primary);
}

.hero h1 {
    max-width: 680px;

    font-size: clamp(38px, 5vw, 62px);

    line-height: 1.08;

    letter-spacing: -2px;

    color: var(--navy);

    font-weight: 800;
}

.hero h1 span {
    display: block;
    color: var(--primary);
}

.hero-content > p {
    max-width: 650px;

    margin-top: 22px;

    color: var(--muted);

    font-size: 16px;

    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-top: 30px;
}


/* =========================================================
   BUTTON
========================================================= */

.button-primary,
.button-secondary,
.button-white {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    min-height: 46px;

    padding: 0 19px;

    border-radius: 11px;

    font-size: 13px;
    font-weight: 700;

    transition: 0.25s ease;
}

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

    box-shadow:
        0 10px 25px rgba(11, 103, 178, 0.18);
}

.button-primary:hover {
    background: var(--primary-dark);

    transform: translateY(-2px);
}

.button-secondary {
    color: var(--navy);

    border: 1px solid var(--border);

    background: white;
}

.button-secondary:hover {
    border-color: #cbd9e7;

    transform: translateY(-2px);

    box-shadow: var(--shadow);
}

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

.button-white:hover {
    transform: translateY(-2px);

    box-shadow:
        0 12px 30px rgba(0,0,0,0.15);
}


/* =========================================================
   HERO INFO
========================================================= */

.hero-information {
    display: flex;
    flex-wrap: wrap;

    gap: 30px;

    margin-top: 38px;
}

.hero-info-item {
    display: flex;
    align-items: center;

    gap: 10px;
}

.hero-info-icon {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: var(--primary-light);

    color: var(--primary);
}

.hero-info-item strong {
    display: block;

    color: var(--navy);

    font-size: 12px;
}

.hero-info-item span {
    display: block;

    color: var(--muted);

    font-size: 11px;
}


/* =========================================================
   HERO CARD
========================================================= */

.hero-visual {
    position: relative;
}

.hero-card {
    padding: 30px;

    border-radius: 24px;

    background: white;

    border: 1px solid #e7eef6;

    box-shadow:
        0 25px 60px rgba(22, 63, 104, 0.11);

    position: relative;
}

.hero-card::after {
    content: "";

    position: absolute;

    width: 100px;
    height: 100px;

    right: -25px;
    bottom: -25px;

    background: var(--primary-light);

    border-radius: 50%;

    z-index: -1;
}

.hero-card-header {
    display: flex;
    align-items: center;
    gap: 14px;

    padding-bottom: 22px;

    border-bottom: 1px solid var(--border);
}

.hero-card-icon {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 15px;

    background: var(--primary-light);

    color: var(--primary);

    font-size: 21px;
}

.hero-card-header span {
    display: block;

    color: var(--muted);

    font-size: 11px;
}

.hero-card-header strong {
    display: block;

    color: var(--navy);

    font-size: 16px;
}

.hero-card-list {
    padding: 18px 0;
}

.hero-card-list div {
    display: flex;
    align-items: center;

    gap: 12px;

    padding: 9px 0;

    color: #53677f;

    font-size: 13px;
}

.hero-card-list i {
    width: 22px;
    height: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #eaf9f4;

    color: var(--green);

    font-size: 10px;
}

.hero-card-footer {
    display: flex;

    gap: 10px;

    padding-top: 18px;

    border-top: 1px solid var(--border);

    color: var(--muted);

    font-size: 11px;

    line-height: 1.6;
}

.hero-card-footer i {
    color: var(--primary);

    margin-top: 3px;
}


/* =========================================================
   SECTION
========================================================= */

.section {
    padding: 90px 0;
}

.section-light {
    background: var(--light);
}

.section-heading {
    max-width: 650px;

    margin: 0 auto 45px;

    text-align: center;
}

.section-label {
    display: inline-block;

    margin-bottom: 12px;

    color: var(--primary);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.4px;
}

.section-heading h2 {
    color: var(--navy);

    font-size: clamp(28px, 4vw, 40px);

    line-height: 1.2;

    letter-spacing: -1px;
}

.section-heading p {
    margin-top: 12px;

    color: var(--muted);

    font-size: 14px;
}


/* =========================================================
   SERVICE GRID
========================================================= */

.service-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;
}

.service-card {
    padding: 26px;

    background: white;

    border: 1px solid var(--border);

    border-radius: var(--radius);

    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);

    box-shadow: var(--shadow-hover);

    border-color: transparent;
}

.service-icon {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    border-radius: 14px;

    font-size: 19px;
}

.service-icon.blue {
    color: var(--primary);
    background: var(--primary-light);
}

.service-icon.green {
    color: var(--green);
    background: #eaf9f4;
}

.service-icon.orange {
    color: var(--orange);
    background: #fff4e7;
}

.service-icon.purple {
    color: var(--purple);
    background: #f1edff;
}

.service-card h3 {
    color: var(--navy);

    font-size: 16px;
}

.service-card p {
    margin-top: 8px;

    color: var(--muted);

    font-size: 12px;

    line-height: 1.7;
}

.service-link {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    margin-top: 20px;

    color: var(--primary);

    font-size: 12px;
    font-weight: 700;
}

.service-link i {
    transition: 0.2s;
}

.service-card:hover .service-link i {
    transform: translateX(4px);
}


/* =========================================================
   CLINIC
========================================================= */

.clinic-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 15px;
}

.clinic-card {
    display: flex;
    align-items: center;

    gap: 14px;

    padding: 18px 20px;

    border-radius: 14px;

    background: white;

    border: 1px solid var(--border);

    color: var(--navy);

    font-size: 13px;
    font-weight: 700;

    transition: 0.25s ease;
}

.clinic-card:hover {
    transform: translateY(-3px);

    border-color: #cbddec;

    box-shadow: var(--shadow);
}

.clinic-card i {
    color: var(--primary);

    font-size: 18px;
}


/* =========================================================
   SCHEDULE
========================================================= */

.schedule-box {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 50px;

    padding: 45px;

    border-radius: 25px;

    background:
        linear-gradient(
            135deg,
            #f0f8ff,
            #ffffff
        );

    border: 1px solid #dfeaf4;
}

.schedule-content {
    max-width: 650px;
}

.schedule-content h2 {
    margin-bottom: 12px;

    color: var(--navy);

    font-size: 32px;

    letter-spacing: -0.8px;
}

.schedule-content p {
    margin-bottom: 22px;

    color: var(--muted);

    font-size: 14px;
}

.schedule-icon {
    width: 130px;
    height: 130px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 35px;

    background: white;

    color: var(--primary);

    font-size: 50px;

    box-shadow: var(--shadow);

    flex-shrink: 0;
}


/* =========================================================
   STEPS
========================================================= */

.steps {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}

.step {
    padding: 25px;

    background: white;

    border: 1px solid var(--border);

    border-radius: var(--radius);
}

.step-number {
    margin-bottom: 18px;

    color: var(--primary);

    font-size: 13px;
    font-weight: 800;
}

.step h3 {
    color: var(--navy);

    font-size: 15px;
}

.step p {
    margin-top: 7px;

    color: var(--muted);

    font-size: 12px;
}


/* =========================================================
   REGISTER
========================================================= */

.register-box {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding: 48px;

    border-radius: 25px;

    background:
        linear-gradient(
            135deg,
            #095795,
            #0b76c9
        );

    box-shadow:
        0 20px 50px rgba(11, 103, 178, 0.17);
}

.register-box h2 {
    color: white;

    font-size: 32px;

    letter-spacing: -0.7px;
}

.register-box p {
    max-width: 600px;

    margin-top: 8px;

    color: rgba(255,255,255,0.78);

    font-size: 14px;
}

.white-label {
    color: rgba(255,255,255,0.7);
}


/* =========================================================
   CONTACT
========================================================= */

.contact-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}

.contact-card {
    display: flex;
    align-items: flex-start;

    gap: 15px;

    padding: 23px;

    background: white;

    border: 1px solid var(--border);

    border-radius: var(--radius);
}

.contact-card-icon {
    width: 43px;
    height: 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: var(--primary-light);

    color: var(--primary);

    flex-shrink: 0;
}

.contact-card h3 {
    color: var(--navy);

    font-size: 14px;
}

.contact-card p {
    margin-top: 4px;

    color: var(--muted);

    font-size: 12px;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    background: #ffffff;

    border-top: 1px solid var(--border);

    padding: 55px 0 25px;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr 1.2fr;

    gap: 50px;

    padding-bottom: 40px;
}

.footer-brand-top {
    display: flex;
    align-items: center;

    gap: 12px;
}

.footer-logo {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    border: 1px solid var(--border);

    border-radius: 12px;
}

.footer-logo img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    padding: 3px;
}

.footer-brand h3 {
    color: var(--navy);

    font-size: 15px;
}

.footer-brand-top p {
    color: var(--primary);

    font-size: 11px;
    font-weight: 700;
}

.footer-description {
    max-width: 300px;

    margin-top: 18px;

    color: var(--muted);

    font-size: 12px;

    line-height: 1.8;
}

.footer-column {
    display: flex;
    flex-direction: column;

    gap: 10px;
}

.footer-column h4 {
    margin-bottom: 6px;

    color: var(--navy);

    font-size: 13px;
}

.footer-column a {
    color: var(--muted);

    font-size: 12px;

    transition: 0.2s ease;
}

.footer-column a:hover {
    color: var(--primary);
}

.contact-item {
    display: flex;

    gap: 9px;

    color: var(--muted);

    font-size: 12px;
}

.contact-item i {
    width: 15px;

    margin-top: 4px;

    color: var(--primary);
}

.footer-bottom {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding-top: 22px;

    border-top: 1px solid var(--border);

    color: #8794a5;

    font-size: 11px;
}

.footer-small {
    color: #9aa7b6;
}


/* =========================================================
   RESPONSIVE TABLET
========================================================= */

@media (max-width: 1050px) {

    .desktop-nav {
        gap: 0;
    }

    .nav-link {
        padding: 8px 7px;

        font-size: 11px;
    }

    .nav-button {
        padding: 10px 12px;

        font-size: 11px;
    }

    .hero-container {
        gap: 45px;
    }

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

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

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


/* =========================================================
   RESPONSIVE MOBILE
========================================================= */

@media (max-width: 768px) {

    .container {
        width: min(100% - 28px, 1180px);
    }


    /* HEADER */

    .header-container {
        height: 68px;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-menu-button {
        display: flex;

        align-items: center;
        justify-content: center;
    }

    .mobile-nav {
        display: none;

        padding: 10px 14px 18px;

        background: white;

        border-top: 1px solid var(--border);

        box-shadow:
            0 15px 30px rgba(18, 52, 91, 0.08);
    }

    .mobile-nav.active {
        display: flex;

        flex-direction: column;
    }

    .mobile-nav a {
        display: flex;
        align-items: center;

        gap: 12px;

        padding: 12px;

        color: #53677f;

        border-radius: 9px;

        font-size: 13px;
        font-weight: 600;
    }

    .mobile-nav a:hover {
        color: var(--primary);
        background: var(--primary-light);
    }

    .mobile-nav i {
        width: 20px;

        color: var(--primary);
    }

    .mobile-nav .mobile-register {
        justify-content: center;

        margin-top: 5px;

        color: white;

        background: var(--primary);
    }


    /* HERO */

    .hero {
        padding: 65px 0 60px;
    }

    .hero-container {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .hero h1 {
        font-size: 39px;

        letter-spacing: -1.5px;
    }

    .hero-content > p {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: stretch;
    }

    .button-primary,
    .button-secondary {
        width: 100%;
    }

    .hero-information {
        gap: 18px;

        flex-direction: column;
    }

    .hero-card {
        padding: 23px;
    }


    /* SECTION */

    .section {
        padding: 65px 0;
    }

    .section-heading {
        margin-bottom: 32px;
    }


    /* SERVICE */

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


    /* CLINIC */

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


    /* SCHEDULE */

    .schedule-box {
        flex-direction: column;

        align-items: flex-start;

        padding: 30px;
    }

    .schedule-content h2 {
        font-size: 26px;
    }

    .schedule-icon {
        width: 80px;
        height: 80px;

        border-radius: 22px;

        font-size: 30px;
    }


    /* STEPS */

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


    /* REGISTER */

    .register-box {
        flex-direction: column;

        align-items: flex-start;

        padding: 32px;
    }

    .register-box h2 {
        font-size: 26px;
    }


    /* CONTACT */

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


    /* FOOTER */

    .site-footer {
        padding: 45px 0 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;

        gap: 5px;
    }

}


/* =========================================================
   SMALL PHONE
========================================================= */

@media (max-width: 400px) {

    .brand-title {
        font-size: 13px;
    }

    .brand-location {
        font-size: 10px;
    }

    .brand-logo {
        width: 45px;
        height: 45px;
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero-card {
        padding: 20px;
    }

}

/* =========================================================
   RSHD MODERN UI
   ========================================================= */

.header-container {
  width: min(1180px, 92%);
  height: 76px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 245px;
}

.brand-logo {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-title {
  display: block;
  color: #123b70;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.15;
}

.brand-location {
  display: block;
  margin-top: 3px;
  color: #6b8199;
  font-size: 11px;
  font-weight: 600;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-link {
  padding: 10px 11px;
  border-radius: 9px;
  color: #45627f;
  font-size: 13px;
  font-weight: 600;
  transition: .2s ease;
}

.nav-link:hover {
  color: #0860d8;
  background: #eef6ff;
}

.nav-button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-left: 7px;
  padding: 11px 16px;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg,#0860d8,#0753b8);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 9px 22px rgba(8,96,216,.18);
  transition: .2s ease;
}

.nav-button:hover {
  transform: translateY(-1px);
}

.mobile-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid #d8e6f1;
  border-radius: 10px;
  background: #fff;
  color: #123b70;
  cursor: pointer;
}

.mobile-nav {
  display: none;
}

.hero {
  min-height: 540px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 18%,rgba(8,96,216,.10),transparent 25%),
    radial-gradient(circle at 75% 90%,rgba(0,168,107,.09),transparent 28%),
    linear-gradient(135deg,#f7fcff 0%,#edf8ff 56%,#e8f8f3 100%);
  border-bottom: 1px solid #e1edf5;
}

.hero-container {
  width: min(1180px,92%);
  min-height: 540px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 55px;
}

.hero-content {
  max-width: 690px;
  padding: 60px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border-radius: 999px;
  color: #008e64;
  background: #e7f8f0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .7px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00a86b;
  box-shadow: 0 0 0 4px rgba(0,168,107,.10);
}

.hero h1 {
  margin: 19px 0 17px;
  color: #103a70;
  font-size: clamp(40px,5vw,64px);
  line-height: 1.03;
  letter-spacing: -2px;
}

.hero h1 span {
  color: #0860d8;
}

.hero-content > p {
  max-width: 610px;
  margin: 0;
  color: #5a738e;
  font-size: 16px;
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 28px;
}

.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 19px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 750;
  transition: .2s ease;
}

.button-primary {
  color: #fff;
  background: #0860d8;
  box-shadow: 0 12px 28px rgba(8,96,216,.20);
}

.button-primary:hover {
  transform: translateY(-2px);
  background: #0753b8;
}

.button-secondary {
  color: #184774;
  background: rgba(255,255,255,.85);
  border: 1px solid #d5e4ef;
}

.button-secondary:hover {
  transform: translateY(-2px);
  background: #fff;
}

.hero-information {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 27px;
}

.hero-info-item {
  display: flex;
  align-items: center;
  gap: 9px;
}

.hero-info-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: #0860d8;
  background: #eaf3ff;
}

.hero-info-item strong,
.hero-info-item span {
  display: block;
}

.hero-info-item strong {
  color: #234b77;
  font-size: 12px;
}

.hero-info-item span {
  margin-top: 2px;
  color: #7a8fa4;
  font-size: 10px;
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
}

.hero-card {
  width: min(420px,100%);
  padding: 16px;
  border: 1px solid rgba(185,210,228,.9);
  border-radius: 22px;
  background: rgba(255,255,255,.80);
  box-shadow: 0 25px 65px rgba(22,73,121,.13);
  backdrop-filter: blur(12px);
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 5px 6px 16px;
}

.hero-card-icon {
  width: 49px;
  height: 49px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg,#0860d8,#00a86b);
  font-size: 21px;
}

.hero-card-header span {
  display: block;
  color: #8096aa;
  font-size: 10px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.hero-card-header strong {
  display: block;
  margin-top: 2px;
  color: #163e70;
  font-size: 17px;
}

.hero-card-list {
  display: grid;
  gap: 8px;
}

.hero-card-list > div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border: 1px solid #e0edf5;
  border-radius: 11px;
  background: #fbfdff;
}

.hero-card-list i {
  color: #00a86b;
}

.hero-card-list span {
  color: #486581;
  font-size: 12px;
  font-weight: 600;
}

.hero-card-footer {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: 10px;
  padding: 12px;
  border-radius: 11px;
  color: #607992;
  background: #eef8fc;
  font-size: 10px;
  line-height: 1.5;
}

.hero-card-footer i {
  color: #0860d8;
}

.section {
  padding: 62px 0;
}

.section-label {
  margin-bottom: 8px;
  color: #008e64;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.6px;
}

.section-heading h2 {
  font-size: 29px;
  letter-spacing: -.7px;
}

.service-grid {
  gap: 16px;
}

.service-card {
  min-height: 175px;
  padding: 21px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(22,73,121,.055);
  transition: .22s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 38px rgba(22,73,121,.11);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  color: #0860d8;
  font-size: 11px;
  font-weight: 800;
}

.service-link i {
  transition: .2s ease;
}

.service-card:hover .service-link i {
  transform: translateX(4px);
}

.info-panel,
.form-card,
.steps article,
.table-wrap {
  box-shadow: 0 10px 28px rgba(22,73,121,.055);
}

.site-footer {
  background: #0b2c55;
  padding: 40px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 35px;
}

.footer-logo {
  width: 46px;
  height: 46px;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-brand h3 {
  margin: 0;
  color: #fff;
  font-size: 17px;
}

.footer-brand-top p {
  margin: 2px 0 0;
  color: #bcd0e4;
  font-size: 11px;
}

.footer-description {
  max-width: 360px;
  color: #b7cbe0;
  font-size: 12px;
  line-height: 1.7;
}

.footer-column h4 {
  color: #fff;
  font-size: 13px;
}

.footer-column a {
  display: block;
  margin: 9px 0;
  color: #b9cce0;
  font-size: 12px;
  transition: .2s ease;
}

.footer-column a:hover {
  color: #fff;
  transform: translateX(2px);
}

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu-button {
    display: flex;
    margin-left: auto;
  }

  .mobile-nav {
    display: none;
    padding: 5px 4%;
    background: #fff;
    border-top: 1px solid #e5eef5;
  }

  .mobile-nav.open {
    display: grid;
  }

  .mobile-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 7px;
    border-bottom: 1px solid #edf2f7;
    color: #365673;
    font-size: 13px;
    font-weight: 600;
  }

  .mobile-register {
    justify-content: center;
    margin: 9px 0;
    border-radius: 10px;
    color: #fff;
    background: #0860d8;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 54px 0;
  }

  .hero-content {
    max-width: 760px;
    padding: 0;
  }

  .hero-visual {
    justify-content: flex-start;
  }

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

@media (max-width: 640px) {
  .header-container,
  .hero-container {
    width: calc(100% - 28px);
  }

  .hero-container {
    padding: 42px 0 48px;
  }

  .hero h1 {
    font-size: 39px;
    letter-spacing: -1.5px;
  }

  .hero-content > p {
    font-size: 14px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .button-primary,
  .button-secondary {
    width: 100%;
  }

  .hero-information {
    flex-direction: column;
    gap: 13px;
  }

  .hero-card {
    border-radius: 17px;
  }

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

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

@media (max-width: 380px) {
  .hero h1 {
    font-size: 35px;
  }

  .brand-title {
    font-size: 15px;
  }
}

