﻿@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Open+Sans:wght@600;700&family=Sora:wght@600;700;800&display=swap");

:root {
    --ifc-orange-1: #fd6a2f;
    --ifc-orange-2: #fb8f34;
    --ifc-orange-3: #fcb245;
    --ifc-dark-1: #111111;
    --ifc-dark-2: #23263a;
    --ifc-dark-3: #2f3147;
    --ifc-slate-1: #1f2233;
    --ifc-slate-2: #5a6278;
    --ifc-slate-3: #8f95ad;
    --ifc-slate-4: #aeb4ca;
    --ifc-slate-5: #d2d8ea;
    --ifc-bg-soft: #f5f5f7;
    --ifc-bg-card: #f7f7fa;
    --ifc-border: rgba(0, 0, 0, 0.08);
    --ifc-shadow: 0 16px 50px rgba(12, 18, 38, 0.06);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

img {
    display: block;
    max-width: 100%;
}

.ifc-public {
    font-family: "Manrope", sans-serif;
    color: var(--ifc-slate-1);
    background: #ffffff;
    line-height: 1.6;
}

    .ifc-public h1,
    .ifc-public h2,
    .ifc-public h3,
    .ifc-public h4 {
        margin: 0;
        font-family: "Sora", sans-serif;
        letter-spacing: -0.02em;
    }

    .ifc-public p,
    .ifc-public ul,
    .ifc-public ol {
        margin: 0;
    }

    .ifc-public a {
        text-decoration: none;
    }

.ifc-container {
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
}

/* Shared brand */
.ifc-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.ifc-brand__icon {
    width: 40px;
    height: 40px;
    border-radius: 0.75rem;
    background: #ffffff;
    padding: 4px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}

.ifc-brand__text {
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    font-size: clamp(1.5rem, 4vw, 2rem);
    line-height: 1;
    letter-spacing: 0;
}

/* Home */
.ifc-home {
    background: #ffffff;
    color: #1f1f1f;
}

.ifc-topnav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 30;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(8px);
}

.ifc-topnav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
    padding: 0.75rem 0;
}

.ifc-topnav .ifc-brand__text {
    color: #ffffff;
}

.ifc-topnav__links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ifc-topnav__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(0, 0, 0, 0.2);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
    transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.ifc-topnav__link--lang {
    min-width: 2.5rem;
    padding-right: 0.65rem;
    padding-left: 0.65rem;
}

.ifc-topnav__link.is-active {
    background: #111111;
    border-color: rgba(255, 255, 255, 0.6);
    color: #ffffff;
}

.ifc-topnav__link:hover {
    border-color: rgba(255, 255, 255, 0.7);
    background: rgba(0, 0, 0, 0.35);
    color: #ffffff;
}

.ifc-hero {
    background: linear-gradient(135deg, var(--ifc-orange-1), var(--ifc-orange-2), var(--ifc-orange-3));
    padding: 5.5rem 0 3rem;
    color: #000000;
}

.ifc-hero__grid {
    display: grid;
    gap: 2.5rem;
    align-items: center;
}

.ifc-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.55);
}

.ifc-title {
    margin-top: 0.5rem;
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1.08;
    color: #000000;
}

.ifc-lead {
    margin-top: 1rem;
    max-width: 40rem;
    font-size: clamp(1rem, 2.8vw, 1.125rem);
    line-height: 1.75;
    color: rgba(0, 0, 0, 0.78);
}

.ifc-cta-row {
    margin-top: 1.75rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.ifc-store-link {
    display: inline-flex;
    border-radius: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.18);
    background: rgba(255, 255, 255, 0.82);
    padding: 0.35rem;
    transition: background-color 0.18s ease;
}

    .ifc-store-link:hover {
        background: #ffffff;
    }

    .ifc-store-link img {
        width: auto;
        height: 54px;
    }

.ifc-webapp-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    border: 3px solid #ffffff;
    background: #111111;
    color: #ffffff !important;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
    transition: background-color 0.18s ease, transform 0.12s ease;
}

    .ifc-webapp-link:hover {
        background: #000000;
        color: #ffffff !important;
        transform: translateY(-1px);
    }

.ifc-hero__preview {
    width: min(560px, 100%);
    margin: 0 auto;
}

    .ifc-hero__preview img {
        width: 100%;
        height: auto;
        object-fit: contain;
        filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    }

.ifc-section {
    padding: 3.5rem 0;
}

.ifc-section__grid {
    display: grid;
    gap: 2.5rem;
    align-items: start;
}

.ifc-subtitle {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    color: #000000;
}

.ifc-text {
    margin-top: 1rem;
    color: rgba(0, 0, 0, 0.72);
    line-height: 1.8;
}

    .ifc-text + .ifc-text {
        margin-top: 1.65rem;
    }

.ifc-list {
    margin-top: 1rem;
    padding-left: 1.15rem;
    color: rgba(0, 0, 0, 0.72);
}

    .ifc-list li {
        margin-top: 0.75rem;
    }

    .ifc-list strong {
        color: #000000;
    }

.ifc-shot-grid {
    display: grid;
    gap: 1rem;
}

.ifc-shot {
    width: 100%;
    border-radius: 0.75rem;
    object-fit: cover;
}

.ifc-shot--tall {
    aspect-ratio: 277 / 600;
    min-height: 18rem;
}

