/* Talkoraa — distinct theme & layout overrides */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Syne:wght@600;700;800&display=swap');

/* ── Preloader ── */
.tk-preloader {
    background: #0B0F1A;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease;
}

.tk-preloader.is-hidden {
    display: none !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.tk-loader-box {
    text-align: center;
}

.tk-loader-spinner {
    width: 76px;
    height: 76px;
    margin: 0 auto 18px;
    position: relative;
    border-radius: 50%;
    background: conic-gradient(from 0deg, #FF4D6D, #14B8A6, #FF758F, #FF4D6D);
    animation: tk-loader-spin 1.1s linear infinite;
}

.tk-loader-spinner::before {
    content: "";
    position: absolute;
    inset: 4px;
    background: #0B0F1A;
    border-radius: 50%;
}

.tk-loader-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    color: #14B8A6;
    font-size: 24px;
}

.tk-loader-text {
    font-family: 'Syne', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 14px;
    letter-spacing: -0.5px;
}

.tk-loader-text span {
    color: #14B8A6;
}

.tk-loader-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.tk-loader-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #FF4D6D;
    animation: tk-loader-bounce 1.2s ease-in-out infinite;
}

.tk-loader-dots span:nth-child(2) {
    background: #FF758F;
    animation-delay: 0.15s;
}

.tk-loader-dots span:nth-child(3) {
    background: #14B8A6;
    animation-delay: 0.3s;
}

@keyframes tk-loader-spin {
    to { transform: rotate(360deg); }
}

@keyframes tk-loader-bounce {
    0%, 80%, 100% {
        transform: translateY(0);
        opacity: 0.45;
    }
    40% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

:root {
    --light-purple: #F0F4FA;
    --purple: #FF4D6D;
    --bg-purple: #FF4D6D;
    --greenfresh: #14B8A6;
    --dark-purple: #0B0F1A;
    --dark-purples: #FF4D6D;
    --dark-bg-text: #8B95A8;
    --body-text-purple: #1A2235;
    --text-white: #ffffff;
    --bg-white: #ffffff;
    --slider-dots-color: #CBD5E1;
    --light-bg: #E2E8F0;
    --orange: #14B8A6;
    --bg-orange: #FF4D6D;
    --bg-oranges: #0D9488;
    --tk-surface: #141B2D;
    --tk-midnight: #0B0F1A;
    --tk-coral: #FF4D6D;
    --tk-teal: #14B8A6;
    --tk-glow: rgba(255, 77, 109, 0.25);
}

body {
    font-family: 'Outfit', 'Poppins', sans-serif;
    background-color: var(--bg-white);
    color: var(--body-text-purple);
}

/* ── Header ── */
.tk-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    padding: 18px 0;
    transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}

.tk-header.scrolled {
    background: rgba(11, 15, 26, 0.92);
    backdrop-filter: blur(16px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    padding: 12px 0;
}

.tk-header .navbar {
    padding: 0;
}

.tk-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;
}

.tk-logo-img {
    display: block;
    height: 52px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.tk-header .tk-logo-img {
    height: 48px;
    border-radius: 12px;
}

.tk-header .navbar-brand {
    margin-right: 0;
    padding: 0;
}

.tk-header .navbar-brand img {
    width: auto !important;
    max-width: none;
}

.tk-nav-mark {
    display: block;
    width: 46px;
    height: 46px;
    overflow: hidden;
    border-radius: 11px;
    background: #fff;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

.tk-nav-mark img {
    position: absolute;
    top: -5px;
    left: -12px;
    width: 108px !important;
    height: auto;
    max-width: none;
}

.tk-header .tk-logo {
    gap: 12px;
}

.tk-header .tk-logo-text {
    font-size: 24px;
    line-height: 1;
    white-space: nowrap;
}

.tk-logo-img--footer {
    height: 88px;
}

.tk-logo-img--preloader {
    height: 130px;
    max-width: min(260px, 82vw);
    margin: 0 auto 18px;
    animation: tk-logo-pulse 1.6s ease-in-out infinite;
}

.tk-logo-img--contact {
    height: 170px;
    margin-bottom: 8px;
}

.tk-logo-img--policy {
    height: 72px;
    width: auto;
}

@keyframes tk-logo-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.04);
        opacity: 0.9;
    }
}

.tk-logo-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--tk-coral), var(--tk-teal));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    flex-shrink: 0;
}

.tk-logo-text {
    font-family: 'Syne', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
}

.tk-logo-text span {
    color: var(--tk-teal);
}

.tk-header .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 18px !important;
    transition: color 0.25s;
}

.tk-header .navbar-nav .nav-link:hover {
    color: var(--tk-teal) !important;
}

