:root {
    --primary-color: #0b1220;
    --primary-soft: #152238;
    --secondary-color: #5f738c;
    --accent-color: #2f80c3;
    --accent-color-strong: #1f6fb3;
    --accent-light: #e9f4ff;
    --bg-light: #eef4f8;
    --bg-soft: #f7fbfe;
    --text-color: #24364a;
    --text-dark: #0f172a;
    --white: #ffffff;
    --border-color: #d8e4ee;
    --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.06);
    --shadow-card: 0 16px 40px rgba(15, 23, 42, 0.07);
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --font-main: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --transition: all 0.25s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    background:
        radial-gradient(circle at top left, rgba(47, 128, 195, 0.08), transparent 26%),
        radial-gradient(circle at top right, rgba(47, 128, 195, 0.05), transparent 22%),
        linear-gradient(180deg, #f6fbff 0%, #eef4f8 100%);
    line-height: 1.7;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-size: 16px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 16px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color-strong);
}

h1,
h2,
h3,
h4 {
    color: var(--text-dark);
    font-weight: 300;
    line-height: 1.14;
    letter-spacing: -0.02em;
    margin-bottom: 0.9rem;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.65rem;
}

h3 {
    font-size: 1.2rem;
}

p {
    margin-bottom: 1rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(216, 228, 238, 0.9);
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.04);
}

.header-container {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    color: var(--text-dark);
}

.logo:hover {
    color: var(--text-dark);
}

.logo-image {
    width: 52px;
    height: 52px;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 14px;
    background: #06111d;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.14);
}

.logo-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.logo-title {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-dark);
    line-height: 1.1;
}

.logo-subtitle {
    font-size: 0.78rem;
    color: var(--secondary-color);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.2;
    margin-top: 3px;
}

.hamburger {
    width: 46px;
    height: 46px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: var(--white);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    flex-shrink: 0;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
}

.hamburger span {
    width: 20px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 999px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.main-nav {
    position: fixed;
    top: 83px;
    right: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(216, 228, 238, 0.95);
    border-radius: 20px;
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.16);
    padding: 14px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: var(--transition);
}

.main-nav.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.main-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.main-nav li {
    margin: 0;
}

.main-nav a {
    display: block;
    padding: 14px 16px;
    border-radius: 14px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
}

.main-nav a:hover,
.main-nav a.active {
    background: var(--accent-light);
    color: var(--accent-color-strong);
}

.site-main {
    flex: 1;
    padding: 22px 0 50px;
}

.hero {
    position: relative;
    overflow: hidden;
    text-align: center;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 255, 0.98)),
        radial-gradient(circle at 20% 20%, rgba(47, 128, 195, 0.12), transparent 28%);
    border: 1px solid rgba(216, 228, 238, 0.9);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    padding: 48px 20px 42px;
    margin-bottom: 22px;
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(47, 128, 195, 0.10), transparent 70%);
    pointer-events: none;
}

.hero::before {
    width: 180px;
    height: 180px;
    top: -70px;
    left: -60px;
}

.hero::after {
    width: 220px;
    height: 220px;
    right: -90px;
    bottom: -110px;
}

.hero > * {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 2rem;
    max-width: 900px;
    margin: 0 auto 18px;
}

.hero p {
    max-width: 760px;
    margin: 0 auto 24px;
    color: var(--secondary-color);
    font-size: 1.05rem;
}

.hero-slider {
    padding: 0;
    min-height: 420px;
    display: flex;
    align-items: stretch;
}

.hero-slider::before,
.hero-slider::after {
    display: none;
}

.hero-slider-viewport {
    width: 100%;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.hero-slider-track {
    display: flex;
    width: 100%;
    transition: transform 0.45s ease;
    will-change: transform;
}

.hero-slide {
    min-width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    min-height: 420px;
    overflow: hidden;
}

.hero-slide-media {
    position: absolute;
    inset: 0;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    transform: scale(1.02);
}

.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(6, 17, 29, 0.45) 0%, rgba(6, 17, 29, 0.38) 35%, rgba(6, 17, 29, 0.58) 100%);
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
    padding: 34px 22px 78px;
    text-align: center;
    background: rgba(0, 0, 0, 0.38);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 24px;
}

.hero-slide-content h1,
.hero-slide-content h2,
.hero-slide-content h3 {
    color: var(--white);
    font-weight: 300;
    margin-bottom: 14px;
    text-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
}

.hero-slide-content h1 {
    font-size: 2.2rem;
}

