/* ============================================================
   1. RESET & BASE
   ============================================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.5;
    overflow-x: hidden;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

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

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

ul,
ol {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
p {
    margin-top: 0;
}

p {
    margin-bottom: 0;
}

/* ============================================================
   2. DESIGN TOKENS
   ============================================================ */

:root {
    /* Layout */
    --container-width: 1440px;
    --container-padding: 24px;
    --header-height: 74px;
    --section-space-y: clamp(40px, 6vw, 72px);

    /* Colors — global */
    --color-bg: #ffffff;
    --color-surface: #f7f8fb;
    --color-surface-2: #eef1f6;
    --color-text: #20242f;
    --color-text-muted: #5f6675;
    --color-text-light: #7b8392;
    --color-border: rgba(20, 28, 45, 0.08);

    --header-bg: #f3f4f8;
    --accent: #1f6fff;
    --accent-hover: #165de0;
    --white: #ffffff;

    /* Colors — hero palette */
    --hero-bg: #f4f5fa;
    --hero-card-bg: #eceff7;
    --hero-box-bg: #f8f8f9;
    --hero-text: #0f172d;
    --hero-text-muted: #4b5565;
    --hero-blue: #1565d8;
    --hero-blue-soft: #d9e7ff;
    --hero-green: #16a34a;
    --hero-line: #cfd8ee;
    --hero-shadow: 0 30px 70px rgba(15, 23, 45, 0.08);

    /* Radii */
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 999px;

    /* Shadows */
    --shadow-soft: 0 12px 30px rgba(17, 24, 39, 0.06);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.25s ease;
}

@media (max-width: 768px) {
    :root {
        --container-padding: 16px;
        --header-height: 68px;
        --section-space-y: 32px;
    }
}

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */

.eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-text-light);
}

h1 {
    margin-bottom: 20px;
    font-size: clamp(2.2rem, 5vw, 4.8rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: var(--color-text);
}

h2 {
    margin-bottom: 14px;
    font-size: clamp(1.8rem, 3.2vw, 3rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--color-text);
}

h3 {
    margin-bottom: 12px;
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    line-height: 1.15;
    color: var(--color-text);
}

p {
    color: var(--color-text-muted);
    font-size: 1rem;
}

@media (max-width: 480px) {
    h1 { line-height: 1; }
    h2 { line-height: 1.1; }
}

/* ============================================================
   4. GLOBAL LAYOUT
   ============================================================ */

.site-shell {
    width: 100%;
    min-height: 100vh;
}

.site-main {
    width: 100%;
}

.site-main > section {
    width: 100%;
}

.container {
    width: 100%;
    max-width: calc(var(--container-width) + (var(--container-padding) * 2));
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.section {
    padding: 96px 0;
}

.section-head {
    margin-bottom: 32px;
}

.section-screen {
    min-height: calc(100svh - var(--header-height));
    display: flex;
    align-items: center;
    padding-top: var(--section-space-y);
    padding-bottom: var(--section-space-y);
}

.section-screen > .container {
    width: 100%;
}

@supports not (height: 100svh) {
    .section-screen {
        min-height: calc(100vh - var(--header-height));
    }
}

@media (max-width: 1024px) {
    .section {
        padding: 72px 0;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 56px 0;
    }

    .section-screen {
        align-items: center;
    }
}

/* ============================================================
   5. BUTTONS
   ============================================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: var(--radius-pill);
    border: 1px solid transparent;
    transition:
        transform var(--transition-fast),
        opacity var(--transition-fast),
        background var(--transition-fast),
        border-color var(--transition-fast);
}

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

.btn-primary {
    background: var(--accent);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--accent-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text);
    border-color: var(--color-border);
}

.btn-secondary:hover {
    background: var(--color-surface);
}

.btn-primary-main,
.btn-secondary-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 30px;
    border-radius: 14px;
    font-size: 1.05rem;
    font-weight: 700;
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease;
    white-space: nowrap;
}

.btn-primary-main {
    color: #ffffff;
    background: linear-gradient(180deg, #1d6ee8 0%, #115fd4 100%);
    box-shadow: 0 14px 28px rgba(21, 101, 216, 0.22);
}

.btn-primary-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 38px rgba(21, 101, 216, 0.32);
}

.btn-secondary-main {
    color: var(--hero-blue);
    background: #dfe5f7;
}

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

@media (max-width: 768px) {
    .btn {
        width: 100%;
    }

    .btn-primary-main,
    .btn-secondary-main {
        width: 100%;
        min-height: 54px;
    }
}

/* ============================================================
   6. NAVBAR
   ============================================================ */

.site-header {
    position: relative;
    width: 100%;
    background: var(--header-bg);
    border-bottom: 1px solid rgba(20, 28, 45, 0.04);
}

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    min-height: 74px;
    gap: 24px;
}

.brand {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 1;
    color: var(--color-text);
    white-space: nowrap;
}

.main-nav {
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
    list-style: none;
}

.nav-list a {
    position: relative;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-muted);
    transition: color var(--transition-base);
    white-space: nowrap;
}