.tk-header .nav-link.tk-cta-btn {
    background: linear-gradient(135deg, var(--tk-coral), #FF758F);
    color: #fff !important;
    border-radius: 50px;
    padding: 10px 28px !important;
    margin-left: 12px;
    font-weight: 600;
    box-shadow: 0 4px 20px var(--tk-glow);
    transition: transform 0.25s, box-shadow 0.25s;
}

.tk-header .nav-link.tk-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px var(--tk-glow);
    color: #fff !important;
}

.tk-header .toggle-bar,
.tk-header .toggle-bar::before,
.tk-header .toggle-bar::after {
    border-color: #fff;
    background: #fff;
}

/* ── Hero ── */
.tk-hero {
    min-height: 100vh;
    background: var(--tk-midnight);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
}

.tk-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 77, 109, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.tk-hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.tk-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: 60px 60px;
    pointer-events: none;
}

.tk-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(20, 184, 166, 0.12);
    border: 1px solid rgba(20, 184, 166, 0.3);
    color: var(--tk-teal);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.tk-hero-badge i {
    font-size: 16px;
}

.tk-hero h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(38px, 5vw, 62px);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}

.tk-hero h1 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--tk-coral), var(--tk-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tk-hero-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.75;
    max-width: 520px;
    margin-bottom: 36px;
}

.tk-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
}

.tk-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--tk-coral), #FF758F);
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none !important;
    box-shadow: 0 8px 30px var(--tk-glow);
    transition: transform 0.25s, box-shadow 0.25s;
}

.tk-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px var(--tk-glow);
    color: #fff;
}

.tk-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.85);
    padding: 13px 28px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none !important;
    transition: border-color 0.25s, background 0.25s;
}

.tk-btn-outline:hover {
    border-color: var(--tk-teal);
    background: rgba(20, 184, 166, 0.1);
    color: #fff;
}

.tk-hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.tk-stat-item strong {
    display: block;
    font-family: 'Syne', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.tk-stat-item span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
    display: block;
}

.tk-phone-showcase {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tk-phone-glow {
    position: absolute;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(255, 77, 109, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: tk-pulse 4s ease-in-out infinite;
}

.tk-phone-frame {
    position: relative;
    z-index: 2;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 32px;
    padding: 16px;
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.tk-phone-frame img {
    border-radius: 20px;
    max-width: 260px;
    width: 100%;
    display: block;
}

.tk-float-card {
    position: absolute;
    background: rgba(20, 27, 45, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 14px 18px;
    backdrop-filter: blur(12px);
    z-index: 3;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.tk-float-card.top-right {
    top: 10%;
    right: -10%;
    animation: tk-float 5s ease-in-out infinite;
}

.tk-float-card.bottom-left {
    bottom: 15%;
    left: -8%;
    animation: tk-float 5s ease-in-out infinite 1.5s;
}

.tk-float-card .fc-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tk-float-card .fc-value {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-top: 2px;
}

.tk-float-card .fc-value i {
    color: var(--tk-teal);
    margin-right: 4px;
}

@keyframes tk-pulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 1; }
}

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

/* ── Section shared ── */
.tk-section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--tk-teal);
    margin-bottom: 12px;
}

.tk-section-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--tk-midnight);
    letter-spacing: -0.5px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.tk-section-title span {
    color: var(--tk-coral);
}

.tk-section-desc {
    color: var(--dark-bg-text);
    font-size: 17px;
    max-width: 560px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

/* ── Features bento ── */
.tk-features {
    padding: 100px 0;
    background: var(--light-purple);
}

.tk-bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
}

.tk-bento-card {
    background: #fff;
    border-radius: 24px;
    padding: 32px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.tk-bento-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(11, 15, 26, 0.1);
}

.tk-bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--tk-coral), var(--tk-teal));
    opacity: 0;
    transition: opacity 0.3s;
}

.tk-bento-card:hover::before {
    opacity: 1;
}

.tk-bento-card.span-6 { grid-column: span 6; }
.tk-bento-card.span-4 { grid-column: span 4; }
.tk-bento-card.span-8 { grid-column: span 8; }

.tk-bento-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.tk-bento-icon.coral { background: rgba(255, 77, 109, 0.12); color: var(--tk-coral); }
.tk-bento-icon.teal { background: rgba(20, 184, 166, 0.12); color: var(--tk-teal); }
.tk-bento-icon.navy { background: rgba(11, 15, 26, 0.08); color: var(--tk-midnight); }

.tk-bento-card h4 {
    font-family: 'Syne', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--tk-midnight);
    margin-bottom: 10px;
}

.tk-bento-card p {
    color: var(--dark-bg-text);
    font-size: 15px;
    line-height: 1.65;
    margin: 0;
}

/* ── About band ── */
.tk-about {
    padding: 100px 0;
    background: var(--tk-midnight);
    position: relative;
    overflow: hidden;
}

.tk-about .tk-section-title {
    color: #fff;
    text-align: left;
}

