/* ==========================================================================
   Tab India — landing page styles
   Designed to work standalone on top of the Hello Elementor theme.
   ========================================================================== */

:root {
        --ti-primary:        hsl(186, 80%, 20%);
        --ti-primary-soft:   hsla(186, 80%, 20%, 0.08);
        --ti-primary-line:   hsla(186, 80%, 20%, 0.18);
        --ti-secondary:      hsl(210, 60%, 30%);
        --ti-accent:         hsl(35, 90%, 55%);
        --ti-accent-soft:    hsla(35, 90%, 55%, 0.10);
        --ti-accent-line:    hsla(35, 90%, 55%, 0.30);
        --ti-bg:             hsl(210, 20%, 98%);
        --ti-card:           #ffffff;
        --ti-text:           hsl(186, 50%, 15%);
        --ti-muted:          hsl(186, 20%, 40%);
        --ti-muted-line:     hsl(186, 20%, 88%);
        --ti-wa:             #25D366;
        --ti-wa-dark:        #1EBE5A;
        --ti-radius:         12px;
        --ti-radius-lg:      18px;
        --ti-radius-xl:      24px;
        --ti-shadow-sm:      0 1px 2px rgba(15, 64, 64, 0.06);
        --ti-shadow-md:      0 6px 18px rgba(15, 64, 64, 0.08);
        --ti-shadow-lg:      0 18px 40px rgba(15, 64, 64, 0.18);
        --ti-shadow-xl:      0 24px 60px rgba(15, 64, 64, 0.25);
        --ti-font-sans:      'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
        --ti-font-serif:     'Playfair Display', Georgia, 'Times New Roman', serif;
        --ti-container:      1200px;
}

/* Reset / base for the front page only */
body.tab-india-page {
        margin: 0;
        background: var(--ti-bg);
        color: var(--ti-text);
        font-family: var(--ti-font-sans);
        font-size: 16px;
        line-height: 1.6;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
}
body.tab-india-page * { box-sizing: border-box; }
body.tab-india-page img { max-width: 100%; height: auto; display: block; }
body.tab-india-page a { color: inherit; text-decoration: none; }
body.tab-india-page h1,
body.tab-india-page h2,
body.tab-india-page h3 { margin: 0; line-height: 1.2; color: var(--ti-primary); }
body.tab-india-page p { margin: 0; }
body.tab-india-page ul, body.tab-india-page ol { margin: 0; padding: 0; list-style: none; }
body.tab-india-page button { font: inherit; cursor: pointer; }

.ti-container {
        width: 100%;
        max-width: var(--ti-container);
        margin: 0 auto;
        padding: 0 24px;
}

.ti-skip-link {
        position: absolute;
        left: -9999px;
        top: auto;
        width: 1px;
        height: 1px;
        overflow: hidden;
}
.ti-skip-link:focus {
        position: fixed;
        left: 16px;
        top: 16px;
        width: auto;
        height: auto;
        background: var(--ti-primary);
        color: #fff;
        padding: 8px 12px;
        border-radius: 6px;
        z-index: 9999;
}

/* SVG icons sit inside flex parents */
.ti-header svg, .ti-btn svg, .ti-feature__icon svg, .ti-final svg, .ti-footer svg, .ti-floating-wa svg, .ti-checker svg, .ti-checklist svg {
        flex-shrink: 0;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.ti-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        height: 42px;
        padding: 0 18px;
        border: none;
        border-radius: 8px;
        font-weight: 600;
        font-size: 14px;
        text-decoration: none;
        transition: background-color .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
        white-space: nowrap;
}
.ti-btn svg { width: 18px; height: 18px; }
.ti-btn--lg { height: 52px; padding: 0 26px; font-size: 16px; border-radius: 10px; }
.ti-btn--lg svg { width: 22px; height: 22px; }
.ti-btn--full { width: 100%; }

.ti-btn--whatsapp {
        background: var(--ti-wa);
        color: #fff;
        box-shadow: 0 6px 14px rgba(37, 211, 102, 0.25);
}
.ti-btn--whatsapp:hover { background: var(--ti-wa-dark); transform: translateY(-1px); box-shadow: 0 10px 20px rgba(37, 211, 102, 0.32); }