.hero-slide-content p {
    max-width: 700px;
    margin: 0 auto 22px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1rem;
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.hero-slider-controls {
    position: absolute;
    inset: auto 0 18px 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 18px;
}

.hero-slider-arrow {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 999px;
    background: rgba(8, 17, 29, 0.42);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: var(--transition);
}

.hero-slider-arrow:hover {
    background: rgba(47, 128, 195, 0.9);
    border-color: rgba(255, 255, 255, 0.55);
    color: var(--white);
}

.hero-slider-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.hero-slider-dots button {
    width: 11px;
    height: 11px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
}

.hero-slider-dots button.is-active {
    width: 28px;
    background: var(--white);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 50px;
    padding: 14px 24px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-soft));
    color: var(--white);
    font-family: inherit;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 14px 28px rgba(11, 18, 32, 0.18);
}

.btn:hover {
    color: var(--white);
    transform: translateY(-1px);
    background: linear-gradient(135deg, var(--accent-color-strong), var(--accent-color));
}

.content-section {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(216, 228, 238, 0.85);
    padding: 24px 18px;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 22px;
}

.content-section h2 {
    margin-bottom: 20px;
}

.grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.service-card {
    background: linear-gradient(180deg, #fbfdff 0%, #f3f8fc 100%);
    border: 1px solid rgba(216, 228, 238, 0.95);
    padding: 24px 18px;
    text-align: center;
    border-radius: 20px;
    border-bottom: 4px solid var(--accent-color);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
    height: 100%;
}

.service-card h3 {
    margin-bottom: 12px;
    color: var(--text-dark);
    font-size: 1.18rem;
}

.service-card p:last-child {
    margin-bottom: 0;
}

.contact-form .form-group {
    margin-bottom: 18px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.contact-form .form-control {
    width: 100%;
    min-height: 50px;
    padding: 13px 14px;
    border: 1px solid #cad8e4;
    border-radius: 14px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-color);
    background: #f9fcff;
    transition: var(--transition);
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 130px;
}

.contact-form .form-control:focus {
    outline: none;
    border-color: var(--accent-color);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(47, 128, 195, 0.10);
}

.alert {
    padding: 14px 16px;
    border-radius: 14px;
    margin-bottom: 18px;
    font-weight: 600;
}

.alert-success {
    background-color: #dcfce7;
    color: #166534;
}

.alert-error {
    background-color: #fee2e2;
    color: #991b1b;
}

.site-footer {
    margin-top: 28px;
    background: linear-gradient(180deg, #0d1726 0%, #08111d 100%);
    color: var(--white);
    padding-top: 40px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 32px;
}

.footer-col h3 {
    color: #7ec3ff;
    font-size: 1.08rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-col p,
.footer-links a {
    color: #c9d7e4;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: #7ec3ff;
}

.footer-bottom {
    background-color: #050b13;
    padding: 18px 0;
    text-align: center;
    font-size: 0.9rem;
    color: #8da2b6;
}

@media (min-width: 768px) {
    .container {
        padding: 0 24px;
    }

    .header-container {
        min-height: 96px;
    }

    .logo-image {
        width: 64px;
        height: 64px;
    }

    .logo-title {
        font-size: 1.5rem;
    }

    .logo-subtitle {
        font-size: 0.82rem;
    }

    .site-main {
        padding: 34px 0 60px;
    }

    .hero {
        padding: 78px 34px 64px;
        margin-bottom: 30px;
    }

    .hero-slider {
        min-height: 560px;
        padding: 0;
    }

    .hero-slide {
        min-height: 560px;
    }

    .hero-slide-content {
        padding: 64px 46px 94px;
    }

    .hero-slide-content h1 {
        font-size: 4rem;
    }

    .hero-slide-content p {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }

    .content-section {
        padding: 34px 30px;
        margin-bottom: 28px;
    }

    .content-section h2 {
        margin-bottom: 24px;
    }

    .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .hamburger {
        display: none;
    }

    .main-nav {
        position: static;
        inset: auto;
        padding: 0;
        background: transparent;
        border: 0;
        box-shadow: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .main-nav ul {
        flex-direction: row;
        align-items: center;
        gap: 8px;
    }

    .main-nav a {
        padding: 10px 14px;
        border-radius: 999px;
        font-size: 0.96rem;
    }

    .hero-slider-controls {
        inset: auto 22px 22px 22px;
        justify-content: space-between;
    }
}

@media (min-width: 992px) {
    h2 {
        font-size: 2.2rem;
    }

    .hero-slide-content h1 {
        font-size: 4.6rem;
    }

    .grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }

    .footer-container {
        grid-template-columns: repeat(4, 1fr);
    }
}
.about-section {
    padding: 18px;
}

.about-hero-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 18px;
    align-items: stretch;
}

.about-hero-text {
    background: linear-gradient(180deg, #fafdff 0%, #f2f8fc 100%);
    border: 1px solid rgba(216, 228, 238, 0.95);
    border-radius: 22px;
    padding: 24px 18px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.about-eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--accent-light);
    color: var(--accent-color-strong);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about-hero-text h1 {
    margin-bottom: 14px;
    font-size: 2rem;
}

.about-hero-text p:last-child {
    margin-bottom: 0;
}

.about-hero-image {
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid rgba(216, 228, 238, 0.95);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    min-height: 260px;
}

.about-hero-image img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    display: block;
}

.about-feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 18px;
}

.about-feature-card {
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid rgba(216, 228, 238, 0.95);
    background: linear-gradient(180deg, #fbfdff 0%, #f3f8fc 100%);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.about-feature-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.about-feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-feature-content {
    padding: 20px 18px 22px;
}

.about-feature-content h2 {
    font-size: 1.35rem;
    margin-bottom: 10px;
}

.about-feature-content p:last-child {
    margin-bottom: 0;
}

.about-highlight-box {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: center;
    padding: 22px 18px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-soft));
    color: var(--white);
    box-shadow: 0 14px 28px rgba(11, 18, 32, 0.16);
}

