@font-face {
    font-family: "Caveat";
    src: url("/assets/fonts/Caveat-VariableFont_wght.ttf") format("truetype");
    font-weight: 400 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg: #05070a;
    --bg-2: #080b10;
    --panel: #0d1117;
    --panel-2: #11161d;
    --border: #20262f;
    --text: #f6f7f8;
    --muted: #a2a9b3;
    --red: #f00046;
    --red-2: #ff1458;
    --blue: #3787ff;
    --max: 1210px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, "Segoe UI", Arial, Helvetica, sans-serif;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
textarea {
    font: inherit;
}

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

.narrow {
    max-width: 820px;
}


/* HEADER */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(4, 6, 9, .93);
    border-bottom: 1px solid rgba(255,255,255,.06);
    backdrop-filter: blur(14px);
}

.header-inner {
    min-height: 74px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.brand-logo {
    flex: 0 0 auto;
}

.brand-logo img {
    width: 180px;
    height: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 27px;
    margin-left: 10px;
}

.main-nav a {
    position: relative;
    padding: 27px 0 24px;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .015em;
    color: #f2f2f2;
    transition: color .2s ease, transform .2s ease;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 18px;
    width: 0;
    height: 2px;
    background: var(--red);
    transform: translateX(-50%);
    transition: width .2s ease;
}

.main-nav a:hover {
    color: var(--red-2);
    transform: translateY(-1px);
}

.main-nav a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-left: auto;
}

.header-create {
    font-size: 14px;
    font-weight: 800;
}

.header-create:hover {
    color: var(--red-2);
}

.btn {
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 11px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #fff;
    font-weight: 800;
    cursor: pointer;
    transition:
        transform .2s ease,
        background .2s ease,
        border-color .2s ease,
        box-shadow .2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, #ef0045, #ff0b55);
    box-shadow: 0 9px 28px rgba(240,0,70,.18);
}

.btn-primary:hover {
    box-shadow: 0 12px 34px rgba(240,0,70,.32);
}

.btn-outline {
    border-color: rgba(255,255,255,.55);
    background: rgba(0,0,0,.22);
}

.btn-outline:hover {
    border-color: #fff;
    background: rgba(255,255,255,.06);
}

.btn-large {
    min-height: 52px;
    padding-inline: 28px;
}

.btn-full {
    width: 100%;
}

.btn-login {
    min-width: 112px;
}

.mobile-nav {
    display: none;
    margin-left: auto;
    position: relative;
}

.security-icon.blue {
    color: #3787ff;
    border-color: rgba(55, 135, 255, .7);
}

.mobile-nav summary {
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 5px;
    cursor: pointer;
    list-style: none;
}

.mobile-nav summary::-webkit-details-marker {
    display: none;
}

.mobile-nav summary span {
    width: 23px;
    height: 2px;
    background: #fff;
    display: block;
}

.mobile-nav-panel {
    position: absolute;
    right: 0;
    top: 52px;
    width: min(82vw, 330px);
    padding: 14px;
    background: #0c1016;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,.55);
}

.mobile-nav-panel a {
    display: block;
    padding: 13px 12px;
    font-weight: 800;
    border-radius: 7px;
}

.mobile-nav-panel a:hover {
    background: #141a22;
    color: var(--red-2);
}

.mobile-login {
    margin-top: 7px;
    background: var(--red);
    text-align: center;
}


/* HOME - HERO */

.home-hero {
    min-height: 620px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    background:
        linear-gradient(90deg, rgba(1,3,6,.86) 0%, rgba(1,3,6,.48) 45%, rgba(1,3,6,.60) 100%),
        url("/assets/images/home/hero.webp") center/cover no-repeat,
        radial-gradient(circle at 55% 40%, #5f2731, #08090b 65%);
}

.home-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.28)),
        radial-gradient(circle at 45% 50%, transparent 0 33%, rgba(0,0,0,.28) 80%);
}

.home-hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin-left: max(calc((100vw - var(--max)) / 2), 20px);
    margin-right: auto;
}

.hero-age {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 11px;
    border-radius: 999px;
    background: rgba(0,0,0,.35);
    border: 1px solid rgba(255,255,255,.17);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .05em;
}

