/* iKash.biz landing — peptides, herbs, pharmacies orchestration */

:root {
    --ik-navy: #0f172a;
    --ik-navy-mid: #1e3a5f;
    --ik-teal: #0d9488;
    --ik-teal-bright: #14b8a6;
    --ik-mint: #5eead4;
    --ik-purple: #5856d6;
    --ik-danger: #f43f5e;
    --ik-warn: #fbbf24;
    --ik-success: #34d399;
    --ik-surface: rgba(255, 255, 255, 0.06);
    --ik-surface-strong: rgba(255, 255, 255, 0.1);
    --ik-border: rgba(255, 255, 255, 0.12);
    --ik-text: #f8fafc;
    --ik-muted: rgba(248, 250, 252, 0.65);
    --ik-font: "DM Sans", system-ui, sans-serif;
    --ik-mono: "JetBrains Mono", ui-monospace, monospace;
    --ik-radius: 1rem;
    --ik-radius-lg: 1.5rem;
}

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

.landing-body {
    margin: 0;
    font-family: var(--ik-font);
    color: var(--ik-text);
    background: var(--ik-navy);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.landing-noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.landing-body main {
    position: relative;
    z-index: 1;
}

/* Nav */
.landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 0;
    transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
}

.landing-nav.is-scrolled {
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--ik-border);
}

.landing-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.landing-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    text-decoration: none;
    color: var(--ik-text);
}

.landing-logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.625rem;
    background: linear-gradient(135deg, var(--ik-teal), var(--ik-purple));
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.02em;
}

.landing-logo-text {
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}

.landing-logo-tld {
    color: var(--ik-mint);
    font-weight: 600;
}

.landing-nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.landing-nav-links a {
    color: var(--ik-muted);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.15s ease;
}

.landing-nav-links a:hover {
    color: var(--ik-text);
}

.landing-nav-cta {
    padding: 0.5rem 1rem !important;
    border-radius: 999px;
    background: var(--ik-teal) !important;
    color: var(--ik-navy) !important;
    font-weight: 600 !important;
}

.landing-nav-cta:hover {
    background: var(--ik-teal-bright) !important;
    color: var(--ik-navy) !important;
}

.landing-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
}

.landing-nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ik-text);
    border-radius: 1px;
}

@media (max-width: 991.98px) {
    .landing-nav-toggle {
        display: flex;
    }

    .landing-nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        padding: 1rem 1.5rem 1.5rem;
        background: rgba(15, 23, 42, 0.98);
        border-bottom: 1px solid var(--ik-border);
    }

    .landing-nav-links.is-open {
        display: flex;
    }
}

/* Buttons */
.landing-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, var(--ik-teal), var(--ik-teal-bright));
    color: var(--ik-navy);
    font-weight: 700;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 24px rgba(13, 148, 136, 0.35);
}

.landing-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(13, 148, 136, 0.45);
    color: var(--ik-navy);
}

.landing-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 999px;
    border: 1px solid var(--ik-border);
    background: transparent;
    color: var(--ik-text);
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.landing-btn-ghost:hover {
    background: var(--ik-surface);
    border-color: rgba(255, 255, 255, 0.25);
    color: var(--ik-text);
}

/* Hero */
.landing-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 7rem 0 4rem;
    overflow: hidden;
}

.landing-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 20%, rgba(13, 148, 136, 0.22), transparent),
        radial-gradient(ellipse 50% 40% at 10% 80%, rgba(88, 86, 214, 0.18), transparent),
        linear-gradient(160deg, var(--ik-navy) 0%, var(--ik-navy-mid) 50%, #0c4a4a 100%);
}

.landing-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, black, transparent);
}

.landing-hero-content {
    position: relative;
    z-index: 2;
}

.landing-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.875rem;
    border-radius: 999px;
    background: var(--ik-surface);
    border: 1px solid var(--ik-border);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--ik-mint);
    margin-bottom: 1.5rem;
}