.about-highlight-box h2,
.about-highlight-box p {
    color: var(--white);
}

.about-highlight-box p:last-child {
    margin-bottom: 0;
}

.about-highlight-box .btn {
    width: 100%;
    background: var(--white);
    color: var(--primary-color);
    box-shadow: none;
}

.about-highlight-box .btn:hover {
    background: #e9f4ff;
    color: var(--accent-color-strong);
}

@media (min-width: 768px) {
    .about-section {
        padding: 26px;
    }

    .about-hero-card {
        gap: 22px;
        margin-bottom: 22px;
    }

    .about-hero-text {
        padding: 34px 28px;
    }

    .about-hero-text h1 {
        font-size: 2.8rem;
    }

    .about-hero-image {
        min-height: 360px;
    }

    .about-hero-image img {
        min-height: 360px;
    }

    .about-feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .about-feature-card:last-child {
        grid-column: 1 / -1;
    }

    .about-feature-image {
        height: 250px;
    }

    .about-feature-content {
        padding: 24px;
    }

    .about-highlight-box {
        grid-template-columns: 1fr auto;
        padding: 26px 24px;
    }

    .about-highlight-box .btn {
        width: auto;
    }
}

@media (min-width: 1100px) {
    .about-hero-card {
        grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
    }

    .about-feature-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-feature-card:last-child {
        grid-column: auto;
    }

    .about-feature-image {
        height: 240px;
    }
}

.services-section {
    padding: 18px;
}

.services-hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 18px;
    align-items: stretch;
}

.services-hero-text {
    background: linear-gradient(180deg, #fafdff 0%, #f2f8fc 100%);
    border: 1px solid rgba(216, 228, 238, 0.95);
    border-radius: 22px;
    padding: 24px 18px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.services-eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--accent-light);
    color: var(--accent-color-strong);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.services-hero-text h1 {
    margin-bottom: 14px;
    font-size: 2rem;
}

.services-hero-text p:last-child {
    margin-bottom: 0;
}

.services-hero-image {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid rgba(216, 228, 238, 0.95);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    min-height: 280px;
    background: #eef4f8;
}

.services-hero-image img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    display: block;
}

.services-hero-badge {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(11, 18, 32, 0.76);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: #fff;
}

.services-hero-badge strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 4px;
}

.services-hero-badge span {
    display: block;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.88);
}

.services-feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 18px;
}

.services-feature-card {
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid rgba(216, 228, 238, 0.95);
    background: linear-gradient(180deg, #fbfdff 0%, #f3f8fc 100%);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.services-feature-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.services-feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.services-feature-content {
    padding: 20px 18px 22px;
}

.services-feature-content h2 {
    font-size: 1.35rem;
    margin-bottom: 10px;
}

.services-feature-content p:last-child {
    margin-bottom: 0;
}

.services-highlight-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.services-highlight-box {
    padding: 22px 18px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-soft));
    color: var(--white);
    box-shadow: 0 14px 28px rgba(11, 18, 32, 0.16);
}

.services-highlight-box h2,
.services-highlight-box p {
    color: var(--white);
}

