:root {
    --bg: #f4fbfb;
    --surface: #ffffff;
    --surface-soft: #eaf8f7;
    --text: #102a43;
    --muted: #607080;
    --brand: #078c8c;
    --brand-dark: #056f7a;
    --brand-blue: #0876d8;
    --success: #10a66a;
    --danger: #c2413b;
    --warning: #e0a100;
    --border: #d8ebeb;
    --shadow: 0 20px 60px rgba(7, 111, 122, 0.12);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(8, 118, 216, 0.12), transparent 32rem),
        radial-gradient(circle at 85% 10%, rgba(16, 166, 106, 0.14), transparent 26rem),
        var(--bg);
    color: var(--text);
    line-height: 1.5;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

.app-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-content {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 34px 0 70px;
    flex: 1;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    width: min(1180px, calc(100% - 24px));
    margin: 12px auto 0;
    padding: 12px 14px;
    border: 1px solid rgba(216, 235, 235, 0.75);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px rgba(16, 42, 67, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    letter-spacing: -0.04em;
    font-size: 1.35rem;
}

.brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: white;
    background: linear-gradient(135deg, var(--brand), var(--brand-blue));
    box-shadow: 0 10px 25px rgba(8, 118, 216, 0.22);
}

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

.site-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-nav a {
    padding: 10px 13px;
    border-radius: 999px;
    color: var(--muted);
    font-weight: 700;
    font-size: 0.95rem;
}

.site-nav a.active,
.site-nav a:hover {
    background: var(--surface-soft);
    color: var(--brand-dark);
}

.nav-button,
.primary-link,
.secondary-link,
.whatsapp-link,
form button {
    border: 0;
    border-radius: 999px;
    padding: 13px 18px;
    font-weight: 800;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
}

.nav-button,
.primary-link,
form button {
    background: linear-gradient(135deg, var(--brand), var(--brand-blue));
    color: white !important;
    box-shadow: 0 12px 24px rgba(8, 118, 216, 0.2);
}

.secondary-link {
    background: white;
    border: 1px solid var(--border);
    color: var(--brand-dark);
}

.whatsapp-link {
    background: #11a866;
    color: white;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 0;
    background: var(--surface-soft);
    border-radius: 999px;
    padding: 12px;
}

.menu-toggle span {
    display: block;
    height: 2px;
    background: var(--text);
    margin: 5px 0;
    border-radius: 999px;
}

.hero {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 34px;
    align-items: center;
    min-height: 72vh;
}

.eyebrow {
    color: var(--brand);
    text-transform: uppercase;
    letter-spacing: 0.13em;
    font-size: 0.78rem;
    font-weight: 900;
    margin: 0 0 12px;
}

h1,
h2,
h3 {
    letter-spacing: -0.055em;
    line-height: 1.02;
    margin: 0;
}

h1 {
    font-size: clamp(2.65rem, 7vw, 5.8rem);
    max-width: 900px;
}

h2 {
    font-size: clamp(1.45rem, 3vw, 2.2rem);
}

p {
    color: var(--muted);
}

.hero-lead {
    font-size: 1.22rem;
    max-width: 620px;
}

.search-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    padding: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 12px;
    margin: 26px 0 18px;
}

label {
    display: grid;
    gap: 7px;
    color: var(--text);
    font-weight: 800;
    font-size: 0.92rem;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--border);
    background: white;
    border-radius: 16px;
    padding: 14px 14px;
    color: var(--text);
    outline: none;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 4px rgba(7, 140, 140, 0.12);
}

.hero-actions,
.card-actions,
.stacked-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.phone-mockup {
    background: #101828;
    border-radius: 44px;
    padding: 15px;
    box-shadow: 0 34px 80px rgba(16, 42, 67, 0.28);
    min-height: 650px;
    position: relative;
    overflow: hidden;
    border: 7px solid #1f2937;
}

.phone-top {
    width: 110px;
    height: 28px;
    background: #050608;
    border-radius: 999px;
    position: absolute;
    left: 50%;
    top: 18px;
    transform: translateX(-50%);
    z-index: 2;
}

.radar {
    height: 100%;
    min-height: 615px;
    border-radius: 34px;
    background:
        radial-gradient(circle, rgba(7, 140, 140, 0.18) 0 9%, transparent 9.5% 100%),
        repeating-radial-gradient(circle at center, rgba(7, 140, 140, 0.16) 0 2px, transparent 2px 92px),
        linear-gradient(180deg, #ffffff, #e9fbfb);
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.radar-user {
    width: 118px;
    height: 118px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand), var(--brand-blue));
    color: white;
    display: grid;
    place-items: center;
    font-weight: 900;
    border: 10px solid white;
    box-shadow: 0 24px 60px rgba(7, 140, 140, 0.28);
}