.tk-about .tk-section-title span {
    color: var(--tk-teal);
}

.tk-about-text {
    color: rgba(255, 255, 255, 0.65);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.tk-about-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.tk-about-visual img {
    border-radius: 24px;
    max-width: 280px;
    width: 100%;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.tk-about-ring {
    position: absolute;
    width: 320px;
    height: 320px;
    border: 2px dashed rgba(20, 184, 166, 0.3);
    border-radius: 50%;
    animation: tk-spin 20s linear infinite;
}

@keyframes tk-spin {
    to { transform: rotate(360deg); }
}

/* ── Mission / Vision cards ── */
.tk-mission {
    padding: 100px 0;
    background: #fff;
}

.tk-mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.tk-mv-card {
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.tk-mv-card.mission {
    background: linear-gradient(135deg, rgba(255, 77, 109, 0.08), rgba(255, 77, 109, 0.02));
    border: 1px solid rgba(255, 77, 109, 0.15);
}

.tk-mv-card.vision {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.08), rgba(20, 184, 166, 0.02));
    border: 1px solid rgba(20, 184, 166, 0.15);
}

.tk-mv-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--tk-midnight);
}

.tk-mv-card.mission h3 { color: var(--tk-coral); }
.tk-mv-card.vision h3 { color: var(--tk-teal); }

.tk-mv-card p {
    color: var(--dark-bg-text);
    line-height: 1.75;
    margin: 0;
    font-size: 15px;
}

.tk-mv-num {
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: 'Syne', sans-serif;
    font-size: 64px;
    font-weight: 800;
    opacity: 0.06;
    line-height: 1;
}

/* ── How it works — horizontal cards ── */
.tk-steps {
    padding: 100px 0;
    background: var(--light-purple);
}

.tk-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    counter-reset: step;
}

.tk-step-card {
    background: #fff;
    border-radius: 24px;
    padding: 36px 28px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.tk-step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(11, 15, 26, 0.1);
}

.tk-step-num {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--tk-coral), var(--tk-teal));
    color: #fff;
    font-family: 'Syne', sans-serif;
    font-size: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.tk-step-card h4 {
    font-family: 'Syne', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--tk-midnight);
    margin-bottom: 12px;
}

.tk-step-card p {
    color: var(--dark-bg-text);
    font-size: 15px;
    line-height: 1.65;
    margin: 0;
}

.tk-step-card img {
    width: 100%;
    border-radius: 16px;
    margin-top: 20px;
    max-height: 160px;
    object-fit: cover;
}

/* ── Testimonials grid ── */
.tk-testimonials {
    padding: 100px 0;
    background: var(--tk-midnight);
}

.tk-testimonials .tk-section-title {
    color: #fff;
}

.tk-testimonials .tk-section-title span {
    color: var(--tk-teal);
}

.tk-testimonials .tk-section-desc {
    color: rgba(255, 255, 255, 0.5);
}

.tk-test-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.tk-test-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 32px;
    transition: background 0.3s, border-color 0.3s;
}

.tk-test-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(20, 184, 166, 0.3);
}

.tk-test-card .stars {
    color: #FBBF24;
    font-size: 14px;
    margin-bottom: 16px;
}

.tk-test-card .review {
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic;
}

.tk-test-card .author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tk-test-card .author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(20, 184, 166, 0.4);
}

.tk-test-card .author-name {
    color: #fff;
    font-weight: 600;
    font-size: 15px;
}

.tk-test-card .author-loc {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
}

/* ── FAQ ── */
.tk-faq {
    padding: 100px 0;
    background: #fff;
}

.tk-faq .faq_panel .card {
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-radius: 16px !important;
    margin-bottom: 12px;
    overflow: hidden;
}

.tk-faq .faq_panel .card-header {
    background: #fff;
    border: none;
    padding: 0;
}

.tk-faq .faq_panel .card-header .btn {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--tk-midnight) !important;
    padding: 20px 24px;
    width: 100%;
    text-align: left;
}

.tk-faq .faq_panel .card-header .btn.active,
.tk-faq .faq_panel .card-header .btn:hover {
    color: var(--tk-coral) !important;
}

.tk-faq .faq_panel .card-body {
    padding: 0 24px 20px;
    color: var(--dark-bg-text);
    line-height: 1.75;
}

.tk-faq .faq_bg {
    display: none;
}

/* ── Interface slider ── */
.tk-interface {
    padding: 100px 0;
    background: var(--light-purple);
}

.tk-interface .section_title h2 {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    color: var(--tk-midnight) !important;
}

.tk-interface .section_title h2 span {
    color: var(--tk-coral) !important;
}

/* ── CTA band ── */
.tk-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--tk-midnight) 0%, #1a2540 100%);
    position: relative;
    overflow: hidden;
}