.ti-btn--whatsapp-on-light {
        background: #25D366 !important;
        color: #ffffff !important;
        border: 2px solid #25D366;
        box-shadow: 0 8px 18px rgba(37, 211, 102, 0.35);
}
.ti-btn--whatsapp-on-light svg { fill: #ffffff !important; color: #ffffff !important; }
.ti-btn--whatsapp-on-light:hover { background: #1EBE5A !important; border-color: #1EBE5A; transform: translateY(-1px); }

.ti-btn--primary {
        background: var(--ti-primary);
        color: #fff;
        box-shadow: 0 6px 14px rgba(15, 64, 64, 0.18);
}
.ti-btn--primary:hover { background: hsl(186, 80%, 16%); transform: translateY(-1px); }

.ti-btn--outline-primary {
        background: transparent;
        color: var(--ti-primary);
        border: 2px solid var(--ti-primary);
}
.ti-btn--outline-primary:hover { background: var(--ti-primary-soft); }

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.ti-header {
        position: sticky;
        top: 0;
        z-index: 50;
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: saturate(180%) blur(10px);
        -webkit-backdrop-filter: saturate(180%) blur(10px);
        border-bottom: 1px solid var(--ti-muted-line);
}
.ti-header__inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        height: 72px;
}
.ti-logo img {
        height: 56px;
        width: auto;
}
.ti-nav {
        display: none;
        gap: 28px;
}
.ti-nav a {
        font-size: 14px;
        font-weight: 500;
        color: rgba(15, 64, 64, 0.78);
        transition: color .15s ease;
}
.ti-nav a:hover { color: var(--ti-primary); }

.ti-header__cta {
        display: flex;
        align-items: center;
        gap: 12px;
}
.ti-phone-link {
        display: none;
        align-items: center;
        gap: 8px;
        color: var(--ti-primary);
        font-weight: 600;
        font-size: 14px;
}
.ti-phone-link svg { width: 16px; height: 16px; }
.ti-phone-link:hover { opacity: .8; }

.ti-btn__label-short { display: inline; }
.ti-btn__label-full  { display: none; }

.ti-menu-toggle {
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        gap: 4px;
        width: 40px;
        height: 40px;
        padding: 0 10px;
        background: transparent;
        border: 1px solid var(--ti-muted-line);
        border-radius: 8px;
}
.ti-menu-toggle span {
        display: block;
        height: 2px;
        background: var(--ti-primary);
        border-radius: 2px;
        transition: transform .2s ease, opacity .2s ease;
}
.ti-mobile-nav {
        display: none;
        flex-direction: column;
        padding: 12px 24px 18px;
        border-top: 1px solid var(--ti-muted-line);
        background: #fff;
}
.ti-mobile-nav a {
        padding: 12px 0;
        font-weight: 600;
        color: var(--ti-primary);
        border-bottom: 1px solid var(--ti-muted-line);
}
.ti-mobile-nav a:last-child { border-bottom: none; }
.ti-mobile-nav.is-open { display: flex; }
.ti-menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.ti-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.ti-menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (min-width: 768px) {
        .ti-nav { display: flex; }
        .ti-menu-toggle { display: none; }
        .ti-btn__label-short { display: none; }
        .ti-btn__label-full { display: inline; }
}
@media (min-width: 1024px) {
        .ti-phone-link { display: inline-flex; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.ti-hero {
        background: linear-gradient(180deg, var(--ti-primary-soft) 0%, transparent 70%);
        padding: 56px 0 64px;
        position: relative;
        overflow: hidden;
}
.ti-hero__grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 40px;
        align-items: center;
}
.ti-hero__copy { max-width: 640px; }

.ti-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 6px 14px;
        background: var(--ti-accent-soft);
        border: 1px solid var(--ti-accent-line);
        border-radius: 999px;
        color: var(--ti-primary);
        font-weight: 600;
        font-size: 13px;
        margin-bottom: 24px;
}
.ti-badge svg { width: 16px; height: 16px; color: var(--ti-accent); }

.ti-h1 {
        font-family: var(--ti-font-serif);
        font-weight: 700;
        letter-spacing: -0.02em;
        font-size: clamp(2rem, 5vw + .2rem, 3.75rem);
        margin-bottom: 24px;
        color: var(--ti-primary);
}
.ti-h1__accent { color: var(--ti-secondary); display: block; }

.ti-lede {
        font-size: clamp(1rem, 0.9rem + .4vw, 1.2rem);
        color: var(--ti-muted);
        line-height: 1.7;
        margin-bottom: 32px;
}
.ti-lede--invert { color: rgba(255,255,255,0.82); }

.ti-hero__actions {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 18px;
}
.ti-hero__trust { display: inline-flex; align-items: center; gap: 12px; color: var(--ti-muted); font-size: 14px; font-weight: 500; }
.ti-avatars { display: inline-flex; }
.ti-avatar {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        margin-right: -10px;
        border-radius: 999px;
        background: var(--ti-primary-soft);
        color: var(--ti-primary);
        border: 2px solid #fff;
}
.ti-avatar svg { width: 16px; height: 16px; }
.ti-avatar:last-child { margin-right: 0; }

.ti-hero__visual {
        max-width: 520px;
        margin: 0 auto;
        width: 100%;
}
.ti-hero__image {
        position: relative;
        aspect-ratio: 4 / 5;
        border-radius: var(--ti-radius-xl);
        overflow: hidden;
        box-shadow: var(--ti-shadow-xl);
        background: var(--ti-primary-soft);
}
.ti-hero__image img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
}
.ti-hero__overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(15,64,64,0.75) 0%, transparent 55%);
}
.ti-hero__card {
        position: absolute;
        left: 18px;
        right: 18px;
        bottom: 18px;
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 14px 18px;
        background: rgba(255,255,255,0.95);
        backdrop-filter: blur(6px);
        border-radius: 14px;
        box-shadow: var(--ti-shadow-md);
}
.ti-hero__card-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border-radius: 999px;
        background: #ecfdf5;
        color: #059669;
}
.ti-hero__card-icon svg { width: 22px; height: 22px; }
.ti-hero__card-title { color: var(--ti-primary); font-weight: 700; margin: 0 0 2px; }
.ti-hero__card-sub { color: var(--ti-muted); font-size: 13px; margin: 0; }