.radar-user.small {
    width: 82px;
    height: 82px;
    font-size: 0.9rem;
}

.provider-bubble,
.mini-provider {
    position: absolute;
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 13px 14px;
    box-shadow: 0 18px 45px rgba(16, 42, 67, 0.14);
    display: grid;
    min-width: 155px;
}

.provider-bubble span,
.mini-provider {
    color: var(--brand-dark);
    font-size: 0.82rem;
    font-weight: 800;
}

.bubble-1 { top: 120px; left: 48%; }
.bubble-2 { top: 230px; left: 22px; }
.bubble-3 { bottom: 155px; left: 35px; }
.bubble-4 { bottom: 95px; right: 30px; }

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 26px 0;
}

.feature-grid article,
.section-panel,
.provider-card,
.auth-card,
.dashboard-card,
.detail-card,
.radar-panel,
.empty-state {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 24px;
}

.feature-icon {
    font-size: 2rem;
    display: inline-block;
    margin-bottom: 14px;
}

.section-panel {
    margin-top: 22px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
}

.section-panel.vertical {
    display: block;
}

.page-header {
    padding: 45px 0 20px;
}

.page-header p {
    max-width: 720px;
    font-size: 1.12rem;
}

.filter-bar {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 12px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px;
    box-shadow: var(--shadow);
    margin-bottom: 22px;
}

.providers-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 20px;
    align-items: start;
}

.mini-radar {
    height: 420px;
    border-radius: 28px;
    background:
        repeating-radial-gradient(circle at center, rgba(7, 140, 140, 0.16) 0 2px, transparent 2px 76px),
        linear-gradient(180deg, #ffffff, #e9fbfb);
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.mini-provider {
    min-width: auto;
}

.mini-1 { top: 70px; left: 44%; }
.mini-2 { top: 155px; left: 30px; }
.mini-3 { top: 185px; right: 28px; }
.mini-4 { bottom: 85px; left: 70px; }
.mini-5 { bottom: 55px; right: 75px; }

.provider-list {
    display: grid;
    gap: 14px;
}

.provider-card {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 16px;
}

.provider-avatar,
.large-avatar {
    border-radius: 24px;
    background: linear-gradient(135deg, var(--brand), var(--brand-blue));
    color: white;
    display: grid;
    place-items: center;
    font-weight: 950;
    font-size: 1.4rem;
    box-shadow: 0 12px 30px rgba(8, 118, 216, 0.2);
}

.provider-avatar {
    width: 72px;
    height: 72px;
}

.large-avatar {
    width: 132px;
    height: 132px;
    font-size: 3rem;
}

.provider-topline {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: start;
}

.provider-meta {
    margin: 7px 0;
    color: var(--brand-dark);
    font-weight: 800;
}

.badge,
.availability {
    display: inline-flex;
    align-items: center;
    padding: 7px 10px;
    border-radius: 999px;
    background: var(--surface-soft);
    color: var(--brand-dark);
    font-weight: 850;
    font-size: 0.82rem;
}

.verified,
.available_now,
.available_today {
    background: rgba(16, 166, 106, 0.12);
    color: var(--success);
}

.busy {
    background: rgba(224, 161, 0, 0.14);
    color: #966b00;
}

.offline {
    background: #edf0f3;
    color: #64748b;
}

.provider-profile {
    padding-top: 40px;
}

.profile-hero-card {
    background: linear-gradient(135deg, var(--brand-dark), var(--brand-blue));
    color: white;
    border-radius: 34px;
    padding: 30px;
    display: grid;
    grid-template-columns: 132px 1fr;
    gap: 24px;
    align-items: center;
    box-shadow: var(--shadow);
}

.profile-hero-card p,
.profile-hero-card .eyebrow {
    color: rgba(255,255,255,0.86);
}

.profile-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 16px;
}

.profile-grid,
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 20px;
}

.full {
    width: 100%;
}

.auth-page {
    display: grid;
    place-items: center;
    padding: 40px 0;
}

.auth-card {
    width: min(560px, 100%);
}

.auth-card.wide {
    width: min(820px, 100%);
}

.form {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

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

.full-span {
    grid-column: 1 / -1;
}

.notice {
    border-radius: 18px;
    padding: 13px 15px;
    margin: 16px 0;
    font-weight: 800;
}

.notice.success {
    background: rgba(16, 166, 106, 0.12);
    color: var(--success);
}

.notice.error {
    background: rgba(194, 65, 59, 0.12);
    color: var(--danger);
}

.hidden-field {
    position: absolute;
    left: -10000px;
    opacity: 0;
}

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

.request-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    border-top: 1px solid var(--border);
}

.site-footer {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 28px;
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: var(--muted);
}