.tk-cta::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 77, 109, 0.15) 0%, transparent 70%);
}

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

.tk-cta-text h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.tk-cta-text p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    max-width: 480px;
    margin: 0;
}

.tk-cta-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.tk-cta-actions .app_btn {
    display: flex;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.tk-cta-actions .app_btn li a {
    display: block;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    transition: background 0.25s;
}

.tk-cta-actions .app_btn li a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.tk-cta-actions .app_btn li a img {
    height: 40px;
    width: auto;
}

/* ── Footer ── */
.tk-footer {
    background: #060912;
    color: rgba(255, 255, 255, 0.6);
}

.tk-footer .top_footer {
    padding: 70px 0 50px;
}

.tk-footer .tk-logo-text {
    font-size: 22px;
}

.tk-footer .abt_side .logo img {
    display: none;
}

.tk-footer .abt_side ul li,
.tk-footer .abt_side ul li a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 15px;
}

.tk-footer .abt_side ul li a:hover {
    color: var(--tk-teal);
}

.tk-footer .links h3,
.tk-footer .try_out h3 {
    font-family: 'Syne', sans-serif;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.tk-footer .links ul li a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    line-height: 2.2;
    transition: color 0.25s;
}

.tk-footer .links ul li a:hover {
    color: var(--tk-teal);
}

.tk-footer .bottom_footer {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px 0;
}

.tk-footer .bottom_footer p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    margin: 0;
}

.tk-footer .bottom_footer a {
    color: var(--tk-teal);
}

.tk-footer .go_top {
    background: linear-gradient(135deg, var(--tk-coral), var(--tk-teal));
}

/* ── Hide old layout elements ── */
.banner_section .hero_bg,
.faq_section .faq_bg {
    display: none !important;
}

header:not(.tk-header) {
    display: none;
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .tk-bento-card.span-6,
    .tk-bento-card.span-4,
    .tk-bento-card.span-8 {
        grid-column: span 12;
    }

    .tk-mv-grid,
    .tk-steps-grid,
    .tk-test-grid {
        grid-template-columns: 1fr;
    }

    .tk-float-card {
        display: none;
    }

    .tk-hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .tk-phone-showcase {
        margin-top: 48px;
    }

    .tk-cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .tk-cta-text p {
        margin: 0 auto;
    }

    .tk-cta-actions {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .tk-hero-stats {
        gap: 24px;
    }

    .tk-stat-item strong {
        font-size: 22px;
    }

    .tk-header .nav-link.tk-cta-btn {
        margin-left: 0;
        margin-top: 8px;
    }
}

/* ── Contact page ── */
.tk-contact-page {
    padding: 48px 0 100px;
    background: var(--light-purple);
    min-height: 40vh;
}

.tk-contact-page .section_title h2 {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    color: var(--tk-midnight);
    font-size: 36px;
}

.tk-contact-page .section_title h2 span {
    color: var(--tk-coral);
}

.tk-contact-page .contact_info_list li {
    background: #fff;
    border-radius: 16px;
    padding: 20px 24px;
    margin-bottom: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.tk-contact-page .contact_info_list li a {
    color: var(--tk-teal);
    font-weight: 600;
}

.tk-contact-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--tk-midnight);
    border-radius: 24px;
    padding: 48px;
    text-align: center;
}