.landing-pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--ik-success);
    animation: ik-pulse 2s ease infinite;
}

@keyframes ik-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.landing-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.25rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
}

.landing-hero h1 .gradient-text {
    background: linear-gradient(135deg, var(--ik-mint), var(--ik-teal-bright), var(--ik-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.landing-hero-lead {
    font-size: clamp(1.0625rem, 2vw, 1.25rem);
    color: var(--ik-muted);
    max-width: 36rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.landing-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.landing-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.landing-stat strong {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    font-family: var(--ik-mono);
    color: var(--ik-mint);
}

.landing-stat span {
    font-size: 0.8125rem;
    color: var(--ik-muted);
}

/* Hero visual — fail vs success */
.landing-hero-visual {
    position: relative;
}

.landing-ticker-card {
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid var(--ik-border);
    border-radius: var(--ik-radius-lg);
    backdrop-filter: blur(16px);
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}

.landing-ticker-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.25);
    border-bottom: 1px solid var(--ik-border);
    font-family: var(--ik-mono);
    font-size: 0.75rem;
    color: var(--ik-muted);
}

.landing-ticker-dots {
    display: flex;
    gap: 6px;
}

.landing-ticker-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.landing-ticker-dots span:nth-child(1) { background: #f43f5e; }
.landing-ticker-dots span:nth-child(2) { background: #fbbf24; }
.landing-ticker-dots span:nth-child(3) { background: #34d399; }

.landing-ticker-body {
    padding: 1rem;
    min-height: 280px;
}

.landing-tx-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 0.75rem;
    align-items: center;
    padding: 0.75rem;
    border-radius: 0.625rem;
    margin-bottom: 0.5rem;
    font-size: 0.8125rem;
    animation: ik-slide-in 0.5s ease backwards;
}

.landing-tx-row:nth-child(1) { animation-delay: 0.1s; }
.landing-tx-row:nth-child(2) { animation-delay: 0.25s; }
.landing-tx-row:nth-child(3) { animation-delay: 0.4s; }
.landing-tx-row:nth-child(4) { animation-delay: 0.55s; }
.landing-tx-row:nth-child(5) { animation-delay: 0.7s; }

@keyframes ik-slide-in {
    from { opacity: 0; transform: translateX(12px); }
    to { opacity: 1; transform: translateX(0); }
}

.landing-tx-row.fail {
    background: rgba(244, 63, 94, 0.1);
    border: 1px solid rgba(244, 63, 94, 0.25);
}

.landing-tx-row.success {
    background: rgba(52, 211, 153, 0.1);
    border: 1px solid rgba(52, 211, 153, 0.25);
}

.landing-tx-row.pending {
    background: rgba(251, 191, 36, 0.08);
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.landing-tx-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.landing-tx-row.fail .landing-tx-icon { background: rgba(244, 63, 94, 0.2); }
.landing-tx-row.success .landing-tx-icon { background: rgba(52, 211, 153, 0.2); }
.landing-tx-row.pending .landing-tx-icon { background: rgba(251, 191, 36, 0.2); }

.landing-tx-meta {
    min-width: 0;
}

.landing-tx-meta strong {
    display: block;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.landing-tx-meta small {
    color: var(--ik-muted);
    font-family: var(--ik-mono);
    font-size: 0.6875rem;
}

.landing-tx-badge {
    font-family: var(--ik-mono);
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    white-space: nowrap;
}

.landing-tx-row.fail .landing-tx-badge {
    background: rgba(244, 63, 94, 0.2);
    color: #fda4af;
}

.landing-tx-row.success .landing-tx-badge {
    background: rgba(52, 211, 153, 0.2);
    color: #6ee7b7;
}

.landing-tx-row.pending .landing-tx-badge {
    background: rgba(251, 191, 36, 0.2);
    color: #fde68a;
}

.landing-float-badge {
    position: absolute;
    padding: 0.625rem 1rem;
    border-radius: 0.75rem;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid var(--ik-border);
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    animation: ik-float 4s ease-in-out infinite;
}

.landing-float-badge.top-right {
    top: -1rem;
    right: -0.5rem;
    color: var(--ik-danger);
    animation-delay: 0s;
}

.landing-float-badge.bottom-left {
    bottom: 1rem;
    left: -1rem;
    color: var(--ik-success);
    animation-delay: 1.5s;
}

@keyframes ik-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* Sections */
.landing-section {
    padding: 5rem 0;
    position: relative;
}

.landing-section-alt {
    background: linear-gradient(180deg, transparent, rgba(13, 148, 136, 0.04), transparent);
}

.landing-section-header {
    text-align: center;
    max-width: 40rem;
    margin: 0 auto 3.5rem;
}

.landing-section-label {
    display: inline-block;
    font-family: var(--ik-mono);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ik-teal-bright);
    margin-bottom: 0.75rem;
}

.landing-section-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.landing-section-header p {
    color: var(--ik-muted);
    font-size: 1.0625rem;
    line-height: 1.6;
    margin: 0;
}

/* Verticals */
.landing-vertical-card {
    height: 100%;
    padding: 1.75rem;
    border-radius: var(--ik-radius-lg);
    background: var(--ik-surface);
    border: 1px solid var(--ik-border);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.landing-vertical-card:hover {
    transform: translateY(-4px);
    border-color: rgba(13, 148, 136, 0.4);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.landing-vertical-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.landing-vertical-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.landing-vertical-card p {
    color: var(--ik-muted);
    font-size: 0.9375rem;
    line-height: 1.55;
    margin-bottom: 1rem;
}

.landing-vertical-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
}

.landing-vertical-tags span {
    font-size: 0.6875rem;
    font-family: var(--ik-mono);
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    background: rgba(13, 148, 136, 0.15);
    color: var(--ik-mint);
}

/* Failure wall — funny */
.landing-fail-wall {
    display: grid;
    gap: 1rem;
}

.landing-fail-quote {
    padding: 1.25rem 1.5rem;
    border-radius: var(--ik-radius);
    background: rgba(244, 63, 94, 0.06);
    border-left: 3px solid var(--ik-danger);
    font-size: 0.9375rem;
    line-height: 1.55;
}

.landing-fail-quote cite {
    display: block;
    margin-top: 0.5rem;
    font-style: normal;
    font-size: 0.75rem;
    font-family: var(--ik-mono);
    color: var(--ik-muted);
}

.landing-fail-quote.funny {
    background: rgba(251, 191, 36, 0.06);
    border-left-color: var(--ik-warn);
}

/* Compare table */
.landing-compare-wrap {
    overflow-x: auto;
    border-radius: var(--ik-radius-lg);
    border: 1px solid var(--ik-border);
    background: var(--ik-surface);
}

.landing-compare {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.landing-compare th,
.landing-compare td {
    padding: 1rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid var(--ik-border);
    vertical-align: top;
}

.landing-compare th {
    font-weight: 600;
    background: rgba(0, 0, 0, 0.2);
    color: var(--ik-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.landing-compare tr:last-child td {
    border-bottom: none;
}

.landing-compare .col-ikash {
    background: rgba(13, 148, 136, 0.08);
}

.landing-compare .col-ikash th {
    color: var(--ik-mint);
}

.landing-check { color: var(--ik-success); }
.landing-cross { color: var(--ik-danger); }
.landing-meh { color: var(--ik-warn); }

/* Orchestration flow */
.landing-flow {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem 0;
}

.landing-flow-step {
    flex: 0 0 auto;
    text-align: center;
    padding: 1rem;
    max-width: 140px;
}

.landing-flow-icon {
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 auto 0.75rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: var(--ik-surface-strong);
    border: 1px solid var(--ik-border);
}

.landing-flow-step strong {
    display: block;
    font-size: 0.8125rem;
    margin-bottom: 0.25rem;
}

.landing-flow-step span {
    font-size: 0.6875rem;
    color: var(--ik-muted);
    line-height: 1.4;
}

.landing-flow-arrow {
    color: var(--ik-teal);
    font-size: 1.25rem;
    padding: 0 0.25rem;
}

@media (max-width: 767.98px) {
    .landing-flow-arrow { display: none; }
    .landing-flow-step { max-width: 45%; }
}

/* Profit cards */
.landing-profit-card {
    height: 100%;
    padding: 1.5rem;
    border-radius: var(--ik-radius);
    background: linear-gradient(145deg, var(--ik-surface), rgba(13, 148, 136, 0.06));
    border: 1px solid var(--ik-border);
}

.landing-profit-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.landing-profit-card p {
    font-size: 0.875rem;
    color: var(--ik-muted);
    line-height: 1.55;
    margin: 0;
}

.landing-profit-metric {
    font-family: var(--ik-mono);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--ik-mint);
    margin-bottom: 0.25rem;
}

/* CTA */
.landing-cta {
    padding: 4rem 0 6rem;
}

.landing-cta-box {
    text-align: center;
    padding: 3.5rem 2rem;
    border-radius: var(--ik-radius-lg);
    background:
        radial-gradient(ellipse 80% 80% at 50% 120%, rgba(13, 148, 136, 0.25), transparent),
        var(--ik-surface);
    border: 1px solid var(--ik-border);
}

.landing-cta-box h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.landing-cta-box p {
    color: var(--ik-muted);
    max-width: 32rem;
    margin: 0 auto 2rem;
    font-size: 1.0625rem;
}

.landing-cta-joke {
    font-size: 0.875rem;
    color: var(--ik-muted);
    margin-top: 1.5rem !important;
    font-style: italic;
}

/* Footer */
.landing-footer {
    padding: 3rem 0 2rem;
    border-top: 1px solid var(--ik-border);
    background: rgba(0, 0, 0, 0.2);
}

.landing-footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.landing-footer-tagline {
    font-size: 0.875rem;
    color: var(--ik-muted);
    line-height: 1.55;
    max-width: 20rem;
}

.landing-footer h6 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ik-muted);
    margin-bottom: 1rem;
}

.landing-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.landing-footer ul li {
    margin-bottom: 0.5rem;
}

.landing-footer ul a {
    color: var(--ik-muted);
    text-decoration: none;
    font-size: 0.875rem;
}

.landing-footer ul a:hover {
    color: var(--ik-text);
}

.landing-footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--ik-border);
    font-size: 0.8125rem;
    color: var(--ik-muted);
}

.landing-footer-bottom a {
    color: var(--ik-muted);
    text-decoration: none;
}

.landing-footer-bottom a:hover {
    color: var(--ik-text);
}

/* Reveal on scroll */
.landing-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Animated orbs — more life */
.landing-hero-orbs {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.landing-hero-orbs::before,
.landing-hero-orbs::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.45;
    animation: ik-orb-drift 14s ease-in-out infinite alternate;
}

.landing-hero-orbs::before {
    width: 420px;
    height: 420px;
    background: rgba(13, 148, 136, 0.35);
    top: 10%;
    right: 5%;
}

.landing-hero-orbs::after {
    width: 360px;
    height: 360px;
    background: rgba(88, 86, 214, 0.28);
    bottom: 5%;
    left: 0;
    animation-delay: -5s;
}

@keyframes ik-orb-drift {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(24px, -18px) scale(1.08); }
}

.landing-hero-short {
    min-height: auto;
    padding: 8rem 0 3rem;
}

.landing-pill-live {
    animation: ik-pill-glow 3s ease-in-out infinite;
}

@keyframes ik-pill-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
    50% { box-shadow: 0 0 20px 2px rgba(52, 211, 153, 0.15); }
}

.landing-nav-link-muted {
    font-size: 0.8125rem !important;
    opacity: 0.75;
}

/* Contact */
.landing-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
    align-items: start;
}

@media (max-width: 991.98px) {
    .landing-contact-grid {
        grid-template-columns: 1fr;
    }
}

.landing-contact-cards {
    display: grid;
    gap: 0.75rem;
}

.landing-contact-card {
    padding: 1.125rem 1.25rem;
    border-radius: var(--ik-radius);
    background: var(--ik-surface);
    border: 1px solid var(--ik-border);
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.landing-contact-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.landing-contact-card-link:hover {
    border-color: rgba(13, 148, 136, 0.45);
    transform: translateY(-2px);
    color: var(--ik-text);
}

.landing-contact-card-highlight {
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.15), rgba(88, 86, 214, 0.1));
    border-color: rgba(13, 148, 136, 0.35);
}