.ifc-shot--feature {
    aspect-ratio: 277 / 600;
    width: min(260px, 100%);
    margin: 0 auto;
    object-fit: cover;
}

.ifc-section__grid--feature {
    align-items: start;
}

.ifc-footer {
    border-top: 1px solid var(--ifc-dark-3);
    background: var(--ifc-dark-2);
    color: var(--ifc-slate-3);
}

.ifc-footer__grid {
    display: grid;
    gap: 1.5rem;
    padding: 2.5rem 0;
}

.ifc-footer h3 {
    font-size: 1.25rem;
    color: var(--ifc-slate-4);
}

.ifc-footer p {
    margin-top: 0.5rem;
    font-size: 0.95rem;
    color: var(--ifc-slate-3);
}

.ifc-footer a {
    color: var(--ifc-slate-5);
    text-decoration: none;
}

    .ifc-footer a:hover {
        text-decoration: underline;
    }

.ifc-footer__copyright {
    border-top: 1px solid var(--ifc-dark-3);
    padding: 1rem 0;
    text-align: center;
    font-size: 0.75rem;
}

/* Legal */
.ifc-legal {
    min-height: 100vh;
    background: var(--ifc-bg-soft);
    color: var(--ifc-slate-1);
}

.ifc-legal-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
}

.ifc-legal-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
    padding: 0.75rem 0;
}

.ifc-legal-nav .ifc-brand__text {
    color: var(--ifc-dark-2);
}

.ifc-lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #ffffff;
}

    .ifc-lang-switch a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 2.5rem;
        padding: 0.45rem 0.75rem;
        border-radius: 999px;
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        text-decoration: none;
        color: #5f677f;
    }

        .ifc-lang-switch a.is-active {
            background: #111111;
            color: #ffffff;
        }

.ifc-legal-hero {
    background: linear-gradient(135deg, var(--ifc-orange-1), var(--ifc-orange-2), var(--ifc-orange-3));
    color: #000000;
}

.ifc-legal-hero__inner {
    padding: 3.5rem 0;
}

.ifc-legal-desc {
    margin-top: 0.85rem;
    max-width: 48rem;
    font-size: clamp(1rem, 2.8vw, 1.125rem);
    line-height: 1.75;
    color: rgba(0, 0, 0, 0.78);
}

.ifc-legal-main {
    width: min(900px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 2rem 0 2.75rem;
}

.ifc-legal-stack {
    display: grid;
    gap: 1.5rem;
}

.ifc-legal-card {
    scroll-margin-top: 96px;
    border: 1px solid var(--ifc-border);
    border-radius: 1.75rem;
    background: #ffffff;
    box-shadow: var(--ifc-shadow);
    padding: 1.35rem;
}

    .ifc-legal-card h2 {
        font-size: clamp(1.5rem, 4vw, 1.9rem);
        color: var(--ifc-dark-2);
    }

    .ifc-legal-card > p {
        margin-top: 0.85rem;
        color: var(--ifc-slate-2);
        line-height: 1.75;
    }

.ifc-legal-blocks {
    margin-top: 1.15rem;
    display: grid;
    gap: 0.85rem;
}

.ifc-legal-block {
    border-radius: 1rem;
    background: var(--ifc-bg-card);
    padding: 0.95rem;
}

    .ifc-legal-block h3 {
        font-size: 1.05rem;
        color: var(--ifc-dark-2);
    }

    .ifc-legal-block p {
        margin-top: 0.55rem;
        font-size: 0.95rem;
        line-height: 1.7;
        color: var(--ifc-slate-2);
    }

        .ifc-legal-block p + p {
            margin-top: 0.55rem;
        }

    .ifc-legal-block a {
        color: #243f8f;
    }

        .ifc-legal-block a:hover {
            text-decoration: underline;
        }

/* Responsive */
@media (min-width: 900px) {
    .ifc-hero {
        padding-top: 6.5rem;
        padding-bottom: 3.5rem;
    }

    .ifc-hero__grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .ifc-section__grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .ifc-shot-grid {
        grid-template-columns: 1fr 1fr;
    }

        .ifc-shot-grid .ifc-shot--tall {
            width: 100%;
            max-width: none;
            margin: 0;
        }

    .ifc-section__grid--feature {
        grid-template-columns: minmax(240px, 260px) minmax(0, 1fr);
        gap: 3rem;
    }

        .ifc-section__grid--feature .ifc-shot--feature {
            width: 100%;
            max-width: 260px;
            margin: 0;
        }

    .ifc-footer__grid {
        grid-template-columns: 1fr 1fr 1fr;
        align-items: start;
    }

        .ifc-footer__grid .ifc-footer__contact {
            text-align: right;
        }

    .ifc-legal-card {
        padding: 1.75rem;
    }

    .ifc-legal-block {
        padding: 1.05rem 1.1rem;
    }
}

@media (max-width: 899px) {
    .ifc-shot--tall {
        width: min(260px, 100%);
        margin: 0 auto;
    }
}

@media (max-width: 560px) {
    .ifc-topnav__links {
        display: none;
    }

    .ifc-lang-switch {
        gap: 0.2rem;
        padding: 0.2rem;
    }

        .ifc-lang-switch a {
            min-width: 2.1rem;
            padding: 0.35rem 0.5rem;
            font-size: 0.68rem;
        }

    .ifc-legal-main {
        padding-top: 1.5rem;
    }
}