.hero-age span {
    width: 7px;
    height: 7px;
    background: var(--red);
    border-radius: 50%;
    box-shadow: 0 0 14px rgba(240,0,70,.9);
}

.home-hero h1 {
    max-width: 760px;
    margin: 24px 0 14px;
    font-size: clamp(45px, 5.6vw, 75px);
    line-height: .99;
    letter-spacing: -.035em;
}

.home-hero h1 em,
.home-section h2 em {
    color: var(--red-2);
    font-style: normal;
}

.home-hero p {
    max-width: 670px;
    color: #e1e3e7;
    font-size: 18px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 30px;
}

.hero-handwriting,
.image-note,
.faq-handwriting,
.cta-handwriting {
    font-family: "Caveat", cursive;
    font-style: normal;
    font-weight: 600;
    color: rgba(255,255,255,.63);
    transform: rotate(-7deg);
    line-height: 1.15;
}

.hero-handwriting {
    position: absolute;
    right: 6%;
    bottom: 80px;
    font-size: 28px;
}

.home-section {
    padding: 72px 0;
    border-bottom: 1px solid rgba(255,255,255,.055);
}

.section-kicker {
    position: relative;
    padding-left: 28px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .11em;
    color: #aeb5be;
}

.section-kicker::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 20px;
    height: 2px;
    background: var(--red);
}

.home-section h2 {
    margin: 10px 0 16px;
    font-size: clamp(34px, 4.1vw, 53px);
    line-height: 1.04;
    letter-spacing: -.025em;
}

.home-section p {
    color: var(--muted);
}

.experience-grid {
    display: grid;
    grid-template-columns: .92fr 1.18fr;
    gap: 70px;
    align-items: center;
}

.experience-copy p {
    max-width: 560px;
    font-size: 17px;
}

.accent-stroke {
    width: 45px;
    height: 3px;
    margin-top: 26px;
    background: var(--red);
    transform: rotate(-8deg);
}

.experience-image {
    min-height: 330px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(0,0,0,.10), rgba(0,0,0,.30)),
        url("/assets/images/home/experience.webp") center/cover no-repeat,
        linear-gradient(135deg, #6d453b, #161216 60%);
}

.image-note {
    position: absolute;
    right: 8%;
    bottom: 14%;
    font-size: 25px;
}

.protection-section {
    background: #070a0e;
}

.protection-grid {
    display: grid;
    grid-template-columns: .78fr 1.35fr;
    gap: 55px;
    align-items: center;
}

.protection-copy p {
    max-width: 470px;
}

.security-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.security-cards article {
    min-height: 175px;
    padding: 24px 16px;
    background: #0b0f14;
    border: 1px solid #171d25;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.security-icon {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    border-radius: 50%;
    border: 2px solid rgba(240,0,70,.65);
    color: var(--red-2);
    font-weight: 900;
}

.security-icon.green {
    color: #22c55e;
    border-color: rgba(34, 197, 94, .72);
}

.security-icon svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.protection-title em {
    color: var(--red-2);
    font-style: normal;
}

.protection-title span {
    color: var(--text);
}

.security-cards strong {
    font-size: 14px;
}

.security-cards small {
    display: block;
    margin-top: 8px;
    color: #7e8793;
    line-height: 1.35;
}

.section-head-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 26px;
}

.small-accent-link {
    margin-bottom: 8px;
    color: var(--red-2);
    font-size: 13px;
    font-weight: 800;
}

.profile-preview-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

.profile-preview {
    min-height: 258px;
    position: relative;
    overflow: hidden;
    border-radius: 7px;
    border: 1px solid #1e242c;
    display: flex;
    align-items: flex-end;
    padding: 15px;
    background-position: center;
    background-size: cover;
    isolation: isolate;
    cursor: pointer;
    color: inherit;
    transition:
        transform .22s ease,
        border-color .22s ease,
        box-shadow .22s ease;
}

.profile-preview:hover {
    transform: translateY(-4px);
    border-color: rgba(240,0,70,.72);
    box-shadow: 0 14px 32px rgba(0,0,0,.32);
}