.nav-list a:hover {
    color: var(--color-text);
}

.nav-list a.active {
    color: var(--accent);
    font-weight: 600;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 22px;
}

.login-link {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--color-text-muted);
    transition: color var(--transition-base);
    white-space: nowrap;
}

.login-link:hover {
    color: var(--color-text);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 10px;
    background: var(--accent);
    color: var(--white);
    font-size: 0.88rem;
    font-weight: 600;
    white-space: nowrap;
    transition:
        transform var(--transition-base),
        background var(--transition-base),
        opacity var(--transition-base);
}

.cta-button:hover {
    transform: translateY(-1px);
    background: var(--accent-hover);
}

@media (max-width: 1024px) {
    .header-inner {
        grid-template-columns: auto 1fr auto;
        gap: 18px;
    }

    .nav-list {
        gap: 22px;
    }

    .nav-list a {
        font-size: 0.84rem;
    }

    .login-link,
    .cta-button {
        font-size: 0.84rem;
    }
}

@media (max-width: 768px) {
    .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 68px;
    }

    .brand {
        font-size: 1.7rem;
    }

    .main-nav,
    .login-link,
    .cta-button {
        display: none;
    }
}

/* ============================================================
   7. MOBILE MENU
   ============================================================ */

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 4px auto;
    background: var(--color-text);
    border-radius: 999px;
    transition: var(--transition-base);
}

.mobile-menu {
    display: none;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: inline-block;
    }

    .mobile-menu {
        display: none;
        padding: 0 16px 18px;
        background: var(--header-bg);
        border-top: 1px solid rgba(20, 28, 45, 0.05);
    }

    .mobile-menu.is-open {
        display: block;
    }

    .mobile-nav-list {
        display: flex;
        flex-direction: column;
        gap: 10px;
        list-style: none;
        padding-top: 14px;
    }

    .mobile-nav-list a {
        display: block;
        padding: 12px 14px;
        border-radius: 10px;
        font-size: 0.95rem;
        font-weight: 500;
        color: var(--color-text-muted);
        background: rgba(255, 255, 255, 0.45);
    }

    .mobile-nav-list a.active {
        color: var(--accent);
        font-weight: 600;
    }

    .mobile-nav-list .mobile-cta {
        background: var(--accent);
        color: var(--white);
        text-align: center;
        font-weight: 600;
    }

    .menu-open .menu-toggle span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .menu-open .menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    .menu-open .menu-toggle span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

/* ============================================================
   8. KEYFRAME ANIMATIONS
   ============================================================ */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
}

@keyframes pulseDot {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
    }
    50% {
        transform: scale(1.2);
        box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
    }
}

@keyframes pulseBadge {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.6; }
}

@keyframes progressFill {
    from { width: 0; }
    to   { width: 84%; }
}

@keyframes shimmer {
    0%, 100% { opacity: 0.45; }
    50%       { opacity: 1; }
}

@keyframes pulseSeal {
    0%, 100% { transform: scale(1); }
    50%       { transform: scale(1.06); }
}

/* ============================================================
   9. SECTION: HERO
   ============================================================ */

.hero-section {
    padding-top: 120px;
    padding-bottom: 120px;
    background: var(--hero-bg);
}

.hero-content {
    max-width: 820px;
}

.hero-content p {
    max-width: 680px;
    font-size: 1.05rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(520px, 592px);
    align-items: center;
    gap: clamp(40px, 6vw, 88px);
}

/* — Copy — */

.hero-copy {
    max-width: 620px;
}

.hero-copy h1 {
    margin: 0 0 28px;
    font-size: clamp(3rem, 6vw, 5.7rem);
    line-height: 0.92;
    letter-spacing: -0.06em;
    font-weight: 800;
    color: var(--hero-text);
    animation: fadeUp 0.7s ease both;
}

.hero-description {
    max-width: 560px;
    margin: 0;
    font-size: clamp(1.05rem, 1.6vw, 1.25rem);
    line-height: 1.45;
    color: var(--hero-text-muted);
    animation: fadeUp 0.7s 0.15s ease both;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 42px;
    animation: fadeUp 0.7s 0.3s ease both;
}

/* — Card — */

.hero-card {
    width: 100%;
    padding: 32px;
    border-radius: 34px;
    background: var(--hero-card-bg);
    border: 1px solid rgba(15, 23, 45, 0.04);
    box-shadow: var(--hero-shadow);
    animation: fadeIn 0.9s 0.25s ease both, floatY 5s 1.5s ease-in-out infinite;
}

.hero-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}

.hero-status {
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-status-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #dfe9ff;
    font-size: 1.1rem;
}

