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

:root {
    --burgundy: #7B2D3B;
    --burgundy-deep: #5C1F2B;
    --burgundy-light: #9A3D4E;
    --blush: #F4D4D4;
    --blush-light: #FDF0F0;
    --blush-mid: #F9E8E8;
    --cream: #FFFAF8;
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-mid: #4A4A4A;
    --text-light: #7A7A7A;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --shadow-sm: 0 2px 8px rgba(123, 45, 59, 0.06);
    --shadow-md: 0 8px 30px rgba(123, 45, 59, 0.10);
    --shadow-lg: 0 16px 50px rgba(123, 45, 59, 0.14);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Geometric Shapes ── */
.geo-shape {
    position: fixed;
    z-index: 0;
    pointer-events: none;
    opacity: 0.07;
}

.geo-shape--1 {
    top: 10%;
    right: -60px;
    width: 300px;
    height: 300px;
    color: var(--burgundy);
}

.geo-shape--2 {
    top: 45%;
    left: -40px;
    width: 200px;
    height: 200px;
    color: var(--blush);
}

.geo-shape--3 {
    bottom: 20%;
    right: 5%;
    width: 140px;
    height: 140px;
    color: var(--burgundy);
}

/* ── Header ── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 250, 248, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(123, 45, 59, 0.07);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255, 250, 248, 0.95);
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--burgundy);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: -0.02em;
}

.logo--light { color: var(--white); }
.logo__accent { color: var(--blush); }
.logo--light .logo__accent { color: var(--blush); }

.logo__icon {
    width: 30px;
    height: 34px;
    flex-shrink: 0;
}

/* ── Nav ── */
.nav__list {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
}

.nav__link {
    display: block;
    padding: 8px 16px;
    text-decoration: none;
    color: var(--text-mid);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.925rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav__link:hover {
    color: var(--burgundy);
    background: var(--blush-light);
}

.nav__link--cta {
    background: var(--burgundy);
    color: var(--white) !important;
    border-radius: var(--radius-md);
    margin-left: 8px;
}

.nav__link--cta:hover {
    background: var(--burgundy-deep);
    transform: translateY(-1px);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav__toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--burgundy);
    border-radius: 2px;
    transition: var(--transition);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Hero ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(92, 31, 43, 0.88) 0%,
        rgba(123, 45, 59, 0.75) 50%,
        rgba(154, 61, 78, 0.60) 100%
    );
}

.hero__geo {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
}

.hero__geo--blush {
    width: 500px;
    height: 500px;
    background: var(--blush);
    opacity: 0.12;
    top: -100px;
    right: -100px;
}

.hero__geo--burgundy {
    width: 350px;
    height: 350px;
    background: var(--burgundy);
    opacity: 0.2;
    bottom: -80px;
    left: 10%;
}

.hero__content {
    position: relative;
    z-index: 1;
    padding: 120px 0 80px;
    max-width: 720px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(244, 212, 212, 0.18);
    border: 1px solid rgba(244, 212, 212, 0.3);
    border-radius: 50px;
    color: var(--blush);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.03em;
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
}

.hero__badge svg {
    width: 14px;
    height: 14px;
}

.hero__headline {
    font-family: var(--font-heading);
    font-size: clamp(2.6rem, 6vw, 4.2rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.hero__accent {
    color: var(--blush);
}

.hero__sub {
    font-size: 1.15rem;
    color: rgba(255, 250, 248, 0.82);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 540px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn--primary {
    background: var(--blush);
    color: var(--burgundy-deep);
}

.btn--primary:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--ghost {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 250, 248, 0.4);
}

.btn--ghost:hover {
    border-color: var(--white);
    background: rgba(255, 250, 248, 0.1);
}

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

.btn--lg {
    padding: 18px 36px;
    font-size: 1.05rem;
    border-radius: var(--radius-lg);
}

/* ── Hero scroll indicator ── */
.hero__scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 250, 248, 0.5);
    font-size: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero__scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(255,250,248,0.5), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.7); }
}

/* ── Section labels ── */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 16px;
}

.section-label--light { color: var(--blush); }

