:root {
    --blue-900: #1e3a8a;
    --blue-800: #1e40af;
    --blue-700: #1d4ed8;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-900: #111827;
    --white: #fff;
    --shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Arial, sans-serif;
    color: #111
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--white);
    box-shadow: var(--shadow)
}

.header-inner {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    flex-wrap: wrap
}

.brand {
    display: flex;
    align-items: center
}

.brand-icon {
    width: 40px;
    height: 40px;
    color: var(--blue-900)
}

.brand-text {
    margin-left: 12px
}

.brand-name {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #111
}

.brand-sub {
    margin: 0;
    font-size: .75rem;
    color: #555
}

/* Nav */
.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center
}

.nav-link {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: .95rem;
    color: #444;
    text-decoration: none
}

.nav-link:hover {
    background: var(--gray-100)
}

.nav-link.active {
    background: var(--blue-800);
    color: var(--white)
}

/* Hero */
.hero {
    background: linear-gradient(90deg, var(--blue-900), var(--blue-700));
    color: var(--white);
    padding: 64px 0;
    text-align: center
}

.hero-title {
    font-size: 2rem;
    margin: 0 0 12px
}

@media(min-width:768px) {
    .hero-title {
        font-size: 2.8rem
    }
}

.hero-sub {
    font-size: 1.1rem;
    max-width: 680px;
    margin: 0 auto 24px
}

/* Buttons */
.btn {
    border: 0;
    border-radius: 10px;
    padding: 10px 16px;
    font-weight: 700;
    cursor: pointer
}

.btn-lg {
    padding: 14px 24px;
    font-size: 1.05rem
}

.btn-primary {
    background: var(--blue-800);
    color: var(--white)
}

.btn-primary:hover {
    background: var(--blue-700);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--gray-300);
    color: #111
}

.btn-outline:hover {
    background: var(--gray-100)
}

.btn-icon {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.w-full {
    width: 100%
}

.get{
    background: var(--white);
    color: var(--blue-800);
}

.get:hover {
    background: var(--blue-700);
    color: var(--white);
}

/* Sections */
.section {
    padding: 64px 0
}

.gray {
    background: #f7f9fc
}

.section-head {
    text-align: center;
    margin-bottom: 32px
}

.section-title {
    margin: 0 0 8px;
    font-size: 2rem;
    color: #111
}

.section-sub {
    color: #555;
    margin: 8px auto 0;
    max-width: 720px
}

.rule {
    width: 80px;
    height: 4px;
    background: var(--blue-800);
    margin: 12px auto;
    border-radius: 999px
}

/* About */
.about-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr
}

@media(min-width:960px) {
    .about-grid {
        grid-template-columns: 1fr 1fr
    }
}

.about-title {
    font-size: 1.4rem;
    margin: 0 0 12px
}

.cards-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, 1fr)
}

@media(min-width:960px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

.card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    box-shadow: var(--shadow)
}

.card-flat {
    background: #eef5ff;
    border-radius: 10px;
    padding: 24px
}

.card-accent-top {
    border-top: 4px solid var(--blue-800)
}

.card-accent-left {
    border-left: 4px solid var(--blue-800)
}

.card-hover {
    transition: box-shadow .2s
}

.card-hover:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, .1)
}

.card-head {
    padding: 16px 18px;
    border-bottom: 1px solid var(--gray-200)
}

.card-title {
    margin: 0;
    font-size: 1.125rem;
    color: #111
}

.card-desc {
    margin: 6px 0 0;
    color: #666
}

.card-body {
    padding: 18px
}

.card-kpi {
    display: flex;
    align-items: center;
    gap: 12px
}

.kpi-icon {
    width: 40px;
    height: 40px;
    color: var(--blue-800)
}

.kpi-value {
    margin: 0;
    font-weight: 800;
    font-size: 1.5rem;
    color: #111
}

.kpi-label {
    margin: 0;
    color: #666
}

/* Grids */
.grid-4 {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr
}

@media(min-width:768px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(min-width:1200px) {
    .grid-4 {
        grid-template-columns: repeat(4, 1fr)
    }
}

.grid-3 {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr
}

@media(min-width:960px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr)
    }
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr
}

.gap {
    gap: 16px
}

/* Testimonials */
.avatar-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px
}

.avatar {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: #e5e7eb;
    border: 2px dashed #cbd5e1
}

.avatar-name {
    margin: 0;
    font-weight: 700
}

.avatar-sub {
    margin: 2px 0 0;
    color: #666;
    font-size: .9rem
}

.quote {
    color: #333;
    font-style: italic
}

/* Contact */
.contact-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr
}

@media(min-width:1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr
    }
}

.form-field {
    display: grid;
    gap: 6px;
    margin-bottom: 12px
}

.label {
    font-weight: 600;
    color: #333
}

.input,
.textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    font-size: 1rem
}

.input:focus,
.textarea:focus {
    outline: none;
    border-color: var(--blue-800);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, .15)
}

.info-title {
    font-size: 1.4rem;
    margin: 0 0 16px
}

.info-block {
    display: flex;
    gap: 12px;
    margin: 16px 0
}

.info-icon {
    width: 24px;
    height: 24px;
    color: var(--blue-800);
    flex: 0 0 auto;
    margin-top: 2px
}

.info-head {
    margin: 0 0 6px
}

.hours {
    margin-top: 16px
}

.social {
    margin-top: 20px
}

.social-row {
    display: flex;
    gap: 10px
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 48px 0
}

.footer-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr
}

@media(min-width:960px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.4fr
    }
}

.brand-sm {
    display: flex;
    align-items: center;
    margin-bottom: 8px
}

.brand-icon-sm {
    width: 32px;
    height: 32px;
    color: #93c5fd
}

.brand-foot {
    margin-left: 8px;
    font-weight: 700;
    font-size: 1.1rem
}

.foot-title {
    margin: 0 0 12px
}

.foot-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
    color: #cbd5e1
}

.foot-link {
    color: #cbd5e1;
    text-decoration: none
}

.foot-link:hover {
    text-decoration: underline
}

.foot-row {
    display: flex;
    align-items: flex-start;
    gap: 8px
}

.foot-ico {
    width: 18px;
    height: 18px;
    color: #cbd5e1;
    flex: 0 0 auto;
    margin-top: 2px
}

.foot-muted {
    color: #9ca3af
}

.foot-bar {
    border-top: 1px solid #1f2937;
    margin-top: 24px;
    padding-top: 16px;
    text-align: center
}

.mt-2 {
    margin-top: 8px
}