/* =========================================
   RedMate
   Global Styles
========================================= */

:root {
    --primary: #E92735;
    --primary-dark: #c91f2c;
    --dark: #172033;
    --text: #687080;
    --background: #FFFBFC;
    --pale-red: #FFF0F2;
    --white: #ffffff;
    --border: #eceef2;
    --soft-dark: #2a3243;

    --container: 1160px;

    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;

    --shadow-soft: 0 15px 45px rgba(23, 32, 51, 0.07);
}


/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    background: var(--background);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin: 0 auto;
}


/* =========================================
   HEADER
========================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255, 251, 252, 0.94);
    backdrop-filter: blur(15px);

    border-bottom: 1px solid rgba(236, 238, 242, 0.8);
}

.nav-container {
    min-height: 78px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* Brand */

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
}

.brand-mark {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    background: var(--primary);
    color: white;

    border-radius: 13px;

    font-size: 18px;
    transform: rotate(-2deg);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-text strong {
    font-size: 19px;
    letter-spacing: -0.4px;
}

.brand-text small {
    color: var(--text);
    font-size: 9px;
    margin-top: 4px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}


/* Navigation */

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav a {
    position: relative;

    color: var(--text);
    font-size: 14px;
    font-weight: 600;

    transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--dark);
}

.main-nav a.active::after {
    content: "";

    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;

    height: 2px;

    background: var(--primary);
    border-radius: 10px;
}

.main-nav .nav-download {
    background: var(--dark);
    color: white;

    padding: 11px 17px;
    border-radius: 10px;
}

.main-nav .nav-download:hover {
    background: var(--primary);
    color: white;
}

.main-nav .nav-download::after {
    display: none;
}


/* Mobile menu */

.menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    border: 1px solid var(--border);
    background: white;
    border-radius: 12px;

    cursor: pointer;
}

.menu-toggle span {
    display: block;

    width: 20px;
    height: 2px;

    background: var(--dark);

    margin: 4px auto;

    border-radius: 10px;

    transition: 0.2s ease;
}


/* =========================================
   HERO
========================================= */

.hero {
    position: relative;
    overflow: hidden;

    padding: 100px 0 90px;
}

.hero-background-shape {
    position: absolute;

    width: 650px;
    height: 650px;

    top: -280px;
    right: -250px;

    background: var(--pale-red);

    border-radius: 50%;

    z-index: -1;
}

.hero-grid {
    display: grid;

    grid-template-columns: 1fr 0.9fr;

    gap: 70px;

    align-items: center;
}


/* Hero text */

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    background: var(--pale-red);
    color: var(--primary);

    padding: 7px 12px;

    border-radius: 50px;

    font-size: 12px;
    font-weight: 700;

    margin-bottom: 22px;
}

.eyebrow-dot {
    width: 7px;
    height: 7px;

    background: var(--primary);
    border-radius: 50%;
}

.hero h1 {
    max-width: 650px;

    font-size: clamp(48px, 6vw, 76px);

    line-height: 1.03;

    letter-spacing: -3.5px;

    margin-bottom: 25px;
}

.hero h1 span,
.section-heading h2 span,
.community-card h2 span,
.download-content h2 span {
    color: var(--primary);
}

.hero-description {
    max-width: 570px;

    color: var(--text);

    font-size: 18px;
    line-height: 1.75;

    margin-bottom: 34px;
}


/* Hero actions */

.hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;

    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-height: 50px;

    padding: 0 20px;

    border-radius: 12px;

    font-size: 14px;
    font-weight: 700;

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--primary);
    color: white;

    box-shadow: 0 10px 25px rgba(233, 39, 53, 0.2);
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-secondary {
    background: white;

    border: 1px solid var(--border);

    color: var(--dark);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.play-icon {
    font-size: 10px;
}

.hero-note {
    display: flex;
    align-items: center;
    gap: 8px;

    margin-top: 18px;

    color: var(--text);

    font-size: 12px;
}

.check-icon {
    width: 18px;
    height: 18px;

    display: grid;
    place-items: center;

    background: #eaf8ef;
    color: #2f9c55;

    border-radius: 50%;

    font-size: 10px;
    font-weight: 800;
}


/* =========================================
   HERO VISUAL
========================================= */

.hero-visual {
    position: relative;

    min-height: 480px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-glow {
    position: absolute;

    width: 400px;
    height: 400px;

    border-radius: 50%;

    background: var(--pale-red);
}


/* Blood drop */

.blood-drop-large {
    position: relative;
    z-index: 2;

    width: 190px;
    height: 245px;

    background: var(--primary);

    border-radius: 58% 58% 62% 62%;

    transform: rotate(45deg);

    box-shadow:
        0 30px 60px rgba(233, 39, 53, 0.25);

    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.blood-drop-large::before {
    content: "";

    position: absolute;

    width: 135px;
    height: 135px;

    top: -68px;

    background: var(--primary);

    border-radius: 50%;
}

.drop-highlight {
    position: absolute;

    width: 22px;
    height: 60px;

    background: rgba(255,255,255,0.18);

    border-radius: 50%;

    top: 55px;
    left: 50px;

    transform: rotate(-45deg);
}


/* Heart */

.hero-heart {
    position: absolute;

    z-index: 4;

    width: 76px;
    height: 76px;

    display: grid;
    place-items: center;

    background: white;

    color: var(--primary);

    border-radius: 50%;

    font-size: 35px;

    box-shadow: var(--shadow-soft);
}


/* Connection lines */

.connection {
    position: absolute;

    z-index: 1;

    width: 180px;
    height: 1px;

    background: rgba(233, 39, 53, 0.3);
}

.connection::before,
.connection::after {
    content: "";

    position: absolute;

    width: 8px;
    height: 8px;

    background: var(--primary);

    border-radius: 50%;

    top: -4px;
}

.connection::before {
    left: 0;
}

.connection::after {
    right: 0;
}

.connection-one {
    transform: rotate(24deg);
    left: 10px;
    top: 175px;
}

.connection-two {
    transform: rotate(-24deg);
    right: 10px;
    top: 175px;
}


/* Person cards */

.person-card {
    position: absolute;

    z-index: 5;

    display: flex;
    align-items: center;
    gap: 10px;

    background: white;

    border: 1px solid var(--border);

    padding: 12px;

    border-radius: 16px;

    box-shadow: var(--shadow-soft);

    min-width: 185px;
}

.person-card-left {
    left: 0;
    top: 80px;
}

.person-card-right {
    right: 0;
    bottom: 95px;
}

.person-card strong {
    display: block;

    font-size: 11px;
}

.person-card small {
    display: block;

    color: var(--text);

    font-size: 9px;
}

.avatar {
    width: 35px;
    height: 35px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    font-size: 12px;
    font-weight: 800;
}

.avatar-red {
    background: var(--pale-red);
    color: var(--primary);
}

.avatar-light {
    background: #f3f5f7;
    color: var(--primary);
}

.status-dot {
    width: 8px;
    height: 8px;

    background: #35a85d;

    border-radius: 50%;

    margin-left: auto;
}


/* =========================================
   TRUST STRIP
========================================= */

.trust-strip {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);

    background: white;
}

.trust-items {
    min-height: 100px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;

    padding: 20px 25px;

    border-right: 1px solid var(--border);
}

.trust-item:last-child {
    border-right: 0;
}

.trust-icon {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    background: var(--pale-red);
    color: var(--primary);

    border-radius: 12px;
}

.trust-item strong,
.trust-item small {
    display: block;
}

.trust-item strong {
    font-size: 13px;
}

.trust-item small {
    color: var(--text);
    font-size: 11px;
    margin-top: 2px;
}


/* =========================================
   SECTIONS
========================================= */

.section {
    padding: 110px 0;
}

.section-heading {
    max-width: 650px;
}

.section-heading.centered {
    margin: 0 auto 65px;
    text-align: center;
}

.section-label,
.powered-label {
    display: block;

    color: var(--primary);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.6px;

    margin-bottom: 14px;
}

.section-heading h2 {
    font-size: clamp(34px, 4vw, 50px);

    line-height: 1.1;

    letter-spacing: -1.8px;

    margin-bottom: 18px;
}

.section-heading p {
    color: var(--text);

    font-size: 16px;
    line-height: 1.75;
}


/* =========================================
   ABOUT
========================================= */

.about-section {
    background: var(--background);
}

.about-grid {
    display: grid;

    grid-template-columns: 1.1fr 0.9fr;

    gap: 25px;
}

.about-card-main {
    background: white;

    border: 1px solid var(--border);

    border-radius: var(--radius-lg);

    padding: 45px;

    box-shadow: var(--shadow-soft);
}

.card-icon {
    width: 50px;
    height: 50px;

    display: grid;
    place-items: center;

    background: var(--pale-red);
    color: var(--primary);

    border-radius: 15px;

    font-size: 20px;

    margin-bottom: 25px;
}

.about-card-main h3 {
    font-size: 25px;

    letter-spacing: -0.6px;

    margin-bottom: 18px;
}

.about-card-main p {
    color: var(--text);

    font-size: 15px;

    line-height: 1.8;

    margin-bottom: 15px;
}

.about-side {
    display: flex;
    flex-direction: column;

    gap: 12px;
}

.mini-card {
    display: grid;
    grid-template-columns: 45px 1fr;

    gap: 15px;

    padding: 23px;

    background: white;

    border: 1px solid var(--border);

    border-radius: 18px;
}

.mini-card > span {
    color: var(--primary);

    font-size: 12px;
    font-weight: 800;
}

.mini-card h4 {
    font-size: 15px;
    margin-bottom: 5px;
}

.mini-card p {
    color: var(--text);

    font-size: 12px;

    line-height: 1.6;
}


/* =========================================
   HOW IT WORKS
========================================= */

.how-section {
    background: var(--pale-red);
}

.steps {
    display: grid;

    grid-template-columns: 1fr 60px 1fr 60px 1fr;

    align-items: center;
}

.step-card {
    background: white;

    border: 1px solid rgba(233, 39, 53, 0.08);

    border-radius: 24px;

    padding: 32px;

    min-height: 300px;

    position: relative;
}

.step-number {
    color: #d7d9de;

    font-size: 11px;
    font-weight: 800;

    margin-bottom: 22px;
}

.step-icon {
    width: 55px;
    height: 55px;

    display: grid;
    place-items: center;

    background: var(--pale-red);

    color: var(--primary);

    border-radius: 16px;

    font-size: 23px;

    margin-bottom: 24px;
}

.step-icon .step-blood {
    font-size: 12px;
    margin-left: -5px;
}

.step-card h3 {
    font-size: 18px;

    line-height: 1.3;

    margin-bottom: 12px;
}

.step-card p {
    color: var(--text);

    font-size: 13px;

    line-height: 1.7;
}

.step-connector {
    height: 1px;

    background: rgba(233, 39, 53, 0.3);

    position: relative;
}

.step-connector::after {
    content: "›";

    position: absolute;

    right: -2px;
    top: -13px;

    color: var(--primary);

    font-size: 20px;
}


/* =========================================
   FEATURES
========================================= */

.features-section {
    background: white;
}

.features-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 40px;

    margin-bottom: 55px;
}

.features-header .section-heading {
    margin: 0;
}

.features-header > p {
    max-width: 350px;

    color: var(--text);

    font-size: 14px;

    line-height: 1.75;
}

.features-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 15px;
}