.section-label__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--burgundy);
    flex-shrink: 0;
}

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

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin-bottom: 18px;
}

.section-title--light { color: var(--white); }

.section-sub {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 560px;
}

/* ── Services ── */
.services {
    padding: 110px 0;
    position: relative;
    z-index: 1;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    border: 1px solid rgba(123, 45, 59, 0.06);
    transition: var(--transition);
    overflow: hidden;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.card__accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--card-burgundy, var(--burgundy)), var(--card-blush, var(--blush)));
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.card__icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: var(--blush-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    color: var(--burgundy);
    transition: var(--transition);
}

.card:hover .card__icon-wrap {
    background: var(--burgundy);
    color: var(--white);
    transform: scale(1.05);
}

.card__icon-wrap svg {
    width: 28px;
    height: 28px;
}

.card__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.card__body {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ── About ── */
.about {
    padding: 110px 0;
    position: relative;
    z-index: 1;
    background: var(--white);
}

.about__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about__visual {
    position: relative;
}

.about__image-wrap {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 6/7;
}

.about__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about__geo-block {
    position: absolute;
    border-radius: var(--radius-lg);
}

.about__geo-block--blush {
    width: 120px;
    height: 120px;
    background: var(--blush);
    bottom: -30px;
    right: -30px;
    z-index: -1;
}

.about__geo-block--burgundy {
    width: 80px;
    height: 80px;
    background: var(--burgundy);
    top: -20px;
    left: -20px;
    z-index: -1;
    opacity: 0.15;
}

.about__stat-card {
    position: absolute;
    bottom: 32px;
    left: -24px;
    background: var(--burgundy);
    color: var(--white);
    padding: 20px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.about__stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--blush);
}

.about__stat-label {
    font-size: 0.82rem;
    font-weight: 500;
    opacity: 0.85;
    letter-spacing: 0.02em;
}

.about__content { max-width: 480px; }

.about__body {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about__features {
    list-style: none;
    display: grid;
    gap: 14px;
    margin-top: 32px;
}

.about__features li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-dark);
}

.about__features svg {
    width: 22px;
    height: 22px;
    color: var(--burgundy);
    flex-shrink: 0;
}

/* ── Why Us ── */
.why-us {
    padding: 110px 0;
    background: var(--burgundy);
    position: relative;
    overflow: hidden;
}

.why-us__bg-shape {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: var(--burgundy-deep);
    opacity: 0.4;
    top: -200px;
    right: -200px;
    pointer-events: none;
}

.why-us .container {
    position: relative;
    z-index: 1;
}

.why-us__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.why-card {
    background: rgba(255, 250, 248, 0.07);
    border: 1px solid rgba(255, 250, 248, 0.12);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}

.why-card:hover {
    background: rgba(255, 250, 248, 0.12);
    transform: translateY(-4px);
}

.why-card__number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--blush);
    opacity: 0.35;
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.why-card__title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.why-card__body {
    font-size: 0.95rem;
    color: rgba(255, 250, 248, 0.7);
    line-height: 1.75;
}

/* ── Insurance ── */
.insurance {
    padding: 110px 0;
    position: relative;
    z-index: 1;
}

.insurance__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.insurance__body {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 28px;
}

.insurance__list {
    list-style: none;
    display: grid;
    gap: 14px;
}

.insurance__list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-dark);
}

.insurance__list svg {
    width: 22px;
    height: 22px;
    color: var(--burgundy);
    flex-shrink: 0;
}

.insurance__visual {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.insurance__card {
    background: var(--white);
    border: 1px solid rgba(123, 45, 59, 0.08);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
    transition: var(--transition);
}

.insurance__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.insurance__card svg {
    width: 40px;
    height: 40px;
    color: var(--burgundy);
}

.insurance__card--accent {
    background: var(--burgundy);
    border-color: var(--burgundy);
}

.insurance__card--accent svg { color: var(--blush); }

.insurance__card-label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text-dark);
}

.insurance__card--accent .insurance__card-label { color: var(--white); }

/* ── Contact ── */
.contact {
    padding: 110px 0;
    background: var(--white);
    position: relative;
    z-index: 1;
}