.profile-preview:focus-visible {
    outline: 2px solid var(--red-2);
    outline-offset: 3px;
}

.profile-preview::before {
    content: "";
    position: absolute;
    inset: -12px;
    z-index: -2;
    background: inherit;
    filter: blur(12px);
    transform: scale(1.08);
}

.profile-preview::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.80));
}

.profile-1 { background-image: url("/assets/images/home/profile-1.webp"), linear-gradient(#754c47,#24232a); }
.profile-2 { background-image: url("/assets/images/home/profile-2.webp"), linear-gradient(#8a5d47,#24232a); }
.profile-3 { background-image: url("/assets/images/home/profile-3.webp"), linear-gradient(#735a50,#24232a); }
.profile-4 { background-image: url("/assets/images/home/profile-4.webp"), linear-gradient(#804b49,#24232a); }
.profile-5 { background-image: url("/assets/images/home/profile-5.webp"), linear-gradient(#4b5566,#24232a); }
.profile-6 { background-image: url("/assets/images/home/profile-6.webp"), linear-gradient(#705048,#24232a); }

.profile-preview > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 13px;
}

.profile-meta-line {
    display: flex;
    align-items: center;
    gap: 6px;
}

.profile-meta-icon {
    width: 15px;
    height: 15px;
    flex: 0 0 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.profile-preview small {
    color: #d0d4d9;
}

.age-badge {
    position: absolute;
    top: 43%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 900;
    font-size: 18px;
    text-shadow: 0 2px 9px rgba(0,0,0,.8);
}

.home-faq-section {
    background: #070a0e;
}

.faq-home-grid {
    display: grid;
    grid-template-columns: .72fr 1.5fr;
    gap: 70px;
    align-items: center;
}

.faq-home-title h2 {
    color: var(--red-2);
}

.faq-home-title p {
    max-width: 300px;
}

.faq-handwriting {
    margin: 35px 0 0 90px;
    font-size: 25px;
}

.faq-home-links {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.faq-home-links a {
    min-height: 52px;
    padding: 0 17px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #090d12;
    border: 1px solid #1a2028;
    border-radius: 7px;
    transition: border-color .2s ease, transform .2s ease, background .2s ease;
}

.faq-home-links a:hover {
    border-color: rgba(240,0,70,.65);
    background: #0d1117;
    transform: translateX(3px);
}

.faq-home-links b {
    width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
    border: 1px solid #58616e;
    border-radius: 50%;
}

.blog-preview-grid {
    display: grid;
    grid-template-columns: .72fr 1.55fr;
    gap: 70px;
    align-items: stretch;
}

.blog-preview-copy p {
    max-width: 370px;
}

.blog-card-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.blog-card {
    min-height: 305px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    display: flex;
    align-items: flex-end;
    background-position: center;
    background-size: cover;
}

.blog-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 22%, rgba(0,0,0,.90));
}

.blog-card > div {
    position: relative;
    z-index: 2;
    padding: 18px;
}

.blog-card span {
    display: inline-flex;
    padding: 5px 8px;
    border-radius: 5px;
    background: var(--red);
    font-size: 10px;
    font-weight: 900;
}

.blog-card h3 {
    margin: 10px 0 5px;
    font-size: 18px;
    line-height: 1.23;
}

.blog-card small {
    color: #a2a9b3;
}

.blog-image-1 {
    background-image: url("/assets/images/home/blog-1.webp"), linear-gradient(135deg, #66443d, #17151a);
}

.blog-image-2 {
    background-image: url("/assets/images/home/blog-2.webp"), linear-gradient(135deg, #6e4a43, #17151a);
}

.blog-image-3 {
    background-image: url("/assets/images/home/blog-3.webp"), linear-gradient(135deg, #7b5d52, #17151a);
}

.home-final-cta {
    min-height: 260px;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(64,0,20,.92), rgba(25,2,10,.80), rgba(0,0,0,.70)),
        url("/assets/images/home/cta.webp") center/cover no-repeat,
        linear-gradient(90deg, #5a0923, #11060b);
}

.home-final-cta h2 {
    margin: 0;
    font-size: clamp(31px, 4vw, 45px);
}

.home-final-cta p {
    margin: 5px 0 20px;
    color: #d7d7d7;
}

.home-final-cta small {
    display: block;
    margin-top: 9px;
    color: #a7a7a7;
}

.cta-handwriting {
    position: absolute;
    right: 7%;
    top: 35%;
    font-size: 25px;
}


/* PAGES */

.page-top,
.blog-top {
    padding: 100px 0 65px;
    text-align: center;
    background:
        radial-gradient(circle at 50% 0%, rgba(240,0,70,.10), transparent 48%),
        #070a0e;
    border-bottom: 1px solid var(--border);
}

.page-top h1,
.blog-top h1 {
    margin: 10px 0;
    font-size: clamp(39px, 5vw, 61px);
}

.page-top p,
.blog-top p {
    color: var(--muted);
    font-size: 17px;
}

.faq-page {
    padding: 70px 0 100px;
}

.faq-answer {
    scroll-margin-top: 95px;
    padding: 32px 0;
    border-bottom: 1px solid var(--border);
}

.faq-answer h2 {
    margin: 0 0 10px;
    font-size: 27px;
}

.faq-answer p {
    color: var(--muted);
}

.text-link {
    color: var(--red-2);
    font-weight: 800;
}

.contact-grid-section,
.legal-section {
    padding: 65px 0 100px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.contact-grid article {
    padding: 28px;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 10px;
}

.contact-grid h2 {
    margin-top: 0;
    font-size: 21px;
}

.contact-grid a {
    color: var(--red-2);
}

.legal-shell {
    max-width: 850px;
}

.legal-form {
    padding: 35px;
    background: #0b0f14;
    border: 1px solid var(--border);
    border-radius: 12px;
}

.legal-form label {
    display: block;
    margin: 19px 0 7px;
    font-weight: 800;
}

.legal-form label:first-of-type {
    margin-top: 0;
}

.legal-form label span,
.legal-form small {
    color: var(--muted);
    font-weight: 400;
}

.legal-form input,
.legal-form textarea {
    width: 100%;
    border: 1px solid #2b323c;
    border-radius: 7px;
    background: #070a0e;
    color: #fff;
    padding: 13px 14px;
}

.legal-form textarea {
    resize: vertical;
}

.legal-form small {
    display: block;
    margin-top: 6px;
}

.legal-form button {
    margin-top: 25px;
}

.honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.form-success,
.form-error {
    margin-bottom: 16px;
    padding: 14px 16px;
    border-radius: 7px;
}

.form-success {
    background: rgba(44,177,95,.12);
    border: 1px solid rgba(44,177,95,.40);
}

.form-error {
    background: rgba(240,0,70,.10);
    border: 1px solid rgba(240,0,70,.40);
}


/* AUTH */

.auth-section {
    min-height: calc(100vh - 74px);
    padding: 70px 20px;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 50% 15%, rgba(240,0,70,.13), transparent 45%);
}

.auth-box {
    width: min(100%, 460px);
    padding: 38px;
    background: #0c1015;
    border: 1px solid var(--border);
    border-radius: 14px;
}

.auth-logo {
    width: 190px;
    margin: 0 auto 25px;
}

.auth-box h1 {
    margin: 8px 0;
}

.auth-box label {
    display: block;
    margin: 17px 0 7px;
    font-weight: 700;
}

.auth-box input {
    width: 100%;
    padding: 13px;
    background: #070a0e;
    border: 1px solid #2a313b;
    color: #fff;
    border-radius: 7px;
}

.auth-box button {
    margin-top: 20px;
}

.muted,
.coming {
    color: var(--muted);
}

.age-pill {
    display: inline-flex;
    padding: 6px 10px;
    border: 1px solid rgba(240,0,70,.5);
    border-radius: 999px;
    color: var(--red-2);
    font-weight: 900;
}


/* BLOG */

.tag-nav {
    border-bottom: 1px solid var(--border);
    background: #090c10;
}

.tag-list {
    padding: 15px 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.tag-list a {
    padding: 8px 13px;
    border-radius: 6px;
    background: #11161c;
    border: 1px solid #1b222b;
    color: #d6d9de;
    font-size: 12px;
    font-weight: 900;
}

.tag-list a:hover,
.tag-list a.active {
    background: #f2f2f2;
    color: #07090b;
}

.empty-blog {
    padding: 80px 25px;
    text-align: center;
    border: 1px dashed #2b333e;
    border-radius: 10px;
}

.empty-blog p {
    color: var(--muted);
}


/* FOOTER */

.site-footer {
    padding: 62px 0 35px;
    background: #05070a;
    border-top: 1px solid #171b21;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.7fr .75fr .85fr 1fr;
    gap: 55px;
}

.footer-logo {
    width: 180px;
    margin-bottom: 18px;
}

.footer-about p {
    max-width: 350px;
    color: #b2b8c0;
}

.footer-about > a {
    display: block;
    margin-top: 6px;
    color: #d3d7dc;
}

.footer-about > a:hover {
    color: var(--red-2);
}

.footer-column h4,
.footer-social h4 {
    margin: 0 0 15px;
}

.footer-column a {
    display: block;
    margin: 9px 0;
    color: #c2c7ce;
}

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

.social-row {
    display: flex;
    gap: 8px;
}

.social-row a {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid #333b46;
    border-radius: 7px;
    color: #f2f3f5;
    transition:
        color .2s ease,
        border-color .2s ease,
        transform .2s ease,
        background .2s ease;
}

.social-row a:hover {
    border-color: var(--red);
    color: var(--red-2);
    background: rgba(240,0,70,.07);
    transform: translateY(-2px);
}

.social-row svg {
    width: 19px;
    height: 19px;
    fill: currentColor;
    display: block;
}

.copyright {
    margin-top: 48px;
    color: #747d87;
    font-size: 12px;
}


/* RESPONSIVE */

@media (max-width: 1080px) {
    .main-nav {
        gap: 18px;
    }

    .main-nav a {
        font-size: 13px;
    }

    .brand-logo img {
        width: 160px;
    }

    .profile-preview-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

    .mobile-nav {
        display: block;
    }

    .header-inner {
        min-height: 68px;
    }

    .brand-logo img {
        width: 168px;
    }

    .home-hero {
        min-height: 650px;
        background-position: 57% center;
    }

    .home-hero-content {
        margin-inline: auto;
        text-align: center;
    }

    .home-hero p {
        margin-inline: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-handwriting,
    .cta-handwriting {
        display: none;
    }

    .experience-grid,
    .protection-grid,
    .faq-home-grid,
    .blog-preview-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .experience-image {
        min-height: 360px;
    }

    .section-head-row {
        align-items: flex-start;
    }

    .blog-preview-copy {
        text-align: center;
    }

    .blog-preview-copy p {
        margin-inline: auto;
    }

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

@media (max-width: 680px) {
    .container {
        width: min(calc(100% - 28px), var(--max));
    }

    .home-hero {
        min-height: 620px;
    }

    .home-hero h1 {
        font-size: 42px;
    }

    .home-hero p {
        font-size: 16px;
    }

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

    .hero-actions .btn {
        width: 100%;
    }

    .home-section {
        padding: 56px 0;
    }

    .home-section h2 {
        font-size: 36px;
    }

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

    .profile-preview {
        min-height: 235px;
    }

    .security-cards {
        grid-template-columns: 1fr 1fr;
    }

    .faq-handwriting {
        display: none;
    }

    .blog-card-row {
        grid-template-columns: 1fr;
    }

    .blog-card {
        min-height: 260px;
    }

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

    .footer-grid {
        gap: 32px;
    }

    .legal-form {
        padding: 22px;
    }
}

@media (max-width: 420px) {
    .brand-logo img {
        width: 150px;
    }

    .home-hero h1 {
        font-size: 37px;
    }

    .profile-preview-grid {
        grid-template-columns: 1fr 1fr;
        gap: 9px;
    }

    .profile-preview {
        min-height: 210px;
        padding: 10px;
    }

    .security-cards {
        grid-template-columns: 1fr;
    }
}