.feature-card {
    padding: 30px;

    border: 1px solid var(--border);

    border-radius: 20px;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-4px);

    border-color: rgba(233, 39, 53, 0.18);

    box-shadow: var(--shadow-soft);
}

.feature-icon {
    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    background: var(--pale-red);

    color: var(--primary);

    border-radius: 13px;

    margin-bottom: 22px;

    font-size: 18px;
}

.feature-card h3 {
    font-size: 16px;

    margin-bottom: 8px;
}

.feature-card p {
    color: var(--text);

    font-size: 12px;

    line-height: 1.7;
}


/* =========================================
   COMMUNITY
========================================= */

.community-section {
    padding: 0 0 110px;

    background: white;
}

.community-card {
    position: relative;

    overflow: hidden;

    text-align: center;

    padding: 85px 40px;

    background: var(--dark);

    color: white;

    border-radius: var(--radius-lg);
}

.community-card .section-label {
    color: #ff9299;
}

.community-card h2 {
    position: relative;
    z-index: 2;

    max-width: 720px;

    margin: 0 auto 18px;

    font-size: clamp(34px, 4vw, 53px);

    line-height: 1.1;

    letter-spacing: -2px;
}

.community-card h2 span {
    color: #ff6974;
}

.community-card > p {
    position: relative;
    z-index: 2;

    max-width: 560px;

    margin: 0 auto;

    color: #b7becb;

    font-size: 15px;
}

.community-heart {
    position: relative;
    z-index: 2;

    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    margin: 0 auto 24px;

    background: rgba(233, 39, 53, 0.15);

    color: #ff6974;

    border-radius: 50%;

    font-size: 22px;
}

.community-motto {
    position: relative;
    z-index: 2;

    max-width: 600px;

    margin: 35px auto 0;

    padding-top: 28px;

    border-top: 1px solid rgba(255,255,255,0.1);

    color: #f5f6f8;

    font-size: 14px;
    font-weight: 600;
}

.community-motto span {
    color: #ff6974;

    font-size: 25px;
    vertical-align: middle;
}

.community-decoration {
    position: absolute;

    border: 1px solid rgba(233, 39, 53, 0.15);

    border-radius: 50%;
}

.community-decoration-one {
    width: 400px;
    height: 400px;

    left: -220px;
    bottom: -250px;
}

.community-decoration-two {
    width: 300px;
    height: 300px;

    right: -170px;
    top: -190px;
}


/* =========================================
   DOWNLOAD
========================================= */

.download-section {
    padding: 110px 0;

    background: var(--pale-red);

    overflow: hidden;
}

.download-grid {
    display: grid;

    grid-template-columns: 1fr 0.8fr;

    align-items: center;

    gap: 80px;
}

.download-content h2 {
    max-width: 600px;

    font-size: clamp(38px, 4vw, 55px);

    line-height: 1.08;

    letter-spacing: -2px;

    margin-bottom: 20px;
}

.download-content > p {
    max-width: 540px;

    color: var(--text);

    font-size: 15px;

    line-height: 1.8;

    margin-bottom: 28px;
}


/* Google Play */