.tk-contact-brand .tk-logo-img--contact {
    border-radius: 18px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.tk-contact-brand p {
    color: rgba(255, 255, 255, 0.55);
    margin-top: 16px;
    font-size: 15px;
}

body.tk-inner-page .tk-header {
    background: rgba(11, 15, 26, 0.95);
    backdrop-filter: blur(16px);
}

/* ── Talkoraa CSS device mockups (no external images) ── */
.tk-device {
    width: 260px;
    max-width: 100%;
    margin: 0 auto;
}

.tk-device--compact {
    width: 220px;
}

.tk-device--contact {
    margin-bottom: 16px;
}

.tk-device--slider {
    width: 240px;
}

.tk-device-shell {
    background: linear-gradient(145deg, #1e2738, #141B2D);
    border: 2px solid rgba(255, 255, 255, 0.12);
    border-radius: 32px;
    padding: 12px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.tk-device-notch {
    width: 72px;
    height: 6px;
    background: #2A3548;
    border-radius: 4px;
    margin: 0 auto 10px;
}

.tk-device-screen {
    background: #0B0F1A;
    border-radius: 22px;
    padding: 16px 14px;
    min-height: 380px;
    text-align: left;
}

.tk-device--slider .tk-device-screen {
    min-height: 340px;
}

.tk-device--compact .tk-device-screen {
    min-height: 300px;
}

.tk-device-screen h5 {
    color: #fff;
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 16px;
}

.tk-ui-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #141B2D;
    border: 1px solid rgba(255, 77, 109, 0.35);
    border-radius: 14px;
    padding: 12px;
    margin-bottom: 14px;
}

.tk-ui-card strong,
.tk-ui-row strong,
.tk-ui-profile-card strong,
.tk-screen-profile strong,
.tk-screen-voice strong {
    display: block;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}

.tk-ui-card span,
.tk-ui-row span,
.tk-ui-profile-card span,
.tk-screen-profile span,
.tk-screen-voice span {
    display: block;
    color: #8B95A8;
    font-size: 10px;
    margin-top: 2px;
}

.tk-ui-card button {
    margin-left: auto;
    border: none;
    background: linear-gradient(135deg, #FF4D6D, #FF758F);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 14px;
}

.tk-ui-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(135deg, #FF4D6D, #14B8A6);
}

.tk-ui-avatar--sm {
    width: 28px;
    height: 28px;
}

.tk-ui-avatar--lg {
    width: 64px;
    height: 64px;
    margin: 0 auto 12px;
}

.tk-ui-avatar--teal {
    background: linear-gradient(135deg, #14B8A6, #0D9488);
}

.tk-ui-avatar--purple {
    background: linear-gradient(135deg, #6366F1, #14B8A6);
}

.tk-ui-bubble {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 18px;
    font-size: 11px;
    line-height: 1.4;
    margin-bottom: 10px;
}

.tk-ui-bubble--left {
    background: #141B2D;
    color: #8B95A8;
}

.tk-ui-bubble--right {
    background: linear-gradient(135deg, #14B8A6, #0D9488);
    color: #fff;
    margin-left: auto;
}

.tk-ui-input {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 22px;
    background: #141B2D;
    border: 1px solid #2A3548;
    color: #8B95A8;
    font-size: 11px;
}

.tk-ui-row {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #141B2D;
    border-radius: 12px;
    padding: 10px 12px;
    margin-bottom: 10px;
}

.tk-ui-badge {
    width: 28px;
    height: 28px;
    border-radius: 10px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #FF4D6D, #FF758F);
}

.tk-ui-badge--teal {
    background: linear-gradient(135deg, #14B8A6, #0D9488);
}

.tk-ui-profile-card {
    background: #141B2D;
    border-radius: 18px;
    padding: 24px 16px;
    text-align: center;
    margin-bottom: 20px;
}

.tk-ui-actions {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.tk-ui-pass,
.tk-ui-like {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
}

.tk-ui-pass {
    background: #141B2D;
    color: #FF4D6D;
    border: 2px solid rgba(255, 77, 109, 0.4);
}

.tk-ui-like {
    background: linear-gradient(135deg, #FF4D6D, #FF758F);
    color: #fff;
}

.tk-ui-tags {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 14px;
}

.tk-ui-tags em {
    font-style: normal;
    font-size: 10px;
    padding: 6px 12px;
    border-radius: 14px;
    background: rgba(255, 77, 109, 0.15);
    color: #FF4D6D;
}

.tk-ui-tags em:last-child {
    background: rgba(20, 184, 166, 0.15);
    color: #14B8A6;
}

.tk-ui-timer {
    display: block;
    text-align: center;
    color: #14B8A6 !important;
    margin-top: 8px;
}

.tk-screen-profile,
.tk-screen-voice,
.tk-screen-welcome {
    text-align: center;
}

.tk-screen-welcome .tk-ui-logo {
    font-family: 'Syne', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin: 40px 0 12px;
}

.tk-screen-welcome .tk-ui-logo span {
    color: #14B8A6;
}

.tk-screen-welcome p {
    color: #8B95A8;
    font-size: 11px;
    margin-bottom: 24px;
}

.tk-screen-welcome button {
    border: none;
    background: linear-gradient(135deg, #FF4D6D, #FF758F);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 22px;
}

.tk-step-visual {
    margin-top: 20px;
    padding: 24px 16px;
    border-radius: 16px;
    background: #0B0F1A;
    color: #fff;
    text-align: center;
}

.tk-step-visual i {
    font-size: 42px;
    color: #14B8A6;
    display: block;
    margin-bottom: 10px;
}

.tk-step-visual span {
    font-size: 12px;
    color: #8B95A8;
    display: block;
    margin-top: 10px;
}

.tk-app-shot {
    width: 100%;
    max-width: 190px;
    height: auto;
    border-radius: 16px;
    display: block;
    margin: 0 auto;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.tk-app-shot--contact {
    max-width: 260px;
    border-radius: 20px;
    margin-bottom: 16px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.tk-step-visual--profile .tk-ui-avatar {
    margin: 0 auto 10px;
}

.tk-step-visual--chat {
    text-align: left;
    padding: 16px;
}

.tk-mv-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #FF4D6D;
    background: rgba(255, 77, 109, 0.12);
    margin-bottom: 16px;
}

.tk-mv-icon--teal {
    color: #14B8A6;
    background: rgba(20, 184, 166, 0.12);
}

.tk-avatar-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FF4D6D, #FF758F);
    color: #fff;
    font-weight: 700;
    font-size: 16px;
}

.tk-avatar-letter--teal {
    background: linear-gradient(135deg, #14B8A6, #0D9488);
}

.tk-avatar-letter--purple {
    background: linear-gradient(135deg, #6366F1, #14B8A6);
}

.tk-contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255, 77, 109, 0.15), rgba(20, 184, 166, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #14B8A6;
}

.tk-contact-icon i {
    line-height: 1;
}

.tk-footer .go_top span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.tk-footer .go_top i {
    color: #fff;
    font-size: 22px;
}

.tk-interface .screen_frame_img {
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

.tk-interface .screen_frame_img img {
    max-height: 620px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    box-shadow: 0 20px 60px rgba(11, 15, 26, 0.12);
}

/* ── Legal / policy inner pages ── */
.tk-legal-hero {
    padding: 140px 0 56px;
    background: linear-gradient(135deg, #0B0F1A 0%, #141B2D 55%, #1a1030 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tk-legal-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 77, 109, 0.15), transparent 45%),
        radial-gradient(circle at 80% 70%, rgba(20, 184, 166, 0.12), transparent 40%);
    pointer-events: none;
}

.tk-legal-hero .container {
    position: relative;
    z-index: 1;
}

.tk-legal-hero .tk-section-label {
    display: inline-block;
    margin-bottom: 12px;
}

.tk-legal-hero h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(32px, 5vw, 44px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.tk-legal-hero p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 17px;
    max-width: 560px;
    margin: 0 auto;
}

.tk-legal-hero--compact {
    padding-bottom: 48px;
}

.tk-legal-page {
    padding: 0 0 80px;
    background: var(--light-purple);
    margin-top: -32px;
}

.tk-legal-card {
    background: #fff;
    border-radius: 24px;
    padding: clamp(28px, 4vw, 48px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 24px 60px rgba(11, 15, 26, 0.08);
    max-width: 860px;
    margin: 0 auto;
}

.tk-legal-card + .tk-legal-card {
    margin-top: 24px;
}

.tk-legal-card--wide {
    max-width: 1040px;
}

.tk-legal-card p,
.tk-legal-card li {
    color: #5a6478;
    font-size: 16px;
    line-height: 1.75;
}

.tk-legal-card p {
    margin-bottom: 16px;
}

.tk-legal-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--tk-midnight);
    margin: 32px 0 14px;
    padding-left: 14px;
    border-left: 4px solid var(--tk-coral);
}

.tk-legal-card h3:first-child {
    margin-top: 0;
}

.tk-legal-card ul {
    padding-left: 22px;
    margin-bottom: 16px;
}

.tk-legal-card li {
    margin-bottom: 10px;
}

.tk-legal-card a {
    color: var(--tk-teal);
    font-weight: 600;
    text-decoration: none;
}

.tk-legal-card a:hover {
    color: var(--tk-coral);
    text-decoration: underline;
}

.tk-legal-card hr {
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    margin: 28px 0;
}

.tk-legal-card .tk-legal-highlight {
    background: rgba(255, 77, 109, 0.08);
    border: 1px solid rgba(255, 77, 109, 0.15);
    border-radius: 16px;
    padding: 20px 22px;
    margin-bottom: 20px;
}

.tk-legal-card .tk-legal-highlight p:last-child {
    margin-bottom: 0;
}

.tk-legal-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 12px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--tk-coral), #ff758f);
    color: #fff !important;
    font-weight: 600;
    text-decoration: none !important;
    box-shadow: 0 8px 24px rgba(255, 77, 109, 0.25);
    transition: transform 0.2s, box-shadow 0.2s;
}

.tk-legal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(255, 77, 109, 0.35);
    color: #fff !important;
}

.tk-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.tk-legal-links a {
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(11, 15, 26, 0.05);
    color: var(--tk-midnight);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.tk-legal-links a:hover {
    background: rgba(255, 77, 109, 0.1);
    color: var(--tk-coral);
}

/* ── Page-specific accents ── */
.tk-page--privacy { --page-accent: var(--tk-teal); --page-accent-soft: rgba(20, 184, 166, 0.12); }
.tk-page--terms { --page-accent: #6366F1; --page-accent-soft: rgba(99, 102, 241, 0.12); }
.tk-page--refund { --page-accent: #F59E0B; --page-accent-soft: rgba(245, 158, 11, 0.14); }
.tk-page--safety { --page-accent: #EF4444; --page-accent-soft: rgba(239, 68, 68, 0.12); }
.tk-page--contact { --page-accent: var(--tk-coral); --page-accent-soft: rgba(255, 77, 109, 0.12); }
.tk-page--delete { --page-accent: #64748B; --page-accent-soft: rgba(100, 116, 139, 0.14); }

.tk-page--privacy .tk-legal-hero::before {
    background:
        radial-gradient(circle at 15% 40%, rgba(20, 184, 166, 0.22), transparent 42%),
        radial-gradient(circle at 85% 60%, rgba(255, 77, 109, 0.1), transparent 38%);
}

.tk-page--terms .tk-legal-hero::before {
    background:
        radial-gradient(circle at 20% 35%, rgba(99, 102, 241, 0.22), transparent 45%),
        radial-gradient(circle at 80% 65%, rgba(20, 184, 166, 0.1), transparent 40%);
}

.tk-page--refund .tk-legal-hero::before {
    background:
        radial-gradient(circle at 25% 30%, rgba(245, 158, 11, 0.2), transparent 42%),
        radial-gradient(circle at 75% 70%, rgba(255, 77, 109, 0.1), transparent 38%);
}

.tk-page--safety .tk-legal-hero::before {
    background:
        radial-gradient(circle at 20% 40%, rgba(239, 68, 68, 0.18), transparent 42%),
        radial-gradient(circle at 80% 60%, rgba(255, 77, 109, 0.12), transparent 40%);
}

.tk-page--contact .tk-legal-hero::before {
    background:
        radial-gradient(circle at 30% 35%, rgba(255, 77, 109, 0.2), transparent 45%),
        radial-gradient(circle at 70% 65%, rgba(20, 184, 166, 0.14), transparent 40%);
}

.tk-page--delete .tk-legal-hero::before {
    background:
        radial-gradient(circle at 25% 35%, rgba(100, 116, 139, 0.22), transparent 42%),
        radial-gradient(circle at 75% 65%, rgba(255, 77, 109, 0.1), transparent 40%);
}

.tk-delete-visual {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
    padding: 24px;
    margin-bottom: 28px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(11, 15, 26, 0.04), rgba(20, 184, 166, 0.06));
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.tk-delete-visual img {
    width: 140px;
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(11, 15, 26, 0.15);
}

.tk-delete-visual p {
    flex: 1;
    min-width: 200px;
    margin: 0 !important;
    color: #5a6478;
    font-size: 15px;
}

.tk-hero-badge {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: #fff;
    background: linear-gradient(135deg, var(--page-accent, var(--tk-coral)), var(--tk-teal));
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.tk-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 13px;
}

.tk-breadcrumb a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
}

.tk-breadcrumb a:hover {
    color: #fff;
}

.tk-breadcrumb span {
    color: rgba(255, 255, 255, 0.35);
}

.tk-breadcrumb em {
    font-style: normal;
    color: rgba(255, 255, 255, 0.85);
}

.tk-legal-meta {
    display: inline-block;
    margin-top: 16px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.tk-legal-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.tk-legal-sidebar {
    position: sticky;
    top: 100px;
}

.tk-legal-sidebar-card {
    background: #fff;
    border-radius: 20px;
    padding: 22px 20px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 12px 40px rgba(11, 15, 26, 0.06);
    margin-bottom: 16px;
}

.tk-legal-sidebar-card h4 {
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--tk-midnight);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.tk-legal-sidebar-card nav a,
.tk-legal-sidebar-card ul a {
    display: block;
    padding: 10px 12px;
    border-radius: 12px;
    color: #5a6478;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.tk-legal-sidebar-card nav a:hover,
.tk-legal-sidebar-card ul a:hover {
    background: var(--page-accent-soft, rgba(255, 77, 109, 0.1));
    color: var(--page-accent, var(--tk-coral));
}

.tk-legal-sidebar-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tk-legal-sidebar-card ul li {
    margin-bottom: 4px;
}

.tk-legal-sidebar-card ul a.is-active {
    background: var(--page-accent-soft, rgba(255, 77, 109, 0.1));
    color: var(--page-accent, var(--tk-coral));
    font-weight: 600;
}

.tk-legal-main .tk-legal-card {
    max-width: none;
}

.tk-legal-lead {
    font-size: 18px !important;
    line-height: 1.7 !important;
    color: var(--tk-midnight) !important;
    padding-bottom: 24px;
    margin-bottom: 8px !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.tk-legal-block {
    padding: 22px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.tk-legal-block:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.tk-legal-block-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.tk-legal-block-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--page-accent, var(--tk-coral));
    background: var(--page-accent-soft, rgba(255, 77, 109, 0.1));
}

.tk-legal-block-head h3 {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    font-size: 19px !important;
}

.tk-legal-block p:last-child,
.tk-legal-block ul:last-child {
    margin-bottom: 0;
}

.tk-legal-card--accent {
    background: linear-gradient(135deg, var(--tk-midnight) 0%, #1a2540 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.75);
}

.tk-legal-card--accent h3 {
    color: #fff !important;
    border-left-color: var(--page-accent, var(--tk-coral)) !important;
}

.tk-legal-card--accent p,
.tk-legal-card--accent li {
    color: rgba(255, 255, 255, 0.72) !important;
}

.tk-legal-card--accent .tk-legal-block {
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.tk-legal-notice {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 22px 24px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.12), rgba(255, 77, 109, 0.08));
    border: 1px solid rgba(245, 158, 11, 0.25);
    margin-bottom: 28px;
}

.tk-legal-notice-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #D97706;
    background: rgba(245, 158, 11, 0.18);
}

.tk-legal-notice p {
    margin-bottom: 0 !important;
    color: var(--tk-midnight) !important;
}

.tk-legal-steps {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

ol.tk-legal-steps {
    list-style: none;
    padding-left: 0;
}

.tk-legal-steps li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 20px;
    border-radius: 16px;
    background: rgba(11, 15, 26, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 0 !important;
}

.tk-legal-step-num {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--page-accent, var(--tk-coral)), var(--tk-teal));
}

.tk-legal-contact-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 14px;
    margin-top: 8px;
}

.tk-legal-contact-box a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    border-radius: 14px;
    background: var(--page-accent-soft, rgba(255, 77, 109, 0.08));
    text-decoration: none !important;
}

.tk-legal-contact-box a i {
    font-size: 22px;
    color: var(--page-accent, var(--tk-teal));
}

.tk-legal-contact-box a span {
    font-size: 14px;
    color: var(--tk-midnight);
    font-weight: 600;
}

.tk-policy-strip {
    margin-top: 32px;
    padding: 24px 28px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 12px 40px rgba(11, 15, 26, 0.06);
    text-align: center;
}

.tk-policy-strip p {
    margin-bottom: 14px;
    color: #5a6478;
    font-size: 15px;
}

.tk-policy-strip .tk-legal-links {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
    justify-content: center;
}

/* ── Contact page layout ── */
.tk-contact-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 32px;
    align-items: stretch;
}

.tk-contact-main {
    background: #fff;
    border-radius: 24px;
    padding: clamp(28px, 4vw, 40px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 24px 60px rgba(11, 15, 26, 0.08);
}

.tk-contact-main .section_title h2 {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    color: var(--tk-midnight);
    font-size: clamp(28px, 4vw, 36px);
    margin-bottom: 12px;
}

.tk-contact-main .section_title h2 span {
    color: var(--tk-coral);
}

.tk-contact-channels {
    display: grid;
    gap: 16px;
    margin: 28px 0;
}

.tk-channel-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 24px;
    border-radius: 18px;
    text-decoration: none !important;
    background: linear-gradient(135deg, rgba(255, 77, 109, 0.06), rgba(20, 184, 166, 0.06));
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.tk-channel-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(11, 15, 26, 0.1);
    border-color: rgba(20, 184, 166, 0.35);
}

.tk-channel-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    background: linear-gradient(135deg, var(--tk-coral), var(--tk-teal));
}

.tk-channel-card strong {
    display: block;
    color: var(--tk-midnight);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.tk-channel-card span {
    display: block;
    color: var(--tk-teal);
    font-size: 15px;
    font-weight: 600;
}

.tk-contact-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tk-contact-topics span {
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    color: #5a6478;
    background: rgba(11, 15, 26, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.tk-contact-visual {
    background: linear-gradient(160deg, var(--tk-midnight) 0%, #1a2540 55%, #2a1030 100%);
    border-radius: 24px;
    padding: 40px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(11, 15, 26, 0.2);
}

.tk-contact-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 77, 109, 0.2), transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(20, 184, 166, 0.15), transparent 45%);
    pointer-events: none;
}

.tk-contact-visual img {
    position: relative;
    z-index: 1;
    max-width: 240px;
    width: 100%;
    border-radius: 22px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.tk-contact-visual p {
    position: relative;
    z-index: 1;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    max-width: 220px;
}

.tk-legal-card--accent .tk-legal-block-icon {
    background: rgba(255, 255, 255, 0.1);
    color: var(--page-accent, var(--tk-coral));
}

.tk-contact-page .contact_info_list {
    display: none;
}


@media (max-width: 991px) {
    .tk-legal-layout {
        grid-template-columns: 1fr;
    }

    .tk-legal-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .tk-contact-layout {
        grid-template-columns: 1fr;
    }

    .tk-contact-visual {
        order: -1;
        padding: 32px 24px;
    }
}

@media (max-width: 767px) {
    .tk-legal-sidebar {
        grid-template-columns: 1fr;
    }

    .tk-legal-contact-box {
        grid-template-columns: 1fr;
    }

    .tk-legal-hero {
        padding-top: 120px;
    }

    .tk-legal-card {
        padding: 24px 20px;
        border-radius: 18px;
    }
}
