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

body, html {
    margin: 0;
    background-color: #fff;
    font-family: 'Inter', system-ui, sans-serif;
    color: #475569;
    -webkit-font-smoothing: antialiased;
}

a {
    color: #f97316;
    text-decoration: none;
    cursor: pointer;
}

a:hover {
    opacity: 0.8;
}

a:active, a:visited {
    text-decoration: none;
}

/* Layout */
.content-wrap {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ── Hero ── */
.hero {
    background: linear-gradient(160deg, #1e293b 0%, #0f172a 100%);
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -160px;
    right: -160px;
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero__topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0 56px;
}

.hero__logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.04em;
    opacity: 0.9;
}

.hero__social {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 4px;
}

.hero__social li a {
    font-size: 26px;
    color: #94a3b8;
    display: inline-block;
    padding: 6px;
    transition: color 0.2s, transform 0.2s;
}

.hero__social li a:hover {
    color: #fff;
    transform: scale(1.1);
    opacity: 1;
}

.hero__body {
    position: relative;
    z-index: 1;
    max-width: 640px;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin: 0 0 20px;
    letter-spacing: -0.02em;
}

.hero__sub {
    font-size: 1.05rem;
    color: #94a3b8;
    line-height: 1.75;
    margin: 0 0 36px;
}

.hero__actions {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
}

/* ── Navigation ── */
.navigation {
    background-color: #1e293b;
    height: 60px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 0 rgba(255,255,255,0.06), 0 4px 16px rgba(0,0,0,0.2);
}

.navigation__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding-bottom: 0;
}

.nav__brand {
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    letter-spacing: 0.04em;
    flex-shrink: 0;
}

.nav__brand:hover {
    opacity: 1;
    color: #fdba74;
}

.nav__links {
    padding: 0;
    margin: 0;
    display: flex;
    gap: 2px;
    list-style: none;
}

.nav__links li a {
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 6px 14px;
    border-radius: 6px;
    cursor: pointer;
    letter-spacing: 0.02em;
    transition: background-color 0.15s, color 0.15s;
}

.nav__links li a:hover {
    background-color: rgba(255,255,255,0.12);
    color: #fff;
    opacity: 1;
}

.nav__cta {
    flex-shrink: 0;
    background-color: #f97316;
    color: #fff;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 7px 18px;
    border-radius: 6px;
    transition: background-color 0.15s, transform 0.15s;
}

.nav__cta:hover {
    background-color: #ea580c;
    transform: translateY(-1px);
    opacity: 1;
    color: #fff;
}

/* ── Stats strip ── */
.stats-strip {
    background-color: #0f172a;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 24px 0;
}

.stats-strip__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 40px;
    text-align: center;
}

.stat__number {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1;
}

.stat__label {
    font-size: 0.75rem;
    color: #64748b;
    margin-top: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat__divider {
    width: 1px;
    height: 36px;
    background-color: rgba(255,255,255,0.08);
    flex-shrink: 0;
}

/* ── Buttons ── */
.btn {
    display: inline-block;
    background-color: #f97316;
    color: #fff;
    padding: 13px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background-color 0.2s, transform 0.15s;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.btn:hover {
    background-color: #ea580c;
    transform: translateY(-1px);
    opacity: 1;
    color: #fff;
}

.btn--outline {
    background-color: transparent;
    color: #f97316;
    border: 2px solid #f97316;
    padding: 11px 28px;
}

.btn--outline:hover {
    background-color: #f97316;
    color: #fff;
    opacity: 1;
}

.btn--ghost {
    background-color: rgba(255,255,255,0.08);
    color: #e2e8f0;
    border: 1px solid rgba(255,255,255,0.15);
}

.btn--ghost:hover {
    background-color: rgba(255,255,255,0.15);
    color: #fff;
    opacity: 1;
}

/* ── Sections ── */
.section {
    padding: 72px 0;
}

.section--alt {
    background-color: #f8fafc;
}

.section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin: 0 0 10px;
    padding-bottom: 18px;
    border-bottom: none;
    position: relative;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, #f97316, #ea580c);
    border-radius: 2px;
}

.section__lead {
    text-align: center;
    color: #94a3b8;
    font-style: italic;
    margin: 0 0 36px;
}

.section p {
    line-height: 1.75;
}

.section__cta {
    text-align: center;
    margin-top: 40px;
}

/* ── Why Ticq ── */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 32px;
}