@media (min-width: 1024px) {
        .ti-hero { padding: 96px 0 80px; }
        .ti-hero__grid { grid-template-columns: 1.05fr 1fr; gap: 56px; }
        .ti-hero__image { aspect-ratio: 1 / 1; }
}

/* ==========================================================================
   Section heads
   ========================================================================== */
.ti-section-head {
        max-width: 720px;
        margin: 0 auto 48px;
        text-align: center;
}
.ti-section-head h2 {
        font-family: var(--ti-font-serif);
        font-size: clamp(1.6rem, 1rem + 2vw, 2.5rem);
        font-weight: 700;
        margin-bottom: 14px;
        color: var(--ti-primary);
}
.ti-section-head p {
        color: var(--ti-muted);
        font-size: clamp(1rem, .95rem + .2vw, 1.125rem);
        line-height: 1.7;
}
.ti-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 6px 12px;
        background: var(--ti-primary-soft);
        color: var(--ti-primary);
        border-radius: 999px;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: .04em;
        text-transform: uppercase;
        margin-bottom: 16px;
}
.ti-eyebrow__dot {
        width: 6px;
        height: 6px;
        border-radius: 999px;
        background: var(--ti-accent);
}

/* ==========================================================================
   NEET Checker
   ========================================================================== */
.ti-checker {
        padding: 64px 0;
        background: linear-gradient(180deg, var(--ti-bg) 0%, #fff 100%);
}
.ti-checker__card {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 980px;
        margin: 0 auto;
        padding: 24px;
        background: #fff;
        border: 1px solid var(--ti-muted-line);
        border-radius: var(--ti-radius-xl);
        box-shadow: var(--ti-shadow-md);
}
.ti-field { display: flex; flex-direction: column; gap: 6px; }
.ti-field label {
        font-size: 13px;
        font-weight: 600;
        color: var(--ti-primary);
        letter-spacing: .01em;
}
.ti-field input,
.ti-field select {
        height: 48px;
        padding: 0 14px;
        background: #fff;
        border: 1px solid var(--ti-muted-line);
        border-radius: 10px;
        color: var(--ti-text);
        font-family: inherit;
        font-size: 15px;
        transition: border-color .15s ease, box-shadow .15s ease;
        -webkit-appearance: none;
        appearance: none;
}
.ti-field select {
        background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%230f4040' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
        background-repeat: no-repeat;
        background-position: right 14px center;
        padding-right: 36px;
}
.ti-field input:focus,
.ti-field select:focus {
        outline: none;
        border-color: var(--ti-primary);
        box-shadow: 0 0 0 3px var(--ti-primary-soft);
}
.ti-field--submit { display: flex; align-items: end; }
.ti-field--submit .ti-btn { width: 100%; }
.ti-req { color: #d92d20; margin-left: 2px; font-weight: 700; }
.ti-field input:invalid:not(:placeholder-shown),
.ti-field select:invalid:not([data-touched="false"]) {
        /* No red border by default — only after submit attempt */
}
.ti-checker__note {
        max-width: 980px;
        margin: 14px auto 0;
        text-align: center;
        color: var(--ti-muted);
        font-size: 13px;
}
@media (min-width: 768px) {
        .ti-checker__card { grid-template-columns: 1fr 1fr; gap: 18px; padding: 28px; }
}
@media (min-width: 1024px) {
        .ti-checker__card { grid-template-columns: 1.2fr 1fr 1fr 1fr 1.1fr; gap: 16px; padding: 28px; }
}

/* ==========================================================================
   Why Choose Us
   ========================================================================== */
.ti-why { padding: 72px 0; background: #fff; }
.ti-grid-3 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 18px;
}
.ti-feature {
        padding: 28px;
        background: #fff;
        border: 1px solid var(--ti-primary-line);
        border-radius: var(--ti-radius-lg);
        box-shadow: var(--ti-shadow-sm);
        transition: transform .18s ease, box-shadow .18s ease;
}
.ti-feature:hover { transform: translateY(-3px); box-shadow: var(--ti-shadow-md); }
.ti-feature__icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 56px;
        height: 56px;
        border-radius: 14px;
        background: var(--ti-primary-soft);
        color: var(--ti-primary);
        margin-bottom: 18px;
}
.ti-feature__icon svg { width: 28px; height: 28px; }
.ti-feature h3 {
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--ti-primary);
        margin-bottom: 8px;
}
.ti-feature p { color: var(--ti-muted); }