.landing-contact-card-icon {
    font-size: 1.25rem;
    display: block;
    margin-bottom: 0.375rem;
}

.landing-contact-card strong {
    display: block;
    font-size: 0.9375rem;
    margin-bottom: 0.25rem;
}

.landing-contact-card p {
    margin: 0;
    font-size: 0.8125rem;
    color: var(--ik-muted);
    line-height: 1.45;
}

.landing-contact-email {
    font-family: var(--ik-mono);
    color: var(--ik-mint) !important;
}

.landing-contact-form-wrap {
    padding: 1.75rem;
    border-radius: var(--ik-radius-lg);
    background: rgba(15, 23, 42, 0.65);
    border: 1px solid var(--ik-border);
    backdrop-filter: blur(12px);
}

.landing-contact-form .form-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--ik-muted);
    margin-bottom: 0.35rem;
}

.landing-contact-form .form-control,
.landing-contact-form .form-select {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--ik-border);
    color: var(--ik-text);
    font-size: 0.9375rem;
    border-radius: 0.625rem;
    padding: 0.625rem 0.875rem;
}

.landing-contact-form .form-control:focus,
.landing-contact-form .form-select:focus {
    background: rgba(0, 0, 0, 0.35);
    border-color: var(--ik-teal);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.2);
    color: var(--ik-text);
}