.contact__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact__body {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 36px;
}

.contact__details {
    display: grid;
    gap: 28px;
    list-style: none;
}

.contact__detail {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.contact__detail-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    background: var(--blush-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy);
    flex-shrink: 0;
}

.contact__detail-icon svg {
    width: 22px;
    height: 22px;
}

.contact__detail dt {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light);
    margin-bottom: 4px;
}

.contact__detail dd {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.contact__detail a {
    color: var(--burgundy);
    text-decoration: none;
    transition: var(--transition);
}

.contact__detail a:hover {
    text-decoration: underline;
}

.contact__form-wrap { max-width: 520px; }

.contact__form-card {
    background: var(--cream);
    border: 1px solid rgba(123, 45, 59, 0.07);
    border-radius: var(--radius-xl);
    padding: 44px 36px;
}

.contact__form-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

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

.form-label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    letter-spacing: 0.01em;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-dark);
    background: var(--white);
    border: 1.5px solid rgba(123, 45, 59, 0.12);
    border-radius: var(--radius-md);
    outline: none;
    transition: var(--transition);
    -webkit-appearance: none;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--burgundy);
    box-shadow: 0 0 0 4px rgba(123, 45, 59, 0.08);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-light);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-success {
    text-align: center;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.form-success svg {
    width: 56px;
    height: 56px;
    color: var(--burgundy);
}

.form-success h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
}

.form-success p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ── Map ── */
.map-section {
    position: relative;
    z-index: 1;
}

.map-section iframe {
    display: block;
    width: 100%;
    height: 380px;
    filter: saturate(0.7) contrast(1.05);
}

/* ── Footer ── */
.footer {
    background: var(--burgundy-deep);
    color: var(--white);
    padding: 64px 0 0;
    position: relative;
    z-index: 1;
}

.footer__inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 250, 248, 0.1);
}

.footer__tagline {
    font-size: 0.95rem;
    color: rgba(255, 250, 248, 0.6);
    line-height: 1.7;
    margin-top: 16px;
    max-width: 300px;
}

.footer__phone,
.footer__email {
    display: block;
    color: var(--blush);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 10px;
    transition: var(--transition);
}

.footer__phone:hover,
.footer__email:hover {
    color: var(--white);
}

.footer__address {
    font-size: 0.95rem;
    color: rgba(255, 250, 248, 0.6);
    line-height: 1.7;
    font-style: normal;
    margin-top: 10px;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__links a {
    color: rgba(255, 250, 248, 0.65);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

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

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

.footer__bottom p {
    font-size: 0.85rem;
    color: rgba(255, 250, 248, 0.4);
}

/* ── Scroll animations ── */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about__layout,
    .insurance__inner,
    .contact__layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about__visual { max-width: 480px; }
    .insurance__visual { max-width: 400px; }
}

@media (max-width: 768px) {
    .nav__toggle { display: flex; }

    .nav__list {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(320px, 85vw);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: var(--cream);
        padding: 90px 28px 40px;
        box-shadow: var(--shadow-lg);
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }

    .nav__list.open { transform: translateX(0); }

    .nav__link {
        padding: 14px 16px;
        font-size: 1.05rem;
        border-bottom: 1px solid rgba(123, 45, 59, 0.06);
    }

    .nav__link--cta {
        margin-left: 0;
        margin-top: 16px;
        text-align: center;
        border-bottom: none;
    }

    .hero__content { padding: 100px 0 100px; }

    .hero__actions { flex-direction: column; }
    .hero__actions .btn { justify-content: center; }

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

    .why-us__grid { grid-template-columns: 1fr; }

    .insurance__visual { grid-template-columns: 1fr; max-width: 240px; }

    .footer__inner { grid-template-columns: 1fr; gap: 36px; }

    .contact__form-card { padding: 32px 24px; }

    .geo-shape { display: none; }
}

@media (max-width: 480px) {
    .container { padding: 0 18px; }

    .hero__headline { font-size: 2.2rem; }

    .section-title { font-size: 1.8rem; }

    .card { padding: 28px 24px; }

    .about__stat-card { left: 0; bottom: 16px; }
}