@media (min-width: 768px) {
        .ti-grid-3 { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

/* ==========================================================================
   Process
   ========================================================================== */
.ti-process {
        padding: 72px 0;
        background: var(--ti-primary);
        color: #fff;
}
.ti-process h2 {
        font-family: var(--ti-font-serif);
        font-size: clamp(1.6rem, 1rem + 2vw, 2.5rem);
        color: #fff;
        margin-bottom: 16px;
}
.ti-process__grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 36px;
        align-items: center;
}
.ti-process__visual {
        border-radius: var(--ti-radius-xl);
        overflow: hidden;
        box-shadow: var(--ti-shadow-xl);
        aspect-ratio: 4 / 3;
        order: 2;
}
.ti-process__visual img { width: 100%; height: 100%; object-fit: cover; }
.ti-process__copy { order: 1; }

.ti-steps { display: flex; flex-direction: column; gap: 24px; }
.ti-steps li {
        display: flex;
        align-items: flex-start;
        gap: 18px;
}
.ti-steps__num {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        border-radius: 999px;
        border: 2px solid rgba(255, 200, 100, 0.55);
        color: var(--ti-accent);
        font-weight: 700;
        font-size: 16px;
        flex-shrink: 0;
        margin-top: 2px;
}
.ti-steps li h3 {
        color: #fff;
        font-size: 1.15rem;
        font-weight: 700;
        margin-bottom: 4px;
}
.ti-steps li p { color: rgba(255,255,255,.78); }

@media (min-width: 1024px) {
        .ti-process { padding: 110px 0; }
        .ti-process__grid { grid-template-columns: 1fr 1fr; gap: 56px; }
        .ti-process__visual { order: 1; }
        .ti-process__copy { order: 2; }
}

/* ==========================================================================
   Top Institutions
   ========================================================================== */
.ti-institutions { padding: 72px 0; background: #fff; }
.ti-institutions__grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 36px;
        align-items: center;
}
.ti-institutions h2 {
        font-family: var(--ti-font-serif);
        font-size: clamp(1.6rem, 1rem + 2vw, 2.5rem);
        margin-bottom: 16px;
}
.ti-checklist { display: flex; flex-direction: column; gap: 14px; margin: 18px 0 26px; }
.ti-checklist li {
        display: flex;
        align-items: center;
        gap: 12px;
        color: var(--ti-primary);
        font-weight: 500;
}
.ti-check {
        display: inline-flex;
        width: 22px;
        height: 22px;
        border-radius: 999px;
        background: var(--ti-secondary);
        flex-shrink: 0;
        position: relative;
}
.ti-check::before {
        content: "";
        position: absolute;
        left: 7px;
        top: 4px;
        width: 6px;
        height: 11px;
        border-right: 2px solid #fff;
        border-bottom: 2px solid #fff;
        transform: rotate(45deg);
}
.ti-institutions__visual {
        border-radius: var(--ti-radius-xl);
        overflow: hidden;
        box-shadow: var(--ti-shadow-lg);
        aspect-ratio: 16 / 10;
}
.ti-institutions__visual img { width: 100%; height: 100%; object-fit: cover; }

@media (min-width: 1024px) {
        .ti-institutions { padding: 110px 0; }
        .ti-institutions__grid { grid-template-columns: 1fr 1fr; gap: 56px; }
}

/* ==========================================================================
   Stats Strip
   ========================================================================== */
.ti-stats {
        padding: 56px 0;
        background: var(--ti-secondary);
        color: #fff;
}
.ti-stats__grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 16px;
        text-align: center;
}
.ti-stats__num {
        font-family: var(--ti-font-serif);
        font-size: clamp(2rem, 1.4rem + 2.4vw, 3rem);
        font-weight: 700;
        color: #fff;
        margin-bottom: 4px;
}
.ti-stats__label {
        color: rgba(255,255,255,.82);
        font-size: 12px;
        font-weight: 600;
        letter-spacing: .14em;
        text-transform: uppercase;
}
@media (min-width: 768px) {
        .ti-stats { padding: 72px 0; }
        .ti-stats__grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 0;
        }
        .ti-stats__grid > div {
                padding: 0 16px;
                border-left: 1px solid rgba(255,255,255,.12);
        }
        .ti-stats__grid > div:first-child { border-left: none; }
}