.landing-contact-form .form-select option {
    background: var(--ik-navy);
    color: var(--ik-text);
}

.landing-contact-form-note {
    margin: 0.75rem 0 0;
    font-size: 0.8125rem;
    color: var(--ik-muted);
    text-align: center;
}

.landing-contact-form-note a {
    color: var(--ik-mint);
}

.landing-contact-success {
    text-align: center;
    padding: 2rem 1rem;
}

.landing-contact-success-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: rgba(52, 211, 153, 0.15);
    color: var(--ik-success);
    font-size: 1.5rem;
    line-height: 3rem;
    font-weight: 700;
}

.landing-contact-success h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.landing-contact-success p {
    color: var(--ik-muted);
    font-size: 0.9375rem;
    max-width: 28rem;
    margin: 0 auto;
}

/* Floating contact CTA */
.landing-float-cta {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 90;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--ik-teal), var(--ik-teal-bright));
    color: var(--ik-navy);
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none;
    box-shadow: 0 8px 32px rgba(13, 148, 136, 0.45);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.landing-float-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(13, 148, 136, 0.55);
    color: var(--ik-navy);
}

.landing-float-cta-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 999px;
    border: 2px solid rgba(13, 148, 136, 0.5);
    animation: ik-cta-pulse 2s ease-out infinite;
    pointer-events: none;
}

@keyframes ik-cta-pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.15); opacity: 0; }
}

/* Onboarding steps */
.landing-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 767.98px) {
    .landing-steps { grid-template-columns: 1fr; }
}

.landing-step {
    text-align: center;
    padding: 1.5rem 1rem;
    border-radius: var(--ik-radius);
    background: var(--ik-surface);
    border: 1px solid var(--ik-border);
    position: relative;
}

.landing-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ik-teal), var(--ik-purple));
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.landing-step strong {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 1rem;
}

.landing-step span {
    font-size: 0.8125rem;
    color: var(--ik-muted);
    line-height: 1.45;
}