.services-highlight-box p:last-child {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .services-section {
        padding: 26px;
    }

    .services-hero {
        gap: 22px;
        margin-bottom: 22px;
    }

    .services-hero-text {
        padding: 34px 28px;
    }

    .services-hero-text h1 {
        font-size: 2.8rem;
    }

    .services-hero-image {
        min-height: 380px;
    }

    .services-hero-image img {
        min-height: 380px;
    }

    .services-feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .services-feature-card-large {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: 1.05fr 0.95fr;
        align-items: stretch;
    }

    .services-feature-card-large .services-feature-image {
        height: 100%;
        min-height: 320px;
    }

    .services-feature-card-large .services-feature-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 28px;
    }

    .services-feature-content {
        padding: 24px;
    }

    .services-highlight-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }
}

@media (min-width: 1100px) {
    .services-hero {
        grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
    }

    .services-feature-grid {
        grid-template-columns: 1.2fr 1fr 1fr;
    }

    .services-feature-card-large {
        grid-column: auto;
        display: block;
    }

    .services-feature-card-large .services-feature-image {
        min-height: 260px;
        height: 260px;
    }

    .services-feature-card-large .services-feature-content {
        display: block;
        padding: 24px;
    }
}
.contact-page-section {
    padding: 18px;
}

.contact-page-intro {
    margin-bottom: 18px;
    padding: 22px 18px;
    border-radius: 22px;
    background: linear-gradient(180deg, #fafdff 0%, #f2f8fc 100%);
    border: 1px solid rgba(216, 228, 238, 0.95);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.contact-page-eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--accent-light);
    color: var(--accent-color-strong);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-page-intro h1 {
    margin-bottom: 12px;
    font-size: 2rem;
}

.contact-page-intro p:last-child {
    margin-bottom: 0;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.contact-page-side {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.contact-page-card {
    padding: 22px 18px;
    border-radius: 22px;
    background: linear-gradient(180deg, #fbfdff 0%, #f3f8fc 100%);
    border: 1px solid rgba(216, 228, 238, 0.95);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.contact-page-card h2 {
    margin-bottom: 12px;
    font-size: 1.4rem;
}

.contact-page-card p:last-child {
    margin-bottom: 0;
}

.contact-form-card .contact-form {
    margin-top: 16px;
}

.contact-opening-card {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-soft));
}

.contact-opening-card h2,
.contact-opening-card p {
    color: var(--white);
}

.contact-opening-card p:last-child {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .contact-page-section {
        padding: 26px;
    }

    .contact-page-intro {
        padding: 28px 24px;
        margin-bottom: 22px;
    }

    .contact-page-intro h1 {
        font-size: 2.8rem;
    }

    .contact-page-grid {
        gap: 22px;
    }

    .contact-page-side {
        gap: 22px;
    }

    .contact-page-card {
        padding: 26px 24px;
    }
}

@media (min-width: 1100px) {
    .contact-page-grid {
        grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
        align-items: start;
    }
}


.legal-page-section {
    padding: 18px;
}

.legal-page-intro {
    margin-bottom: 18px;
    padding: 22px 18px;
    border-radius: 22px;
    background: linear-gradient(180deg, #fafdff 0%, #f2f8fc 100%);
    border: 1px solid rgba(216, 228, 238, 0.95);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.legal-page-eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--accent-light);
    color: var(--accent-color-strong);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.legal-page-intro h1 {
    margin-bottom: 12px;
    font-size: 2rem;
}

.legal-page-intro p:last-child {
    margin-bottom: 0;
}

.legal-page-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.legal-page-card {
    padding: 22px 18px;
    border-radius: 22px;
    background: linear-gradient(180deg, #fbfdff 0%, #f3f8fc 100%);
    border: 1px solid rgba(216, 228, 238, 0.95);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.legal-page-card h2 {
    margin-bottom: 12px;
    font-size: 1.4rem;
}

.legal-page-card p:last-child {
    margin-bottom: 0;
}

.legal-page-card-side {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-soft));
}

.legal-page-card-side h2,
.legal-page-card-side p {
    color: var(--white);
}

@media (min-width: 768px) {
    .legal-page-section {
        padding: 26px;
    }

    .legal-page-intro {
        padding: 28px 24px;
        margin-bottom: 22px;
    }

    .legal-page-intro h1 {
        font-size: 2.8rem;
    }

    .legal-page-grid {
        gap: 22px;
    }

    .legal-page-card {
        padding: 26px 24px;
    }
}

@media (min-width: 1100px) {
    .legal-page-grid {
        grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
        align-items: start;
    }
}