/* ==========================================================================
   Final CTA  (modernised)
   ========================================================================== */
.ti-final {
        padding: 96px 0 110px;
        position: relative;
        background:
                radial-gradient(circle at 12% 20%, rgba(15,118,110,.10), transparent 55%),
                radial-gradient(circle at 88% 80%, rgba(34,197,94,.09), transparent 55%),
                var(--ti-bg);
        overflow: hidden;
}
.ti-final::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image:
                linear-gradient(to right, rgba(15,64,64,.06) 1px, transparent 1px),
                linear-gradient(to bottom, rgba(15,64,64,.06) 1px, transparent 1px);
        background-size: 32px 32px;
        mask-image: radial-gradient(ellipse at 50% 50%, black 0%, transparent 75%);
        -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 0%, transparent 75%);
        pointer-events: none;
}
.ti-final__card {
        position: relative;
        max-width: 1040px;
        margin: 0 auto;
        padding: 56px 28px;
        background:
                radial-gradient(circle at 0% 0%, rgba(34,197,94,.22), transparent 45%),
                radial-gradient(circle at 100% 100%, rgba(20,184,166,.20), transparent 50%),
                linear-gradient(135deg, #0b3a3a 0%, #0f4c4c 45%, #114e4e 100%);
        color: #fff;
        border-radius: 28px;
        box-shadow:
                0 30px 60px -20px rgba(11,58,58,.45),
                0 10px 25px -10px rgba(11,58,58,.35),
                inset 0 1px 0 rgba(255,255,255,.08);
        text-align: center;
        overflow: hidden;
        isolation: isolate;
}
.ti-final__card::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: inherit;
        padding: 1px;
        background: linear-gradient(135deg, rgba(255,255,255,.25), rgba(255,255,255,0) 35%, rgba(34,197,94,.25));
        -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
        mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
}
.ti-final__blob {
        position: absolute;
        border-radius: 50%;
        filter: blur(60px);
        opacity: .55;
        z-index: 0;
        pointer-events: none;
}
.ti-final__blob--a {
        width: 320px; height: 320px;
        top: -120px; left: -100px;
        background: radial-gradient(circle, rgba(34,197,94,.55), transparent 70%);
}
.ti-final__blob--b {
        width: 360px; height: 360px;
        bottom: -140px; right: -120px;
        background: radial-gradient(circle, rgba(56,189,248,.40), transparent 70%);
}
.ti-final__grid {
        position: absolute;
        inset: 0;
        background-image:
                linear-gradient(to right, rgba(255,255,255,.06) 1px, transparent 1px),
                linear-gradient(to bottom, rgba(255,255,255,.06) 1px, transparent 1px);
        background-size: 40px 40px;
        mask-image: radial-gradient(ellipse at 50% 0%, black 0%, transparent 70%);
        -webkit-mask-image: radial-gradient(ellipse at 50% 0%, black 0%, transparent 70%);
        z-index: 0;
        pointer-events: none;
}
.ti-final__inner {
        position: relative;
        z-index: 1;
}
.ti-final__eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 16px;
        border-radius: 999px;
        background: rgba(255,255,255,.10);
        border: 1px solid rgba(255,255,255,.18);
        backdrop-filter: blur(8px);
        color: #d1fae5;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: .02em;
        text-transform: uppercase;
        margin-bottom: 22px;
}
.ti-final__dot {
        width: 8px; height: 8px;
        border-radius: 50%;
        background: #22c55e;
        box-shadow: 0 0 0 4px rgba(34,197,94,.22);
        animation: ti-final-pulse 2s ease-in-out infinite;
}
@keyframes ti-final-pulse {
        0%, 100% { transform: scale(1); opacity: 1; }
        50%      { transform: scale(1.2); opacity: .7; }
}
.ti-final__card h2 {
        font-family: var(--ti-font-serif);
        font-size: clamp(1.75rem, 1.2rem + 2.4vw, 3rem);
        line-height: 1.2;
        color: #ffffff !important;
        margin: 0 0 18px;
        letter-spacing: -.01em;
        text-shadow: 0 1px 2px rgba(0,0,0,.18);
}
.ti-final__card h2 em {
        font-style: italic;
        background: linear-gradient(90deg, #34d399, #5eead4);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        color: #5eead4;
        white-space: nowrap;
        text-shadow: none;
}
.ti-final__card p {
        max-width: 620px;
        margin: 0 auto 28px;
        color: rgba(255,255,255,.82);
        font-size: clamp(1rem, .95rem + .25vw, 1.125rem);
        line-height: 1.65;
}
.ti-final__chips {
        list-style: none;
        margin: 0 0 32px;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
}
.ti-final__chips li {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 16px;
        border-radius: 999px;
        background: rgba(255,255,255,.08);
        border: 1px solid rgba(255,255,255,.14);
        color: #fff;
        font-size: 14px;
        font-weight: 500;
}
.ti-final__chips li svg {
        width: 16px; height: 16px;
        color: #34d399;
}
.ti-final__actions {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 18px;
        margin-bottom: 26px;
}
.ti-final__actions .ti-btn--whatsapp {
        box-shadow: 0 14px 30px -8px rgba(34,197,94,.55);
}
.ti-final__phone {
        display: inline-flex;
        align-items: center;
        gap: 14px;
        padding: 10px 20px 10px 10px;
        border-radius: 999px;
        background: rgba(255,255,255,.08);
        border: 1px solid rgba(255,255,255,.16);
        color: #fff;
        font-weight: 600;
        transition: background .2s ease, transform .2s ease;
}
.ti-final__phone:hover {
        background: rgba(255,255,255,.14);
        transform: translateY(-1px);
        color: #fff;
}
.ti-final__phone-icon {
        display: inline-flex;
        width: 40px;
        height: 40px;
        border-radius: 999px;
        background: linear-gradient(135deg, #22c55e, #14b8a6);
        align-items: center;
        justify-content: center;
        color: #fff;
        box-shadow: 0 6px 14px -4px rgba(34,197,94,.55);
}
.ti-final__phone-icon svg { width: 18px; height: 18px; }
.ti-final__phone-text {
        display: inline-flex;
        flex-direction: column;
        align-items: flex-start;
        line-height: 1.15;
}
.ti-final__phone-label {
        font-size: 11px;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: .08em;
        color: rgba(255,255,255,.65);
}
.ti-final__assurance {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin: 0 auto;
        font-size: 13px;
        color: rgba(255,255,255,.65);
        max-width: none;
}
.ti-final__assurance svg {
        width: 16px; height: 16px;
        color: #34d399;
        flex-shrink: 0;
}

@media (min-width: 640px) {
        .ti-final__card  { padding: 72px 64px; }
        .ti-final__actions { flex-direction: row; justify-content: center; }
}
@media (min-width: 1024px) {
        .ti-final        { padding: 120px 0 130px; }
        .ti-final__card  { padding: 84px 80px; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.ti-footer {
        background: var(--ti-primary);
        color: rgba(255,255,255,.78);
        padding: 56px 0 24px;
}
.ti-footer__grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 32px;
}
.ti-footer h3 {
        font-size: 1.05rem;
        color: #fff;
        margin: 0 0 14px;
        font-weight: 600;
}
.ti-footer__logo-wrap {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        padding: 8px 16px;
        border-radius: 14px;
        margin-bottom: 16px;
}
.ti-footer__logo-wrap img { height: 56px; width: auto; }
.ti-footer p { font-size: 14px; max-width: 320px; line-height: 1.6; }
.ti-footer ul { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.ti-footer ul li { display: flex; align-items: center; gap: 8px; }
.ti-footer ul li svg { width: 16px; height: 16px; }
.ti-footer ul a:hover { color: #fff; }
.ti-footer__bottom {
        margin-top: 36px;
        padding-top: 20px;
        border-top: 1px solid rgba(255,255,255,.12);
        text-align: center;
        font-size: 13px;
        color: rgba(255,255,255,.6);
}

@media (min-width: 640px) {
        .ti-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
        .ti-footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
}

/* ==========================================================================
   Floating WhatsApp
   ========================================================================== */
.ti-floating-wa {
        position: fixed;
        right: 18px;
        bottom: 18px;
        width: 56px;
        height: 56px;
        border-radius: 999px;
        background: var(--ti-wa);
        color: #fff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
        z-index: 60;
        transition: transform .15s ease, background-color .15s ease;
}
.ti-floating-wa:hover { background: var(--ti-wa-dark); transform: scale(1.06); }
.ti-floating-wa svg { width: 28px; height: 28px; }

/* ==========================================================================
   Reveal animation (small scroll-in fade)
   ========================================================================== */
.ti-reveal {
        opacity: 0;
        transform: translateY(14px);
        transition: opacity .6s ease, transform .6s ease;
}
.ti-reveal.is-visible {
        opacity: 1;
        transform: none;
}
@media (prefers-reduced-motion: reduce) {
        .ti-reveal { opacity: 1; transform: none; transition: none; }
}