.hero-status-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-status-text span {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #5f6675;
}

.hero-status-text strong {
    font-size: 1.2rem;
    line-height: 1.1;
    color: var(--hero-text);
}

.hero-live-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 16px;
    border-radius: 999px;
    background: #dfe8ff;
    color: var(--hero-blue);
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    white-space: nowrap;
    animation: pulseBadge 2.5s ease-in-out infinite;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 28px;
}

.metric-box {
    min-height: 140px;
    padding: 24px;
    border-radius: 20px;
    background: var(--hero-box-bg);
}

.metric-label {
    display: block;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #5f6675;
}

.metric-value {
    display: block;
    margin-bottom: 8px;
    font-size: clamp(2rem, 2.4vw, 2.55rem);
    font-weight: 800;
    line-height: 1;
    color: var(--hero-text);
}

.metric-value-blue {
    color: var(--hero-blue);
}

.metric-growth {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--hero-green);
}

.metric-note {
    font-size: 0.95rem;
    color: #4b5565;
}

.hero-progress-wrap {
    margin-bottom: 28px;
}

.hero-progress-bar {
    width: 100%;
    height: 8px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: #d3daf0;
    overflow: hidden;
}

.hero-progress-fill {
    width: 84%;
    height: 100%;
    border-radius: inherit;
    background: var(--hero-blue);
    animation: progressFill 1.2s 0.8s ease both;
}

.hero-progress-labels {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 0.96rem;
    color: #4e5564;
}

.hero-verification {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 18px 20px;
    border-radius: 18px;
    background: #e6eaf5;
}

.verification-label {
    font-size: 0.95rem;
    color: #5f6675;
}

.hero-verification strong {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    color: var(--hero-text);
}

.verification-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #22c55e;
    flex: 0 0 auto;
    animation: pulseDot 2s ease-in-out infinite;
}

/* — Hero responsive — */

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-copy {
        max-width: 100%;
    }

    .hero-card {
        max-width: 760px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .hero-grid {
        gap: 28px;
    }

    .hero-copy h1 {
        margin-bottom: 20px;
        font-size: clamp(2.6rem, 12vw, 4.1rem);
        line-height: 0.94;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.5;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        margin-top: 28px;
    }

    .hero-card {
        padding: 22px;
        border-radius: 24px;
    }

    .hero-card-top {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 22px;
    }

    .hero-metrics {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .metric-box {
        min-height: auto;
    }

    .hero-progress-labels {
        font-size: 0.85rem;
        gap: 10px;
    }

    .hero-verification strong {
        font-size: 0.95rem;
        line-height: 1.4;
    }
}

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

    .hero-status-text strong {
        font-size: 1.05rem;
    }

    .metric-value {
        font-size: 2rem;
    }
}

/* ============================================================
   10. SECTION: FACTS
   ============================================================ */

.facts-section {
    background: #f4f5fa;
}