.footer-links {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

@media (max-width: 880px) {
    .site-header {
        border-radius: 24px;
        align-items: flex-start;
    }

    .menu-toggle {
        display: block;
    }

    .site-nav {
        display: none;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        margin: 0 8px;
        padding: 12px;
        border: 1px solid var(--border);
        border-radius: 24px;
        background: white;
        box-shadow: var(--shadow);
    }

    .site-nav.open {
        display: grid;
    }

    .site-nav a {
        width: 100%;
    }

    .hero,
    .providers-layout,
    .profile-grid,
    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .search-card,
    .filter-bar,
    .form.two-col {
        grid-template-columns: 1fr;
    }

    .phone-mockup {
        min-height: 560px;
    }

    .radar {
        min-height: 525px;
    }

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

    .section-panel,
    .site-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .profile-hero-card {
        grid-template-columns: 1fr;
    }

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

@media (display-mode: standalone) {
    .site-header {
        margin-top: 8px;
    }
}

.powered-by {
    margin-top: 6px;
    font-size: 0.92rem;
}

.powered-by a {
    color: var(--brand-dark);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-links {
    align-items: center;
}

.footer-links .powered-by {
    flex-basis: 100%;
    margin: 2px 0 0;
    font-size: 0.92rem;
    color: var(--muted);
}

.footer-links .powered-by a {
    color: var(--brand-dark);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.about-hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: center;
    padding: 54px 0 30px;
}

.about-hero-copy h1 {
    max-width: 920px;
}

.founder-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--border);
    border-radius: 34px;
    box-shadow: var(--shadow);
    padding: 18px;
    display: grid;
    gap: 18px;
}

.founder-photo {
    aspect-ratio: 1 / 1;
    border-radius: 28px;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(8, 118, 216, 0.22), transparent 16rem),
        linear-gradient(135deg, var(--surface-soft), #ffffff);
    display: grid;
    place-items: center;
}

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

/* Fallback if image is missing */
.founder-photo::before {
    content: "PD";
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 38px;
    background: linear-gradient(135deg, var(--brand), var(--brand-blue));
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 950;
    font-size: 2.6rem;
    z-index: -1;
}

.story-section {
    margin: 24px 0;
}

.story-card.large {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--border);
    border-radius: 34px;
    box-shadow: var(--shadow);
    padding: clamp(24px, 5vw, 48px);
}

.story-card p {
    font-size: 1.08rem;
    max-width: 920px;
}

.story-card blockquote {
    margin: 28px 0;
    padding: 24px;
    border-left: 6px solid var(--brand);
    background: var(--surface-soft);
    border-radius: 0 24px 24px 0;
    font-size: clamp(1.35rem, 3vw, 2.1rem);
    line-height: 1.15;
    letter-spacing: -0.045em;
    font-weight: 900;
    color: var(--text);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 24px 0;
}

.mission-grid article,
.steps-grid article {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 24px;
}

.founder-message {
    align-items: flex-start;
}

.founder-message p {
    max-width: 960px;
}

.how-it-works-about {
    margin-top: 34px;
}

.page-header.compact {
    padding: 10px 0 18px;
}

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

.steps-grid article span {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--brand), var(--brand-blue));
    color: white;
    display: grid;
    place-items: center;
    font-weight: 950;
    margin-bottom: 18px;
}

.steps-grid h3 {
    font-size: 1.45rem;
}

.about-cta {
    margin-top: 26px;
    background: linear-gradient(135deg, var(--brand-dark), var(--brand-blue));
    color: white;
    border-radius: 34px;
    padding: clamp(24px, 5vw, 44px);
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    box-shadow: var(--shadow);
}

.about-cta p,
.about-cta .eyebrow {
    color: rgba(255, 255, 255, 0.86);
}

.about-cta h2 {
    color: white;
}

.about-cta .secondary-link {
    background: rgba(255, 255, 255, 0.14);
    color: white;
    border-color: rgba(255, 255, 255, 0.28);
}

@media (max-width: 880px) {
    .about-hero,
    .mission-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .about-cta {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* About page founder story */
.about-hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: center;
    padding: 54px 0 30px;
}

.about-hero-copy h1 {
    max-width: 920px;
}

.founder-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--border);
    border-radius: 34px;
    box-shadow: var(--shadow);
    padding: 18px;
    display: grid;
    gap: 18px;
}

.founder-photo {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 28px;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(8, 118, 216, 0.22), transparent 16rem),
        linear-gradient(135deg, var(--surface-soft), #ffffff);
    display: grid;
    place-items: center;
}

.founder-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 2;
}

.founder-initials {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 38px;
    background: linear-gradient(135deg, var(--brand), var(--brand-blue));
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 950;
    font-size: 2.6rem;
    z-index: 1;
}

.story-section {
    margin: 24px 0;
}

.story-card.large {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--border);
    border-radius: 34px;
    box-shadow: var(--shadow);
    padding: clamp(24px, 5vw, 48px);
}