.google-play-button {
    display: inline-flex;
    align-items: center;
    gap: 11px;

    background: var(--dark);

    color: white;

    padding: 10px 18px;

    border-radius: 12px;

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.google-play-button:hover {
    transform: translateY(-2px);
    background: var(--primary);
}

.google-play-icon {
    font-size: 18px;
}

.google-play-button small {
    display: block;

    font-size: 8px;

    letter-spacing: 0.8px;

    line-height: 1;
}

.google-play-button strong {
    display: block;

    font-size: 17px;

    line-height: 1.2;

    margin-top: 3px;
}

.download-content .download-note {
    margin-top: 14px;

    margin-bottom: 0;

    font-size: 11px;
}


/* Phones */

.download-visual {
    position: relative;

    height: 440px;
}

.phone {
    position: absolute;

    width: 190px;
    height: 385px;

    background: var(--dark);

    border: 7px solid #242c3c;

    border-radius: 32px;

    box-shadow: 0 25px 50px rgba(23, 32, 51, 0.2);

    overflow: hidden;
}

.phone-back {
    left: 30px;
    top: 40px;

    transform: rotate(-8deg);

    opacity: 0.8;
}

.phone-front {
    right: 45px;
    top: 5px;

    transform: rotate(6deg);

    z-index: 2;
}

.phone-screen {
    position: absolute;

    inset: 7px;

    background: var(--background);

    border-radius: 23px;

    overflow: hidden;
}

.phone-speaker {
    position: absolute;

    z-index: 3;

    width: 55px;
    height: 5px;

    top: 12px;
    left: 50%;

    transform: translateX(-50%);

    background: #0f1520;

    border-radius: 10px;
}

.phone-status {
    padding: 28px 18px 10px;

    font-size: 12px;
    font-weight: 800;
}

.phone-greeting {
    padding: 10px 18px 20px;
}

.phone-greeting small {
    display: block;

    color: var(--text);

    font-size: 8px;
}

.phone-greeting strong {
    display: block;

    font-size: 15px;

    margin-top: 3px;
}

.phone-request {
    margin: 0 12px;

    padding: 18px;

    background: var(--pale-red);

    border-radius: 16px;

    color: var(--dark);
}

.phone-request > span {
    display: block;

    color: var(--primary);

    font-size: 8px;
    font-weight: 800;

    text-transform: uppercase;
}

.phone-request > strong {
    display: block;

    color: var(--primary);

    font-size: 38px;

    line-height: 1;

    margin: 12px 0 5px;
}

.phone-request > small {
    color: var(--text);

    font-size: 8px;
}

.phone-request-line {
    height: 1px;

    background: rgba(23, 32, 51, 0.1);

    margin: 14px 0;
}

.phone-request button {
    width: 100%;

    border: 0;

    background: var(--primary);
    color: white;

    padding: 8px;

    border-radius: 8px;

    font-size: 8px;
    font-weight: 700;
}


/* =========================================
   POWERED BY
========================================= */

.powered-section {
    padding: 80px 0;

    background: white;

    border-bottom: 1px solid var(--border);
}

.powered-content {
    text-align: center;

    max-width: 550px;

    margin: 0 auto;
}

.powered-logo {
    margin-bottom: 12px;

    font-size: 28px;

    font-weight: 800;

    letter-spacing: -1px;
}

.powered-logo span::after {
    content: "";

    display: inline-block;

    width: 7px;
    height: 7px;

    background: var(--primary);

    border-radius: 50%;

    margin-left: 5px;

    vertical-align: top;
}

.powered-content p {
    color: var(--text);

    font-size: 13px;

    line-height: 1.7;
}

.powered-content strong {
    color: var(--dark);
}

.powered-motto {
    margin-top: 10px;

    font-size: 11px !important;

    color: #969ca7 !important;
}


/* =========================================
   FOOTER
========================================= */

.site-footer {
    background: white;
}

.footer-main {
    display: flex;
    justify-content: space-between;

    gap: 80px;

    padding: 70px 0 55px;
}

.footer-brand-link {
    margin-bottom: 18px;
}

.footer-brand > p {
    color: var(--text);

    font-size: 12px;

    margin-bottom: 8px;
}

.footer-powered {
    color: #999faa;

    font-size: 10px;
}

.footer-links {
    display: flex;

    gap: 100px;
}

.footer-links h4 {
    font-size: 12px;

    margin-bottom: 17px;
}

.footer-links a {
    display: block;

    color: var(--text);

    font-size: 11px;

    margin-bottom: 10px;

    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;

    gap: 20px;

    padding: 20px 0;

    border-top: 1px solid var(--border);

    color: #9ba1ac;

    font-size: 10px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 950px) {

    .main-nav {
        gap: 17px;
    }

    .hero-grid {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-description {
        max-width: 650px;
    }

    .hero-visual {
        max-width: 600px;
        width: 100%;

        margin: 0 auto;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .step-connector {
        display: none;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .download-grid {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .download-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .download-visual {
        max-width: 500px;
        width: 100%;

        margin: 0 auto;
    }
}


@media (max-width: 760px) {

    .container {
        width: min(calc(100% - 30px), var(--container));
    }

    .nav-container {
        min-height: 68px;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;

        top: 68px;
        left: 15px;
        right: 15px;

        display: none;
        flex-direction: column;
        align-items: stretch;

        gap: 0;

        padding: 10px;

        background: white;

        border: 1px solid var(--border);

        border-radius: 16px;

        box-shadow: var(--shadow-soft);
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        padding: 12px;

        border-radius: 8px;
    }

    .main-nav a:hover,
    .main-nav a.active {
        background: var(--pale-red);
        color: var(--primary);
    }

    .main-nav a.active::after {
        display: none;
    }

    .main-nav .nav-download {
        margin-top: 5px;

        text-align: center;

        background: var(--primary);
    }

    .hero {
        padding: 75px 0 65px;
    }

    .hero h1 {
        font-size: clamp(43px, 13vw, 62px);

        letter-spacing: -2.5px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-actions {
        flex-direction: column;

        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-visual {
        min-height: 390px;

        transform: scale(0.9);
    }

    .person-card-left {
        left: -5px;
    }

    .person-card-right {
        right: -5px;
    }

    .trust-items {
        grid-template-columns: 1fr;
    }

    .trust-item {
        border-right: 0;

        border-bottom: 1px solid var(--border);
    }

    .trust-item:last-child {
        border-bottom: 0;
    }

    .section {
        padding: 80px 0;
    }

    .section-heading.centered {
        margin-bottom: 45px;
    }

    .about-card-main {
        padding: 30px;
    }

    .features-header {
        display: block;
    }

    .features-header > p {
        margin-top: 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .community-section {
        padding-bottom: 80px;
    }

    .community-card {
        padding: 65px 22px;
    }

    .download-section {
        padding: 80px 0;
    }

    .download-visual {
        height: 390px;
    }

    .phone {
        width: 160px;
        height: 325px;
    }

    .phone-back {
        left: 35px;
    }

    .phone-front {
        right: 35px;
    }

    .footer-main {
        display: block;

        padding: 55px 0 35px;
    }

    .footer-links {
        gap: 70px;

        margin-top: 40px;
    }

    .footer-bottom {
        flex-direction: column;
    }
}


@media (max-width: 430px) {

    .hero-visual {
        transform: scale(0.78);

        width: 125%;
        margin-left: -12.5%;

        min-height: 340px;
    }

    .person-card {
        min-width: 160px;
    }

    .person-card-left {
        left: 0;
    }

    .person-card-right {
        right: 0;
    }

    .phone-back {
        left: 10px;
    }

    .phone-front {
        right: 10px;
    }

    .footer-links {
        gap: 45px;
    }
}

/* =========================================================
   RedMate — ABOUT PAGE
   ---------------------------------------------------------
   About-page styles only.
   Keep this AFTER the main/home-page CSS.
========================================================= */


/* =========================================================
   1. ABOUT HERO
========================================================= */

.about-page-hero {
    position: relative;
    overflow: hidden;

    padding: 82px 0 78px;

    background: var(--pale-red);

    border-bottom: 1px solid rgba(233, 39, 53, 0.06);
}

.about-page-hero-inner {
    width: 100%;
    max-width: 760px;

    margin: 0 auto;

    text-align: center;
}

.about-page-hero-inner .section-label {
    margin-bottom: 15px;
}

.about-page-hero-inner h1 {
    margin: 0 auto 20px;

    max-width: 760px;

    font-size: clamp(42px, 5.5vw, 64px);

    line-height: 1.05;

    letter-spacing: -2.8px;

    color: var(--dark);
}

.about-page-hero-inner h1 span {
    color: var(--primary);
}

.about-page-hero-inner p {
    width: 100%;
    max-width: 620px;

    margin: 0 auto;

    color: var(--text);

    font-size: 16px;

    line-height: 1.75;
}


/* =========================================================
   2. WHY RedMate
========================================================= */

.about-why-section {
    background: white;
}

.about-two-column {
    display: grid;

    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);

    gap: 80px;

    align-items: start;
}

.about-section-title {
    min-width: 0;
}

.about-section-title .section-label {
    margin-bottom: 14px;
}

.about-section-title h2 {
    margin: 0;

    max-width: 480px;

    font-size: clamp(34px, 4vw, 48px);

    line-height: 1.1;

    letter-spacing: -1.7px;
}

.about-section-title h2 span {
    color: var(--primary);
}

.about-section-copy {
    min-width: 0;

    padding-top: 1px;
}

.about-section-copy p {
    max-width: 620px;

    margin: 0 0 18px;

    color: var(--text);

    font-size: 15px;

    line-height: 1.85;
}

.about-section-copy p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   3. MISSION + VISION
========================================================= */

.about-purpose-section {
    background: var(--background);
}

.purpose-grid {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 18px;

    align-items: stretch;
}

.purpose-card {
    min-width: 0;
    min-height: 320px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    padding: 35px;

    background: white;

    border: 1px solid var(--border);

    border-radius: 22px;

    box-shadow: var(--shadow-soft);
}

.purpose-icon {
    width: 48px;
    height: 48px;

    flex: 0 0 48px;

    display: grid;
    place-items: center;

    margin: 0 0 28px;

    background: var(--pale-red);

    color: var(--primary);

    border-radius: 14px;

    font-size: 18px;

    line-height: 1;
}

.purpose-card .section-label {
    margin: 0 0 11px;
}

.purpose-card h3 {
    margin: 0 0 14px;

    max-width: 500px;

    font-size: clamp(30px, 3.2vw, 42px);

    line-height: 1.1;

    letter-spacing: -1.4px;

    color: var(--dark);
}

.purpose-card h3 span {
    color: var(--primary);
}

.purpose-card p {
    max-width: 500px;

    margin: 0;

    color: var(--text);

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================================
   4. HOW WE HELP
========================================================= */

.about-help-section {
    background: white;
}

.about-help-grid {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 15px;

    align-items: stretch;
}

.about-help-card {
    min-width: 0;
    min-height: 285px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    padding: 30px;

    background: white;

    border: 1px solid var(--border);

    border-radius: 20px;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.about-help-card:hover {
    transform: translateY(-3px);

    border-color: rgba(233, 39, 53, 0.18);

    box-shadow: var(--shadow-soft);
}

.help-number {
    margin: 0 0 21px;

    color: #d7d9de;

    font-size: 10px;

    font-weight: 800;

    line-height: 1;
}

.help-icon {
    width: 46px;
    height: 46px;

    flex: 0 0 46px;

    display: grid;
    place-items: center;

    margin: 0 0 20px;

    background: var(--pale-red);

    color: var(--primary);

    border-radius: 13px;

    font-size: 18px;

    line-height: 1;
}

.about-help-card h3 {
    margin: 0 0 9px;

    font-size: 16px;

    line-height: 1.35;
}

.about-help-card p {
    max-width: 420px;

    margin: 0;

    color: var(--text);

    font-size: 12px;

    line-height: 1.7;
}


/* =========================================================
   5. COMMUNITY
========================================================= */

.about-community-section {
    padding: 0 0 110px;

    background: white;
}

.about-community-card {
    position: relative;

    overflow: hidden;

    padding: 78px 35px;

    text-align: center;

    background: var(--dark);

    color: white;

    border-radius: var(--radius-lg);
}

.about-community-card::before {
    content: "";

    position: absolute;

    width: 390px;
    height: 390px;

    left: -230px;
    bottom: -260px;

    border: 1px solid rgba(233, 39, 53, 0.15);

    border-radius: 50%;
}

.about-community-card::after {
    content: "";

    position: absolute;

    width: 320px;
    height: 320px;

    right: -200px;
    top: -230px;

    border: 1px solid rgba(233, 39, 53, 0.15);

    border-radius: 50%;
}

.about-community-card .section-label {
    position: relative;
    z-index: 2;

    margin-bottom: 20px;

    color: #ff9299;
}

.about-community-heart {
    position: relative;
    z-index: 2;

    width: 56px;
    height: 56px;

    display: grid;
    place-items: center;

    margin: 0 auto 22px;

    background: rgba(233, 39, 53, 0.15);

    color: #ff6974;

    border-radius: 50%;

    font-size: 21px;
}

.about-community-card h2 {
    position: relative;
    z-index: 2;

    max-width: 760px;

    margin: 0 auto 18px;

    font-size: clamp(34px, 4.5vw, 52px);

    line-height: 1.12;

    letter-spacing: -1.8px;
}

.about-community-card h2 span {
    color: #ff6974;
}

.about-community-card p {
    position: relative;
    z-index: 2;

    max-width: 560px;

    margin: 0 auto;

    color: #b8beca;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   6. POWERED BY
========================================================= */

.about-page-hero + .about-why-section {
    /* keeps the page transition clean */
}

.powered-section {
    background: white;
}

.powered-content {
    max-width: 600px;
}


/* =========================================================
   7. ABOUT CTA
========================================================= */

.about-cta-section {
    padding: 0 0 100px;

    background: white;
}

.about-cta {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    padding: 40px 45px;

    background: var(--pale-red);

    border-radius: 22px;
}

.about-cta > div {
    min-width: 0;
}

.about-cta .section-label {
    margin-bottom: 13px;
}

.about-cta h2 {
    max-width: 650px;

    margin: 0 0 12px;

    font-size: clamp(28px, 3vw, 40px);

    line-height: 1.1;

    letter-spacing: -1.3px;
}

.about-cta h2 span {
    color: var(--primary);
}

.about-cta p {
    max-width: 580px;

    margin: 0;

    color: var(--text);

    font-size: 13px;

    line-height: 1.7;
}

.about-cta .btn {
    flex: 0 0 auto;
}


/* =========================================================
   8. TABLET
========================================================= */

@media (max-width: 950px) {

    /*
       IMPORTANT:
       At 950px the Mission/Vision cards STAY SIDE BY SIDE.
       This was one of the problems in the previous version.
    */

    .about-two-column {
        grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);

        gap: 50px;
    }

    .purpose-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 15px;
    }

    .purpose-card {
        min-height: 300px;

        padding: 30px;
    }

    .purpose-card h3 {
        font-size: clamp(28px, 4vw, 38px);
    }

    .about-help-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));

        gap: 12px;
    }

    .about-help-card {
        padding: 26px;
    }

    .about-cta {
        gap: 30px;

        padding: 35px;
    }

}


/* =========================================================
   9. MOBILE
========================================================= */

@media (max-width: 760px) {

    .about-page-hero {
        padding: 65px 0 60px;
    }

    .about-page-hero-inner h1 {
        font-size: clamp(40px, 11vw, 56px);

        letter-spacing: -2.2px;
    }

    .about-page-hero-inner p {
        font-size: 15px;
    }


    /* Why RedMate */

    .about-two-column {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .about-section-title h2 {
        max-width: 600px;
    }


    /* Mission / Vision */

    .purpose-grid {
        grid-template-columns: 1fr;

        gap: 15px;
    }

    .purpose-card {
        min-height: auto;

        padding: 30px;
    }

    .purpose-card h3 {
        font-size: 32px;
    }


    /* How we help */

    .about-help-grid {
        grid-template-columns: 1fr;

        gap: 12px;
    }

    .about-help-card {
        min-height: auto;

        padding: 28px;
    }


    /* Community */

    .about-community-section {
        padding-bottom: 80px;
    }

    .about-community-card {
        padding: 60px 22px;
    }

    .about-community-card h2 {
        font-size: clamp(32px, 9vw, 46px);

        letter-spacing: -1.4px;
    }


    /* CTA */

    .about-cta {
        flex-direction: column;

        align-items: flex-start;

        padding: 32px 25px;
    }

    .about-cta .btn {
        width: 100%;
    }

}


/* =========================================================
   10. SMALL PHONES
========================================================= */

@media (max-width: 430px) {

    .about-page-hero {
        padding: 58px 0 52px;
    }

    .about-page-hero-inner h1 {
        font-size: 40px;

        letter-spacing: -1.8px;
    }

    .about-page-hero-inner p {
        font-size: 14px;
    }

    .purpose-card {
        padding: 26px;
    }

    .purpose-card h3 {
        font-size: 29px;
    }

    .about-community-card {
        padding: 55px 18px;
    }

    .about-community-card h2 {
        font-size: 31px;
    }

    .about-cta {
        padding: 28px 22px;
    }

}

/* =========================================================
   RedMate — PRIVACY / LEGAL DOCUMENT PAGES
   Clean document layout
========================================================= */


/* =========================================================
   LEGAL PAGE
========================================================= */

.legal-page {
    background: var(--background);

    padding: 65px 0 90px;
}

.legal-container {
    width: min(
        calc(100% - 40px),
        820px
    );

    margin: 0 auto;
}


/* =========================================================
   DOCUMENT HEADER
========================================================= */

.legal-header {
    padding-bottom: 38px;

    border-bottom: 1px solid var(--border);
}

.legal-label {
    display: inline-block;

    margin-bottom: 13px;

    color: var(--primary);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.6px;
}

.legal-header h1 {
    margin: 0 0 10px;

    color: var(--dark);

    font-size: clamp(34px, 5vw, 48px);

    line-height: 1.1;

    letter-spacing: -1.7px;
}

.legal-effective {
    margin: 0;

    color: var(--text);

    font-size: 13px;
}

.legal-effective strong {
    color: var(--dark);
    font-weight: 600;
}


/* =========================================================
   INTRO
========================================================= */

.legal-intro {
    margin-top: 30px;
}

.legal-intro p {
    margin: 0 0 17px;

    color: var(--text);

    font-size: 15px;

    line-height: 1.85;
}

.legal-intro p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   SECTIONS
========================================================= */

.legal-section {
    padding: 38px 0;

    border-bottom: 1px solid var(--border);
}

.legal-section:last-of-type {
    border-bottom: 0;
}

.legal-section h2 {
    display: flex;

    align-items: baseline;

    gap: 8px;

    margin: 0 0 18px;

    color: var(--dark);

    font-size: 20px;

    line-height: 1.35;

    letter-spacing: -0.35px;
}

.legal-section h2 span {
    color: var(--primary);

    font-size: 15px;

    font-weight: 800;

    flex-shrink: 0;
}

.legal-section p {
    margin: 0 0 17px;

    color: var(--text);

    font-size: 14px;

    line-height: 1.85;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-section strong {
    color: var(--dark);

    font-weight: 650;
}


/* =========================================================
   LISTS
========================================================= */

.legal-section ul {
    margin: 5px 0 20px;

    padding-left: 22px;
}

.legal-section li {
    padding-left: 4px;

    margin-bottom: 9px;

    color: var(--text);

    font-size: 14px;

    line-height: 1.7;
}

.legal-section li:last-child {
    margin-bottom: 0;
}

.legal-section li::marker {
    color: var(--primary);
}


/* =========================================================
   LEGAL NOTICE
========================================================= */

.legal-notice {
    margin: 24px 0;

    padding: 20px 22px;

    background: var(--pale-red);

    border-left: 3px solid var(--primary);

    border-radius: 0 12px 12px 0;
}

.legal-notice strong {
    display: block;

    margin-bottom: 7px;

    color: var(--dark);

    font-size: 14px;

    line-height: 1.6;
}

.legal-notice p {
    margin: 0;

    font-size: 13px;
}


/* =========================================================
   ACCOUNT DELETION PATH
========================================================= */

.deletion-path {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 7px;

    margin: 20px 0 22px;

    padding: 14px 16px;

    background: #ffffff;

    border: 1px solid var(--border);

    border-radius: 10px;

    color: var(--dark);

    font-size: 13px;

    font-weight: 650;
}

.deletion-path span {
    color: var(--primary);

    font-weight: 800;
}


/* =========================================================
   EMAIL
========================================================= */

.legal-email {
    display: inline-block;

    color: var(--primary);

    font-size: 14px;

    font-weight: 700;

    word-break: break-word;
}

.legal-email:hover {
    color: var(--primary-dark);

    text-decoration: underline;
}


/* =========================================================
   CONTACT DETAILS
========================================================= */

.contact-details {
    display: flex;

    flex-direction: column;

    gap: 9px;

    margin-top: 25px;

    padding: 22px;

    background: #ffffff;

    border: 1px solid var(--border);

    border-radius: 14px;
}

.contact-details strong {
    color: var(--dark);

    font-size: 14px;
}

.contact-details span {
    color: var(--text);

    font-size: 13px;

    line-height: 1.6;
}

.contact-details a {
    color: var(--primary);

    font-weight: 650;

    word-break: break-word;
}


/* =========================================================
   LAST UPDATED
========================================================= */

.legal-updated {
    padding-top: 25px;

    color: #9ba1ac;

    font-size: 10px;

    text-align: center;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 760px) {

    .legal-page {
        padding: 48px 0 70px;
    }

    .legal-container {
        width: min(
            calc(100% - 30px),
            820px
        );
    }

    .legal-header {
        padding-bottom: 30px;
    }

    .legal-header h1 {
        font-size: 36px;

        letter-spacing: -1.4px;
    }

    .legal-intro {
        margin-top: 24px;
    }

    .legal-intro p {
        font-size: 14px;

        line-height: 1.8;
    }

    .legal-section {
        padding: 30px 0;
    }

    .legal-section h2 {
        font-size: 18px;

        margin-bottom: 15px;
    }

    .legal-section p,
    .legal-section li {
        font-size: 13px;

        line-height: 1.8;
    }

    .legal-section ul {
        padding-left: 20px;
    }

    .legal-notice {
        padding: 17px 18px;
    }

}


/* =========================================================
   SMALL PHONE
========================================================= */

@media (max-width: 430px) {

    .legal-page {
        padding: 38px 0 55px;
    }

    .legal-container {
        width: calc(100% - 28px);
    }

    .legal-label {
        margin-bottom: 10px;

        font-size: 9px;
    }

    .legal-header h1 {
        font-size: 32px;

        letter-spacing: -1.1px;
    }

    .legal-effective {
        font-size: 12px;
    }

    .legal-intro {
        margin-top: 21px;
    }

    .legal-intro p {
        font-size: 13px;

        line-height: 1.8;
    }

    .legal-section {
        padding: 27px 0;
    }

    .legal-section h2 {
        align-items: flex-start;

        gap: 6px;

        font-size: 17px;

        line-height: 1.4;
    }

    .legal-section h2 span {
        font-size: 13px;
    }

    .legal-section p,
    .legal-section li {
        font-size: 13px;

        line-height: 1.8;
    }

    .legal-section ul {
        padding-left: 19px;

        margin-bottom: 18px;
    }

    .legal-section li {
        padding-left: 2px;

        margin-bottom: 8px;
    }

    .deletion-path {
        align-items: flex-start;

        flex-direction: column;

        gap: 4px;

        padding: 13px 14px;

        font-size: 12px;
    }

    .deletion-path span {
        display: none;
    }

    .legal-notice {
        margin: 20px 0;

        padding: 16px;
    }

    .legal-notice strong {
        font-size: 13px;
    }

    .legal-notice p {
        font-size: 12px;
    }

    .contact-details {
        padding: 18px;

        gap: 8px;
    }

    .contact-details span {
        font-size: 12px;
    }

}

/* =========================================================
   RedMate — CONTACT PAGE
   Clean support-focused layout
========================================================= */


/* =========================================================
   PAGE
========================================================= */

.contact-page {
    background: var(--background);

    padding: 68px 0 90px;
}

.contact-container {
    width: min(
        calc(100% - 40px),
        820px
    );

    margin: 0 auto;
}


/* =========================================================
   INTRO
========================================================= */

.contact-intro {
    max-width: 680px;

    padding-bottom: 45px;
}

.contact-label {
    display: inline-block;

    margin-bottom: 14px;

    color: var(--primary);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.6px;
}

.contact-intro h1 {
    margin: 0 0 18px;

    color: var(--dark);

    font-size: clamp(40px, 5vw, 54px);

    line-height: 1.08;

    letter-spacing: -2px;
}

.contact-intro h1 span {
    color: var(--primary);
}

.contact-intro p {
    max-width: 600px;

    margin: 0 0 7px;

    color: var(--text);

    font-size: 15px;

    line-height: 1.8;
}

.contact-intro p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   EMAIL SECTION
========================================================= */

.contact-email-section {
    padding: 30px 0 38px;

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.contact-section-label {
    display: block;

    margin-bottom: 11px;

    color: var(--primary);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.4px;
}

.contact-email-section h2 {
    margin: 0 0 8px;

    color: var(--dark);

    font-size: 18px;

    line-height: 1.3;
}

.support-email {
    display: inline-block;

    margin-bottom: 13px;

    color: var(--primary);

    font-size: clamp(18px, 3vw, 24px);

    font-weight: 700;

    line-height: 1.4;

    word-break: break-word;
}

.support-email:hover {
    text-decoration: underline;
}

.contact-email-section p {
    max-width: 620px;

    margin: 0 0 22px;

    color: var(--text);

    font-size: 13px;

    line-height: 1.8;
}

.contact-email-button {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 11px 17px;

    background: var(--primary);

    color: white;

    border-radius: 9px;

    font-size: 12px;

    font-weight: 700;

    text-decoration: none;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.contact-email-button span {
    font-size: 15px;
}

.contact-email-button:hover {
    transform: translateY(-1px);

    background: var(--primary-dark);
}


/* =========================================================
   GENERAL CONTACT SECTION
========================================================= */

.contact-section {
    padding: 38px 0;

    border-bottom: 1px solid var(--border);
}

.contact-section h2,
.contact-details-section h2 {
    margin: 0 0 15px;

    color: var(--dark);

    font-size: 22px;

    line-height: 1.35;

    letter-spacing: -0.4px;
}

.contact-section > p {
    margin: 0 0 17px;

    color: var(--text);

    font-size: 14px;

    line-height: 1.8;
}

.contact-section ul {
    margin: 0 0 22px;

    padding-left: 21px;
}

.contact-section li {
    margin-bottom: 8px;

    padding-left: 3px;

    color: var(--text);

    font-size: 13px;

    line-height: 1.7;
}

.contact-section li:last-child {
    margin-bottom: 0;
}

.contact-section li::marker {
    color: var(--primary);
}


/* =========================================================
   ACCOUNT DELETION
========================================================= */

.contact-deletion-path {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 7px;

    width: fit-content;
    max-width: 100%;

    margin-top: 18px;

    padding: 13px 16px;

    background: white;

    border: 1px solid var(--border);

    border-radius: 10px;

    color: var(--dark);

    font-size: 12px;

    font-weight: 650;
}

.contact-deletion-path span {
    color: var(--primary);

    font-weight: 800;
}


/* =========================================================
   IMPORTANT NOTICE
========================================================= */

.contact-important {
    display: grid;

    grid-template-columns: 48px minmax(0, 1fr);

    gap: 18px;

    margin: 38px 0;

    padding: 25px;

    background: var(--pale-red);

    border-left: 3px solid var(--primary);

    border-radius: 0 14px 14px 0;
}

.contact-important-mark {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    background: white;

    color: var(--primary);

    border-radius: 50%;

    font-size: 17px;

    font-weight: 800;
}

.contact-important-label {
    display: block;

    margin-bottom: 8px;

    color: var(--primary);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.4px;
}

.contact-important h2 {
    margin: 0 0 13px;

    color: var(--dark);

    font-size: 20px;

    line-height: 1.35;

    letter-spacing: -0.3px;
}

.contact-important p {
    margin: 0 0 11px;

    color: var(--text);

    font-size: 13px;

    line-height: 1.8;
}

.contact-important p:last-child {
    margin-bottom: 0;
}

.contact-important strong {
    color: var(--dark);
}


/* =========================================================
   CONTACT DETAILS
========================================================= */

.contact-details-section {
    padding: 10px 0 0;
}

.contact-details-section h2 {
    margin-bottom: 25px;
}

.contact-details-list {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 12px;
}

.contact-detail {
    display: flex;

    flex-direction: column;

    gap: 7px;

    min-width: 0;

    padding: 20px;

    background: white;

    border: 1px solid var(--border);

    border-radius: 13px;
}

.contact-detail-label {
    color: #9ba1ac;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.2px;
}

.contact-detail strong,
.contact-detail span,
.contact-detail a {
    color: var(--dark);

    font-size: 12px;

    line-height: 1.6;
}

.contact-detail a {
    color: var(--primary);

    font-weight: 650;

    word-break: break-word;
}

.contact-detail a:hover {
    text-decoration: underline;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 760px) {

    .contact-page {
        padding: 50px 0 70px;
    }

    .contact-container {
        width: min(
            calc(100% - 30px),
            820px
        );
    }

    .contact-intro {
        padding-bottom: 35px;
    }

    .contact-intro h1 {
        font-size: 40px;

        letter-spacing: -1.6px;
    }

    .contact-details-list {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 430px) {

    .contact-page {
        padding: 38px 0 55px;
    }

    .contact-container {
        width: calc(100% - 28px);
    }

    .contact-label {
        margin-bottom: 10px;

        font-size: 9px;
    }

    .contact-intro h1 {
        font-size: 34px;

        letter-spacing: -1.2px;
    }

    .contact-intro p {
        font-size: 13px;

        line-height: 1.75;
    }

    .contact-email-section {
        padding: 27px 0 32px;
    }

    .support-email {
        font-size: 18px;
    }

    .contact-email-button {
        width: 100%;

        justify-content: center;
    }

    .contact-section {
        padding: 30px 0;
    }

    .contact-section h2,
    .contact-details-section h2 {
        font-size: 19px;
    }

    .contact-section > p,
    .contact-section li {
        font-size: 13px;

        line-height: 1.8;
    }

    .contact-deletion-path {
        width: 100%;

        align-items: flex-start;

        flex-direction: column;

        gap: 3px;

        font-size: 12px;
    }

    .contact-deletion-path span {
        display: none;
    }

    .contact-important {
        grid-template-columns: 1fr;

        gap: 15px;

        margin: 30px 0;

        padding: 20px;
    }

    .contact-important h2 {
        font-size: 18px;
    }

    .contact-important p {
        font-size: 12px;
    }

    .contact-detail {
        padding: 18px;
    }

}

.download-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-mockup {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
}