.why-item {
    padding: 24px;
    background-color: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
}

.why-item h3 {
    color: #1e293b;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 8px;
}

.why-item p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* ── Testimonial ── */
.section--testimonial {
    background-color: #0f172a;
}

.testimonial {
    margin: 0;
    padding: 0;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.testimonial p {
    font-size: 1.15rem;
    color: #e2e8f0;
    line-height: 1.8;
    font-style: italic;
    margin: 0 0 24px;
    position: relative;
}

.testimonial p::before {
    content: '\201C';
    font-size: 4rem;
    color: #f97316;
    line-height: 0;
    vertical-align: -0.5em;
    margin-right: 4px;
    font-style: normal;
}

.testimonial footer {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0;
    border: none;
    background: none;
}

.testimonial footer strong {
    color: #fff;
    font-size: 0.95rem;
}

.testimonial footer span {
    color: #64748b;
    font-size: 0.85rem;
}

/* ── Cards ── */
.horiz-list {
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.horiz-list h3 {
    color: #1e293b;
    margin: 14px 0 8px;
    font-size: 1rem;
    font-weight: 600;
}

.horiz-list li {
    text-align: center;
    flex: 1;
    list-style: none;
    padding: 24px 18px;
    background-color: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    transition: box-shadow 0.2s, transform 0.2s;
}

.horiz-list li:hover {
    box-shadow: 0 6px 24px rgba(249, 115, 22, 0.1);
    transform: translateY(-3px);
    border-color: #fed7aa;
}

.horiz-list li p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.65;
    margin: 0;
}

.card-list {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.card-list li {
    font-size: 0.85rem;
    color: #64748b;
    padding: 0;
    border: none;
    border-radius: 0;
    background: none;
    line-height: 1.5;
    text-align: left;
    transition: none;
    transform: none;
}

.card-list li:hover {
    box-shadow: none;
    transform: none;
    border-color: transparent;
}

.card-list li::before {
    content: '→';
    color: #f97316;
    font-size: 0.8rem;
    margin-right: 6px;
}

.horiz-list li em {
    background-color: #fff7ed;
    display: inline-block;
    padding: 2px 10px;
    color: #f97316;
    font-weight: 600;
    font-size: 11px;
    border-radius: 12px;
    margin-bottom: 4px;
    border: 1px solid #fed7aa;
}

/* ── About ── */
.about-layout {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    margin-top: 32px;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin: 0 0 16px;
}

.founder-card {
    flex-shrink: 0;
    width: 200px;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
}

.founder-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #1e293b;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    letter-spacing: 0.05em;
}

.founder-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.founder-info strong {
    color: #1e293b;
    font-size: 0.95rem;
}

.founder-info span {
    color: #64748b;
    font-size: 0.8rem;
}

.founder-link {
    display: inline-block;
    margin-top: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #f97316;
}

/* ── Footer ── */
footer {
    padding: 36px 0;
    border-top: 1px solid #e2e8f0;
    background-color: #fff;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.footer-logo {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
    opacity: 0.7;
}

.footer-brand p {
    font-size: 0.8rem;
    color: #94a3b8;
    margin: 0;
    line-height: 1.6;
}

.footer-meta {
    display: flex;
    gap: 40px;
}

.footer-row {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-label {
    font-weight: 600;
    color: #1e293b;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-row span:last-child {
    font-size: 0.875rem;
    color: #64748b;
}

footer a {
    color: #f97316;
}

footer a:hover {
    opacity: 0.8;
}

/* ── Responsive ── */
@media (max-width: 650px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero__topbar {
        padding-bottom: 40px;
    }

    .stats-strip__inner {
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat__divider {
        display: none;
    }

    .horiz-list {
        flex-direction: column;
    }

    .about-layout {
        flex-direction: column;
    }

    .founder-card {
        width: 100%;
    }

    .form-row--half {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-meta {
        flex-direction: column;
        gap: 16px;
    }

    .nav__cta {
        display: none;
    }

    .nav__links {
        flex-wrap: wrap;
    }

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