.facts-layout {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.facts-header {
    max-width: 860px;
    margin: 0 auto clamp(36px, 5vw, 64px);
    text-align: center;
}

.facts-title {
    margin: 0 0 20px;
    font-size: clamp(2.4rem, 4.8vw, 4.2rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
    font-weight: 800;
    color: #121a31;
}

.facts-subtitle {
    max-width: 720px;
    margin: 0 auto;
    font-size: clamp(1rem, 1.35vw, 1.25rem);
    line-height: 1.5;
    color: #525a6b;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
}

.facts-card {
    min-height: 348px;
    padding: 38px 34px 34px;
    border-radius: 28px;
    background: #fcfcfd;
    border: 1px solid #dde4f0;
    box-shadow: 0 10px 28px rgba(17, 24, 39, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.facts-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 52px rgba(17, 24, 39, 0.1);
}

.facts-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 28px;
    border-radius: 18px;
    transition: transform 0.3s ease;
}

.facts-card:hover .facts-card-icon {
    transform: scale(1.12);
}

.facts-card-icon svg {
    width: 26px;
    height: 26px;
}

.facts-card-icon--red {
    background: #f8eaea;
    color: #ef3b2d;
}

.facts-card-icon--blue {
    background: #dfe6f4;
    color: #0f5dc6;
}

.facts-card-title {
    margin: 0 0 18px;
    font-size: clamp(1.55rem, 1.8vw, 1.95rem);
    line-height: 1.12;
    letter-spacing: -0.04em;
    font-weight: 800;
    color: #1a2237;
}

.facts-card-text {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.5;
    color: #535b6d;
}

/* — Facts responsive — */

@media (max-width: 1200px) {
    .facts-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .facts-card {
        min-height: 320px;
    }
}

@media (max-width: 768px) {
    .facts-header {
        margin-bottom: 32px;
    }

    .facts-title {
        font-size: clamp(2rem, 10vw, 3.2rem);
        line-height: 1;
    }

    .facts-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }

    .facts-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .facts-card {
        min-height: auto;
        padding: 28px 24px 24px;
        border-radius: 22px;
    }

    .facts-card-icon {
        width: 54px;
        height: 54px;
        margin-bottom: 22px;
        border-radius: 16px;
    }

    .facts-card-title {
        margin-bottom: 14px;
        font-size: 1.9rem;
    }

    .facts-card-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .facts-card-title {
        font-size: 1.7rem;
    }
}

/* ============================================================
   11. SECTION: PRESENCE
   ============================================================ */

.presence-section {
    background: #f4f5fa;
}

.presence-grid {
    display: grid;
    grid-template-columns: minmax(0, 690px) minmax(0, 1fr);
    align-items: center;
    gap: clamp(36px, 5vw, 72px);
}

.presence-visuals {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.presence-top-card {
    padding: 38px 40px;
    border-radius: 34px;
    background: #dfe5f7;
    border: 1px solid #d3dbef;
    box-shadow: 0 18px 44px rgba(17, 24, 39, 0.06);
}

.presence-top-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 34px;
}

.presence-panel-title {
    margin: 0 0 8px;
    font-size: clamp(1.8rem, 2vw, 2.15rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
    font-weight: 800;
    color: #15203a;
}

.presence-panel-subtitle {
    margin: 0;
    font-size: 1rem;
    line-height: 1.45;
    color: #5b6476;
}

.presence-status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 16px;
    border-radius: 999px;
    background: #d6f0db;
    color: #1f8d45;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    white-space: nowrap;
    animation: pulseBadge 2.5s ease-in-out infinite;
}

.presence-stats {
    display: flex;
    align-items: center;
    gap: 34px;
}

.presence-stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.presence-stat strong {
    font-size: clamp(2.6rem, 3vw, 3.5rem);
    line-height: 0.95;
    font-weight: 800;
    color: #19233c;
    letter-spacing: -0.05em;
}

.presence-stat span {
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: #1460d2;
}

.presence-stat-divider {
    width: 1px;
    height: 48px;
    background: #c8d1e9;
    flex: 0 0 auto;
}

.presence-bottom-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.presence-mini-card {
    min-height: 210px;
    padding: 30px 32px;
    border-radius: 28px;
    background: #fcfcfd;
    border: 1px solid #dde4f0;
    box-shadow: 0 18px 42px rgba(17, 24, 39, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.presence-mini-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 62px rgba(17, 24, 39, 0.12);
}

.presence-mini-card--score {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.presence-score-ring {
    position: relative;
    display: grid;
    place-items: center;
    width: 82px;
    height: 82px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: conic-gradient(#0f5dc6 0 300deg, #d7dff1 300deg 360deg);
}

.presence-score-ring::before {
    content: "";
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    background: #fcfcfd;
}

.presence-score-ring-inner {
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    font-weight: 800;
    color: #17213a;
}

.presence-mini-card--score h4 {
    margin: 0 0 8px;
    font-size: 1.05rem;
    line-height: 1.15;
    font-weight: 800;
    color: #1a2237;
}

.presence-mini-card--score p {
    margin: 0;
    font-size: 0.94rem;
    color: #5a6374;
}

.presence-mini-card--search {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.presence-search-top {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 28px;
}

.presence-search-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 14px;
    background: #dfe6f6;
    color: #0f5dc6;
    flex: 0 0 auto;
}

.presence-search-icon svg {
    width: 20px;
    height: 20px;
}

.presence-search-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.presence-search-copy strong {
    font-size: 1rem;
    line-height: 1.1;
    font-weight: 800;
    color: #17213a;
}

.presence-search-copy span {
    font-size: 0.88rem;
    font-weight: 700;
    color: #25a34f;
}

.presence-search-lines {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.presence-search-lines span {
    display: block;
    height: 8px;
    border-radius: 999px;
    background: #e2e7f3;
}

.presence-search-lines span:nth-child(1) {
    width: 100%;
    animation: shimmer 2s 0s ease-in-out infinite;
}

.presence-search-lines span:nth-child(2) {
    width: 76%;
    animation: shimmer 2s 0.35s ease-in-out infinite;
}

.presence-search-lines span:nth-child(3) {
    width: 52%;
    animation: shimmer 2s 0.7s ease-in-out infinite;
}

.presence-content {
    max-width: 560px;
}

.presence-title {
    margin: 0 0 28px;
    font-size: clamp(2.6rem, 4.7vw, 4.2rem);
    line-height: 0.98;
    letter-spacing: -0.06em;
    font-weight: 800;
    color: #121a31;
}

.presence-description {
    margin: 0 0 34px;
    font-size: clamp(1.05rem, 1.35vw, 1.2rem);
    line-height: 1.55;
    color: #505969;
}

.presence-features {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.presence-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.presence-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #dfe6f6;
    color: #0f5dc6;
    flex: 0 0 auto;
    margin-top: 4px;
}

.presence-feature-icon svg {
    width: 14px;
    height: 14px;
}

.presence-feature-copy h4 {
    margin: 0 0 4px;
    font-size: 1.05rem;
    line-height: 1.2;
    font-weight: 800;
    color: #18233c;
}

.presence-feature-copy p {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.5;
    color: #535b6d;
}

/* — Presence responsive — */

@media (max-width: 1100px) {
    .presence-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .presence-content {
        max-width: 760px;
    }

    .presence-visuals {
        max-width: 760px;
    }
}

@media (max-width: 768px) {
    .presence-top-card {
        padding: 28px 24px;
        border-radius: 24px;
    }

    .presence-top-head {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 26px;
    }

    .presence-stats {
        gap: 22px;
    }

    .presence-stat strong {
        font-size: 2.6rem;
    }

    .presence-bottom-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .presence-mini-card {
        min-height: auto;
        padding: 24px;
        border-radius: 22px;
    }

    .presence-title {
        font-size: clamp(2.2rem, 10vw, 3.4rem);
        line-height: 1;
        margin-bottom: 22px;
    }

    .presence-description {
        margin-bottom: 28px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .presence-stats {
        flex-wrap: wrap;
    }

    .presence-stat-divider {
        display: none;
    }

    .presence-panel-title {
        font-size: 1.55rem;
    }

    .presence-feature {
        gap: 12px;
    }
}

/* ============================================================
   12. SECTION: DELIVERABLES
   ============================================================ */

.deliverables-section {
    background: #0d1731;
}

.deliverables-grid {
    display: grid;
    grid-template-columns: minmax(0, 620px) minmax(0, 1fr);
    align-items: center;
    gap: clamp(40px, 6vw, 92px);
}

.deliverables-content {
    max-width: 620px;
}

.deliverables-title {
    margin: 0 0 44px;
    font-size: clamp(2.7rem, 5vw, 5rem);
    line-height: 0.93;
    letter-spacing: -0.06em;
    font-weight: 800;
    color: #ffffff;
}

.deliverables-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.deliverable-card {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    padding: 26px 24px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(165, 180, 220, 0.16);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.deliverable-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(165, 180, 220, 0.28);
    transform: translateX(6px);
}

.deliverable-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #0f66d7;
    color: #ffffff;
    flex: 0 0 auto;
    transition: transform 0.3s ease;
}

.deliverable-card:hover .deliverable-icon {
    transform: scale(1.1);
}

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

.deliverable-copy h3 {
    margin: 0 0 10px;
    font-size: clamp(1.25rem, 1.7vw, 1.75rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    font-weight: 800;
    color: #ffffff;
}

.deliverable-copy p {
    margin: 0;
    max-width: 420px;
    font-size: 1.02rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.62);
}

.deliverables-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.deliverables-paper {
    width: min(100%, 620px);
    padding: 42px 36px 34px;
    border-radius: 42px;
    background: #fdfdfd;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.22);
    transform: rotate(3deg);
    transform-origin: center;
}

.deliverables-paper-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.deliverables-paper-head-left h3 {
    margin: 6px 0 0;
    font-size: clamp(1.8rem, 2vw, 2.3rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
    font-weight: 800;
    color: #18233c;
}

.deliverables-paper-label {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: #0f5dc6;
}

.deliverables-paper-status {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    padding-top: 8px;
}

.deliverables-paper-status span {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: #4d5565;
}

.deliverables-paper-status strong {
    font-size: 1rem;
    font-weight: 800;
    color: #1fa34b;
    letter-spacing: 0.03em;
}

.deliverables-paper-line {
    width: 100%;
    height: 1px;
    margin: 0 0 24px;
    background: #dfe5f1;
}

.deliverables-metric {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 62px;
    padding: 0 18px;
    margin-bottom: 16px;
    border-radius: 16px;
    background: #eef1f9;
}

.deliverables-metric span {
    font-size: 1rem;
    color: #232c41;
}

.deliverables-metric strong {
    font-size: 1.05rem;
    font-weight: 800;
    color: #0f5dc6;
}

.deliverables-dark-value {
    color: #1a2237 !important;
}

.deliverables-stars-box {
    padding: 18px;
    margin-bottom: 24px;
    border-radius: 16px;
    background: #eef1f9;
}

.deliverables-stars-box span {
    display: block;
    margin-bottom: 16px;
    font-size: 1rem;
    color: #232c41;
}

.deliverables-stars {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #0f5dc6;
}

.deliverables-stars svg {
    width: 24px;
    height: 24px;
    flex: 0 0 auto;
}

.deliverables-seal {
    display: flex;
    justify-content: center;
    padding-top: 14px;
}

.deliverables-seal-circle {
    display: grid;
    place-items: center;
    width: 102px;
    height: 102px;
    border-radius: 50%;
    border: 4px dashed #d9e3f2;
    color: #7f899c;
    text-align: center;
    animation: pulseSeal 3s ease-in-out infinite;
}

.deliverables-seal-circle span {
    font-size: 0.72rem;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: 0.03em;
}

/* — Deliverables responsive — */

@media (max-width: 1100px) {
    .deliverables-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .deliverables-content,
    .deliverables-paper {
        max-width: 760px;
    }

    .deliverables-paper {
        transform: rotate(2deg);
    }
}

@media (max-width: 768px) {
    .deliverables-title {
        margin-bottom: 30px;
        font-size: clamp(2.3rem, 11vw, 3.8rem);
        line-height: 0.98;
    }

    .deliverable-card {
        gap: 16px;
        padding: 22px 20px;
        border-radius: 20px;
    }

    .deliverable-icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
    }

    .deliverable-copy h3 {
        font-size: 1.4rem;
    }

    .deliverable-copy p {
        font-size: 0.98rem;
    }

    .deliverables-paper {
        padding: 28px 20px 24px;
        border-radius: 28px;
        transform: none;
    }

    .deliverables-paper-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .deliverables-paper-status {
        align-items: flex-start;
        padding-top: 0;
    }

    .deliverables-metric {
        min-height: 58px;
        padding: 0 14px;
    }

    .deliverables-stars-box {
        padding: 16px 14px;
    }

    .deliverables-stars svg {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 480px) {
    .deliverable-card {
        flex-direction: column;
    }

    .deliverables-paper-head-left h3 {
        font-size: 1.55rem;
    }

    .deliverables-metric span,
    .deliverables-stars-box span {
        font-size: 0.95rem;
    }

    .deliverables-metric strong {
        font-size: 1rem;
    }
}

/* ============================================================
   13. SECTION: PRICING
   ============================================================ */

.pricing-section {
    background: #f4f5fa;
}

.pricing-layout {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pricing-header {
    max-width: 860px;
    margin: 0 auto clamp(34px, 5vw, 58px);
    text-align: center;
}

.pricing-title {
    margin: 0 0 16px;
    font-size: clamp(2.5rem, 4.8vw, 4.2rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
    font-weight: 800;
    color: #121a31;
}

.pricing-subtitle {
    margin: 0;
    font-size: clamp(1rem, 1.3vw, 1.18rem);
    line-height: 1.5;
    color: #535b6c;
}

.pricing-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 32px;
    align-items: stretch;
    max-width: 1024px;
    margin: 0 auto;
    width: 100%;
}

.pricing-card {
    position: relative;
    min-height: 454px;
    padding: 42px 48px 40px;
    border-radius: 34px;
    box-shadow: 0 22px 56px rgba(17, 24, 39, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 38px 82px rgba(17, 24, 39, 0.12);
}

.pricing-card--main {
    background: #fcfcfd;
    border: 1px solid #dce3ef;
}

.pricing-card--secondary {
    background: #e8edf8;
    border: 1px solid #dbe2f0;
}

.pricing-badge {
    position: absolute;
    top: 0;
    right: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 24px;
    padding: 0 16px;
    border-radius: 0 24px 0 20px;
    background: #0f5dc6;
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.pricing-card-title {
    margin: 0 0 18px;
    font-size: clamp(2rem, 2.4vw, 2.55rem);
    line-height: 1.04;
    letter-spacing: -0.05em;
    font-weight: 800;
    color: #17213a;
}

.pricing-price-row {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.pricing-price {
    font-size: clamp(3.2rem, 4vw, 4.6rem);
    line-height: 0.9;
    letter-spacing: -0.06em;
    font-weight: 800;
    color: #17213a;
}

.pricing-currency {
    font-size: 1.9rem;
    line-height: 1;
    font-weight: 500;
    color: #4f5667;
    padding-bottom: 7px;
}

.pricing-extra {
    font-size: 1rem;
    line-height: 1.2;
    font-weight: 500;
    color: #4f5667;
    padding-bottom: 9px;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 22px;
    list-style: none;
    margin: 0 0 34px;
    padding: 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #1f273b;
    font-size: 1.02rem;
    line-height: 1.45;
}

.pricing-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    color: #22b35b;
    flex: 0 0 auto;
}

.pricing-check svg {
    width: 16px;
    height: 16px;
}

.pricing-main-button,
.pricing-secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 58px;
    border-radius: 16px;
    font-size: 1.05rem;
    font-weight: 700;
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

.pricing-main-button {
    background: #0f5dc6;
    color: #ffffff;
}

.pricing-main-button:hover {
    transform: translateY(-1px);
}

.pricing-secondary-subtitle {
    margin: 0 0 26px;
    max-width: 320px;
    font-size: 1rem;
    line-height: 1.45;
    color: #535b6d;
}

.pricing-support-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    list-style: none;
    margin: 0 0 42px;
    padding: 0;
}

.pricing-support-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #1f273b;
    font-size: 1.02rem;
    line-height: 1.45;
}

.pricing-support-list li.is-muted {
    color: #8a92a3;
}

.pricing-support-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    color: #0f5dc6;
    flex: 0 0 auto;
}

.pricing-support-list li.is-muted .pricing-support-icon {
    color: #8fa9d8;
}

.pricing-support-icon svg {
    width: 16px;
    height: 16px;
}

.pricing-secondary-button {
    background: #fcfcfd;
    color: #17213a;
    border: 1px solid #b9c5dd;
}

.pricing-secondary-button:hover {
    transform: translateY(-1px);
}

/* — Pricing responsive — */

@media (max-width: 1100px) {
    .pricing-grid {
        max-width: 760px;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .pricing-header {
        margin-bottom: 30px;
    }

    .pricing-title {
        font-size: clamp(2.2rem, 10vw, 3.5rem);
        line-height: 1;
    }

    .pricing-card {
        min-height: auto;
        padding: 30px 24px 26px;
        border-radius: 24px;
    }

    .pricing-card-title {
        font-size: 1.9rem;
        margin-bottom: 14px;
    }

    .pricing-price {
        font-size: 3.3rem;
    }

    .pricing-currency {
        font-size: 1.5rem;
        padding-bottom: 6px;
    }

    .pricing-extra {
        width: 100%;
        padding-bottom: 0;
        margin-top: -2px;
    }

    .pricing-features,
    .pricing-support-list {
        gap: 18px;
    }

    .pricing-support-list {
        margin-bottom: 30px;
    }

    .pricing-main-button,
    .pricing-secondary-button {
        min-height: 54px;
    }
}

@media (max-width: 480px) {
    .pricing-badge {
        position: static;
        margin-bottom: 18px;
        border-radius: 999px;
        padding: 0 14px;
        width: max-content;
    }

    .pricing-price-row {
        gap: 8px;
    }

    .pricing-price {
        font-size: 3rem;
    }

    .pricing-card-title {
        font-size: 1.7rem;
    }

    .pricing-features li,
    .pricing-support-list li {
        align-items: flex-start;
    }
}

/* ============================================================
   14. SECTION: CONTACT
   ============================================================ */

.contact-final-section {
    background: #f4f5fa;
}

.contact-final-layout {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: clamp(44px, 7vw, 92px);
    min-height: calc(100svh - var(--header-height));
}

.contact-final-top {
    display: grid;
    grid-template-columns: minmax(0, 440px) minmax(0, 680px);
    align-items: start;
    justify-content: space-between;
    gap: clamp(36px, 5vw, 72px);
}

.contact-final-copy {
    max-width: 420px;
}

.contact-final-title {
    margin: 0 0 28px;
    font-size: clamp(2.9rem, 5.4vw, 5.2rem);
    line-height: 0.93;
    letter-spacing: -0.06em;
    font-weight: 800;
    color: #121a31;
}

.contact-final-description {
    margin: 0 0 48px;
    font-size: clamp(1.04rem, 1.4vw, 1.22rem);
    line-height: 1.5;
    color: #535b6d;
}

.contact-final-direct {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-final-direct-item {
    display: flex;
    align-items: center;
    gap: 22px;
}

.contact-final-direct-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: #fcfcfd;
    border: 1px solid #dce3ef;
    color: #0f5dc6;
    box-shadow: 0 12px 28px rgba(17, 24, 39, 0.05);
    flex: 0 0 auto;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-final-direct-icon:hover {
    transform: scale(1.08);
    box-shadow: 0 18px 36px rgba(17, 24, 39, 0.1);
}

.contact-final-direct-icon svg {
    width: 22px;
    height: 22px;
}

.contact-final-direct-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-final-direct-copy span {
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: #4d5566;
}

.contact-final-direct-copy strong {
    font-size: clamp(1.3rem, 1.8vw, 1.95rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    font-weight: 800;
    color: #17213a;
}

.contact-final-form-wrap {
    width: 100%;
}

.contact-final-form {
    width: 100%;
    padding: 44px 48px 38px;
    border-radius: 36px;
    background: #fcfcfd;
    border: 1px solid #dce3ef;
    box-shadow: 0 26px 60px rgba(17, 24, 39, 0.08);
}

.contact-final-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
    margin-bottom: 26px;
}

.contact-final-field {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-final-field label {
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: #4c5465;
}

.contact-final-field input,
.contact-final-field textarea {
    width: 100%;
    border: 0;
    outline: none;
    border-radius: 16px;
    background: #eef1f9;
    color: #17213a;
    font-family: inherit;
    font-size: 1rem;
    line-height: 1.4;
    padding: 0 18px;
    transition: background 0.2s ease;
}

.contact-final-field input:focus,
.contact-final-field textarea:focus {
    background: #e3e8f5;
}

.contact-final-field input {
    min-height: 60px;
}

.contact-final-field textarea {
    min-height: 128px;
    resize: vertical;
    padding-top: 18px;
    padding-bottom: 18px;
}

.contact-final-field input::placeholder,
.contact-final-field textarea::placeholder {
    color: #737b8a;
}

.contact-final-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 68px;
    margin-top: 30px;
    border: 0;
    border-radius: 16px;
    background: #0f5dc6;
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 20px 36px rgba(15, 93, 198, 0.24);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        opacity 0.2s ease;
}

.contact-final-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 28px 48px rgba(15, 93, 198, 0.32);
}

.contact-final-note {
    max-width: 560px;
    margin: 26px auto 0;
    text-align: center;
    font-size: 0.88rem;
    line-height: 1.5;
    color: #646c7d;
}

/* ============================================================
   15. FOOTER
   ============================================================ */

.contact-final-footer {
    display: grid;
    grid-template-columns: minmax(0, 320px) minmax(0, 360px) minmax(0, 1fr);
    align-items: end;
    gap: 32px;
    padding-top: 8px;
}

.contact-final-footer-brand {
    max-width: 320px;
}

.contact-final-footer-logo {
    display: inline-block;
    margin-bottom: 24px;
    font-size: 2rem;
    line-height: 1;
    letter-spacing: -0.04em;
    font-weight: 800;
    color: #17213a;
}

.contact-final-footer-brand p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
    color: #666e7f;
}

.contact-final-footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}

.contact-final-footer-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-final-footer-col span {
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    color: #1f273b;
}

.contact-final-footer-col a {
    font-size: 1rem;
    line-height: 1.4;
    color: #666e7f;
    transition: color 0.2s ease;
}

.contact-final-footer-col a:hover {
    color: #1f273b;
}

.contact-final-footer-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 30px;
}

.contact-final-socials {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-final-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #dfe6f6;
    color: #0f5dc6;
    box-shadow: 0 10px 22px rgba(17, 24, 39, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-final-social:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(17, 24, 39, 0.1);
}

.contact-final-social svg {
    width: 18px;
    height: 18px;
}

.contact-final-footer-meta p {
    margin: 0;
    font-size: 0.94rem;
    line-height: 1.4;
    text-align: right;
    color: #707789;
}

/* — Contact & footer responsive — */

@media (max-width: 1200px) {
    .contact-final-top {
        grid-template-columns: 1fr;
    }

    .contact-final-copy {
        max-width: 760px;
    }

    .contact-final-form-wrap {
        max-width: 860px;
    }

    .contact-final-footer {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .contact-final-footer-meta {
        align-items: flex-start;
    }

    .contact-final-footer-meta p {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .contact-final-layout {
        gap: 48px;
    }

    .contact-final-title {
        font-size: clamp(2.4rem, 12vw, 4.2rem);
        line-height: 0.98;
        margin-bottom: 20px;
    }

    .contact-final-description {
        margin-bottom: 34px;
        font-size: 1rem;
    }

    .contact-final-direct-item {
        gap: 16px;
    }

    .contact-final-direct-icon {
        width: 50px;
        height: 50px;
        border-radius: 16px;
    }

    .contact-final-direct-copy strong {
        font-size: 1.45rem;
    }

    .contact-final-form {
        padding: 28px 22px 24px;
        border-radius: 26px;
    }

    .contact-final-form-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 18px;
    }

    .contact-final-field {
        gap: 10px;
    }

    .contact-final-field input {
        min-height: 56px;
    }

    .contact-final-submit {
        min-height: 58px;
        margin-top: 22px;
        font-size: 1rem;
    }

    .contact-final-note {
        margin-top: 18px;
        font-size: 0.84rem;
    }

    .contact-final-footer-logo {
        margin-bottom: 16px;
        font-size: 1.8rem;
    }

    .contact-final-footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contact-final-footer-meta {
        gap: 18px;
    }
}

@media (max-width: 480px) {
    .contact-final-direct-item {
        align-items: flex-start;
    }

    .contact-final-direct-copy strong {
        font-size: 1.2rem;
    }

    .contact-final-footer-brand p,
    .contact-final-footer-col a,
    .contact-final-footer-meta p {
        font-size: 0.95rem;
    }
}

/* ============================================================
   16. LEGACY UTILITIES
   ============================================================ */

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.card {
    min-height: 220px;
    padding: 24px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-surface);
    box-shadow: var(--shadow-soft);
}

.site-footer {
    border-top: 1px solid var(--color-border);
}

.footer-inner {
    padding-top: 24px;
    padding-bottom: 24px;
}

.footer-inner p {
    font-size: 0.95rem;
    color: var(--color-text-light);
}

@media (max-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .card {
        min-height: 180px;
        padding: 20px;
    }
}

/* ============================================================
   17. ACCESSIBILITY
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