.story-card p {
    font-size: 1.08rem;
    max-width: 920px;
}

.story-card blockquote {
    margin: 28px 0;
    padding: 24px;
    border-left: 6px solid var(--brand);
    background: var(--surface-soft);
    border-radius: 0 24px 24px 0;
    font-size: clamp(1.35rem, 3vw, 2.1rem);
    line-height: 1.15;
    letter-spacing: -0.045em;
    font-weight: 900;
    color: var(--text);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 24px 0;
}

.mission-grid article,
.steps-grid article {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 24px;
}

.founder-message {
    align-items: flex-start;
}

.founder-message p {
    max-width: 960px;
}

.how-it-works-about {
    margin-top: 34px;
}

.page-header.compact {
    padding: 10px 0 18px;
}

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

.steps-grid article span {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--brand), var(--brand-blue));
    color: white;
    display: grid;
    place-items: center;
    font-weight: 950;
    margin-bottom: 18px;
}

.steps-grid h3 {
    font-size: 1.45rem;
}

.about-cta {
    margin-top: 26px;
    background: linear-gradient(135deg, var(--brand-dark), var(--brand-blue));
    color: white;
    border-radius: 34px;
    padding: clamp(24px, 5vw, 44px);
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    box-shadow: var(--shadow);
}

.about-cta p,
.about-cta .eyebrow {
    color: rgba(255, 255, 255, 0.86);
}

.about-cta h2 {
    color: white;
}

.about-cta .secondary-link {
    background: rgba(255, 255, 255, 0.14);
    color: white;
    border-color: rgba(255, 255, 255, 0.28);
}

@media (max-width: 880px) {
    .about-hero,
    .mission-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .about-cta {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Dark footer inspired by modern startup/app landing pages */
.site-footer.dark-footer {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 56px max(24px, calc((100vw - 1180px) / 2)) 34px;
    background: #101928;
    color: rgba(255, 255, 255, 0.86);
    border-top: 0;
    display: block;
}

.dark-footer .footer-main {
    display: grid;
    grid-template-columns: 1.05fr 1fr 0.75fr;
    gap: 48px;
    align-items: start;
    padding-bottom: 46px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.dark-footer .footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 950;
    letter-spacing: -0.04em;
    font-size: 1.55rem;
    margin-bottom: 10px;
}

.dark-footer .brand-mark {
    background: linear-gradient(135deg, #0fb7a8, #4f8ff7);
    box-shadow: none;
}

.dark-footer .brand-text span {
    color: #16d6c4;
}

.dark-footer p {
    color: rgba(255, 255, 255, 0.62);
    margin: 8px 0 0;
}

.dark-footer h2 {
    color: #fff;
    font-size: 1.45rem;
    margin-bottom: 12px;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 34px;
}

.footer-nav a,
.footer-social,
.footer-bottom a {
    color: rgba(255, 255, 255, 0.88);
    font-weight: 800;
}

.footer-nav a:hover,
.footer-social:hover,
.footer-bottom a:hover {
    color: #16d6c4;
}

.footer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.footer-button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 12px 18px;
    font-weight: 900;
}

.footer-button.primary {
    background: linear-gradient(135deg, #0fb7a8, #4f8ff7);
    color: #fff;
}

.footer-button.secondary {
    background: rgba(255, 255, 255, 0.09);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-social {
    margin-top: 20px;
    width: fit-content;
    display: inline-flex;
    border-radius: 16px;
    padding: 13px 16px;
    background: rgba(255, 255, 255, 0.09);
}

.footer-bottom {
    text-align: center;
    padding-top: 28px;
}

.footer-bottom p {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
    text-decoration: underline;
    text-underline-offset: 4px;
}

@media (max-width: 880px) {
    .site-footer.dark-footer {
        padding: 42px 20px 28px;
    }

    .dark-footer .footer-main {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .footer-nav {
        gap: 16px;
    }

    .footer-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .footer-button {
        width: 100%;
    }

    .footer-bottom {
        text-align: left;
    }
}

/* Footer refinements */
.dark-footer .footer-action-block p {
    max-width: 420px;
}

.dark-footer .footer-follow-block p,
.dark-footer .footer-social {
    display: none;
}

.social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

.social-icons a {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.09);
    color: rgba(255, 255, 255, 0.92);
    display: grid;
    place-items: center;
    font-weight: 950;
    font-size: 0.95rem;
    letter-spacing: -0.02em;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-icons a:hover {
    background: linear-gradient(135deg, #0fb7a8, #4f8ff7);
    color: #fff;
}

.footer-bottom a {
    text-decoration: none !important;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 900;
}

.footer-bottom a:hover {
    color: #16d6c4;
    text-decoration: none !important;
}
