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

:root {
    --tp-primary: #4f46e5;
    --tp-secondary: #4338ca;
    --tp-accent: #10b981;
    --tp-background: #eef2ff;
    --tp-text: #1e1b4b;
    --tp-muted: #818cf8;
    --tp-surface: rgba(255,255,255,0.6);
    --tp-border-radius-card: 16px;
    --tp-border-radius-button: 12px;
    --tp-spacing-xs: 8px;
    --tp-spacing-sm: 16px;
    --tp-spacing-md: 24px;
    --tp-spacing-lg: 32px;
    --tp-spacing-xl: 48px;
    --tp-spacing-xxl: 64px;
    --tp-spacing-xxxl: 96px;
    --tp-spacing-xxxxl: 128px;

    --tp-shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --tp-shadow-md: 0 4px 20px rgba(0,0,0,0.04), var(--tp-shadow-sm);
    --tp-shadow-lg: 0 10px 30px rgba(0,0,0,0.08), var(--tp-shadow-md);
    --tp-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --tp-max-width: 1280px;
}

/* Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 100%; /* Base for rem units */
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--tp-text);
    background-color: var(--tp-background);
    line-height: 1.75;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 1.125rem; /* 18px */
}

::selection {
    background-color: var(--tp-primary);
    color: #595959;
}

/* Typography */
h1, .tp-h1 {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 4.5rem); /* 40px to 72px */
    letter-spacing: -0.02em;
    line-height: 1.05;
    color: var(--tp-text);
}

h2, .tp-h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 3.5vw, 3rem); /* 32px to 48px */
    letter-spacing: -0.015em;
    line-height: 1.15;
    color: var(--tp-text);
}

h3, .tp-h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.875rem; /* 30px */
    letter-spacing: -0.01em;
    line-height: 1.25;
    color: var(--tp-text);
}

p {
    max-width: 65ch;
    margin-bottom: var(--tp-spacing-sm);
}

a {
    color: var(--tp-primary);
    text-decoration: none;
    transition: var(--tp-transition);
}

a:hover {
    color: var(--tp-secondary);
    text-decoration: underline;
}

strong {
    font-weight: 600;
}

/* Utility Classes */
.tp-container {
    max-width: var(--tp-max-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--tp-spacing-md);
    padding-right: var(--tp-spacing-md);
}

.tp-section {
    padding-top: var(--tp-spacing-xxxl);
    padding-bottom: var(--tp-spacing-xxxl);
    position: relative;
}

.tp-section-alt {
    background-color: var(--tp-surface);
    padding-top: var(--tp-spacing-xxxl);
    padding-bottom: var(--tp-spacing-xxxl);
    position: relative;
}

.tp-grid {
    display: grid;
    gap: var(--tp-spacing-xl);
}

.tp-grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.tp-grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.tp-grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.tp-flex {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tp-text-center {
    text-align: center;
}

.tp-subheading {
    font-size: 1.25rem;
    color: var(--tp-muted);
    margin-top: var(--tp-spacing-sm);
    margin-bottom: var(--tp-spacing-xxl);
}

/* Buttons */
.tp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--tp-spacing-sm) var(--tp-spacing-lg);
    border-radius: var(--tp-border-radius-button);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--tp-transition);
    border: 2px solid transparent;
    font-size: 1rem;
}

.tp-button-primary {
    background-color: var(--tp-primary);
    color: #595959;
}

.tp-button-primary:hover {
    background-color: var(--tp-secondary);
    transform: translateY(-2px);
    box-shadow: var(--tp-shadow-sm);
}

.tp-button-secondary {
    background-color: var(--tp-accent);
    color: #595959;
}

.tp-button-secondary:hover {
    background-color: #0e946a;
    transform: translateY(-2px);
    box-shadow: var(--tp-shadow-sm);color:#ffffff}

.tp-button-outline {
    background-color: transparent;
    border-color: var(--tp-primary);
    color: var(--tp-primary);
}

.tp-button-outline:hover {
    background-color: var(--tp-primary);
    color: #595959;
    transform: translateY(-2px);
    box-shadow: var(--tp-shadow-sm);
}

.tp-link {
    color: var(--tp-primary);
    text-decoration: underline;
    font-weight: 500;
}

.tp-link:hover {
    color: var(--tp-secondary);
}

/* Header & Navigation */
.tp-header {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: var(--tp-spacing-md) 0;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--tp-shadow-sm);
}

.tp-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tp-logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--tp-text);
    text-decoration: none;
}

.tp-logo:hover {
    color: var(--tp-primary);
    text-decoration: none;
}

.tp-nav-list {
    display: flex;
    list-style: none;
    gap: var(--tp-spacing-lg);
}

.tp-nav-link {
    color: var(--tp-text);
    font-weight: 500;
    padding: var(--tp-spacing-xs) var(--tp-spacing-sm);
    border-radius: var(--tp-border-radius-button);
}

.tp-nav-link:hover {
    color: var(--tp-primary);
    text-decoration: none;
    background-color: rgba(var(--tp-primary-rgb), 0.05);
}

.tp-mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: var(--tp-spacing-xxl);
    cursor: pointer;
    color: var(--tp-text);
}

/* Hero Section */
.tp-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--tp-spacing-xxxl) 0;
    overflow: hidden;
    background: linear-gradient(135deg, var(--tp-primary) 0%, var(--tp-accent) 100%);
    color: #595959;
}

.tp-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;charset=UTF-8,%3Csvg width="100%25" height="100%25" viewBox="0 0 1200 800" xmlns="http://www.w3.org/2000/svg"%3E%3Cdefs%3E%3Cfilter id="f1" x="-50%25" y="-50%25" width="200%25" height="200%25"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.7" numOctaves="3" stitchTiles="stitch"/%3E%3CfeColorMatrix type="matrix" values="1 0 0 0 0%0A0 1 0 0 0%0A0 0 1 0 0%0A0 0 0 6 -4"/%3E%3CfeComposite in2="SourceGraphic" operator="in"/%3E%3CfeGaussianBlur stdDeviation="20"/%3E%3C/filter%3E%3C/defs%3E%3Crect width="100%25" height="100%25" fill="%234f46e5"/%3E%3Crect width="100%25" height="100%25" fill="%2310b981" filter="url(%23f1)" opacity="0.3"/%3E%3C/svg%3E') top right / cover no-repeat,
                linear-gradient(135deg, var(--tp-primary) 0%, var(--tp-accent) 100%);
    opacity: 0.8;
    z-index: 1;
}

.tp-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--tp-border-radius-card);
    padding: var(--tp-spacing-xxl);
    max-width: 800px;
    box-shadow: var(--tp-shadow-lg);
}

.tp-hero-text {
    margin-bottom: var(--tp-spacing-xl);
}

.tp-hero-content .tp-h1,
.tp-hero-content .tp-hero-subtitle {
    color: #595959;
}

.tp-hero-subtitle {
    font-size: 1.3rem;
    max-width: 700px;
    margin: var(--tp-spacing-md) auto var(--tp-spacing-xl);
}

/* Cards & Icons */
.tp-card {
    background-color: var(--tp-surface);
    border-radius: var(--tp-border-radius-card);
    padding: var(--tp-spacing-xl);
    box-shadow: var(--tp-shadow-md);
    transition: var(--tp-transition);
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
}

.tp-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--tp-shadow-lg);
}

.tp-card-feature {
    text-align: center;
}

.tp-card-feature .tp-h3 {
    margin-top: var(--tp-spacing-md);
    margin-bottom: var(--tp-spacing-sm);
}

.tp-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    stroke-width: 2;
    stroke: currentColor;
}

.tp-icon-large {
    width: 48px;
    height: 48px;
    color: var(--tp-primary);
    margin-bottom: var(--tp-spacing-sm);
}

.tp-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: var(--tp-spacing-xxl);
    height: var(--tp-spacing-xxl);
    background-color: rgba(var(--tp-primary-rgb), 0.1);
    border-radius: 50%;
    margin: 0 auto var(--tp-spacing-md);
}

.tp-check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--tp-spacing-sm);
    margin-top: var(--tp-spacing-md);
}

.tp-check-item {
    display: flex;
    align-items: flex-start;
    gap: var(--tp-spacing-xs);
    font-size: 1rem;
}

.tp-check-item .tp-icon {
    width: 20px;
    height: 20px;
    color: var(--tp-accent);
    flex-shrink: 0;
    margin-top: 3px;
}

/* Editorial Elements */
.tp-pullquote {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-style: italic;
    font-weight: 500;
    line-height: 1.3;
    margin: var(--tp-spacing-xxxl) auto;
    max-width: 800px;
    text-align: center;
    color: var(--tp-text);
    position: relative;
}

.tp-pullquote::before {
    content: '“';
    font-size: 8rem;
    line-height: 1;
    color: var(--tp-muted);
    position: absolute;
    top: -var(--tp-spacing-xl);
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.1;
    z-index: 0;
}

.tp-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--tp-spacing-xl);
    text-align: center;
    margin-top: var(--tp-spacing-xxl);
}

.tp-stat-item {
    background-color: var(--tp-surface);
    padding: var(--tp-spacing-lg);
    border-radius: var(--tp-border-radius-card);
    box-shadow: var(--tp-shadow-sm);
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
}

.tp-stat-number {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    color: var(--tp-primary);
    line-height: 1;
    margin-bottom: var(--tp-spacing-xs);
}

.tp-stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--tp-muted);
    font-weight: 600;
}

/* Testimonials */
.tp-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--tp-spacing-xl);
}

.tp-testimonial-card {
    background-color: var(--tp-surface);
    border-radius: var(--tp-border-radius-card);
    padding: var(--tp-spacing-xl);
    box-shadow: var(--tp-shadow-md);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    transition: var(--tp-transition);
}

.tp-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--tp-shadow-lg);
}

.tp-testimonial-quote {
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: var(--tp-spacing-md);
    color: var(--tp-text);
}

.tp-testimonial-quote::before {
    content: '“';
    font-size: 2rem;
    line-height: 1;
    color: var(--tp-primary);
    margin-right: var(--tp-spacing-xs);
    vertical-align: middle;
}

.tp-testimonial-cite {
    display: flex;
    align-items: center;
    gap: var(--tp-spacing-sm);
    margin-top: var(--tp-spacing-md);
}

.tp-testimonial-cite img {
    width: var(--tp-spacing-xl);
    height: var(--tp-spacing-xl);
    border-radius: 50%;
    object-fit: cover;
}

.tp-testimonial-cite-info {
    display: flex;
    flex-direction: column;
}

.tp-testimonial-cite-name {
    font-weight: 600;
    color: var(--tp-text);
}

.tp-testimonial-cite-role {
    font-size: 0.9rem;
    color: var(--tp-muted);
}

.tp-testimonial-stars {
    color: gold;
    display: flex;
    gap: 2px;
    margin-bottom: var(--tp-spacing-sm);
}

.tp-testimonial-stars .tp-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* FAQ */
.tp-faq {
    display: grid;
    gap: var(--tp-spacing-md);
}

.tp-faq-item {
    background-color: var(--tp-surface);
    border-radius: var(--tp-border-radius-card);
    padding: var(--tp-spacing-md) var(--tp-spacing-lg);
    box-shadow: var(--tp-shadow-sm);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
}

.tp-faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    cursor: pointer;
    padding: var(--tp-spacing-xs) 0;
    color: var(--tp-text);
    transition: var(--tp-transition);
}

.tp-faq-q:hover {
    color: var(--tp-primary);
}

.tp-faq-q::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.tp-faq-item.active .tp-faq-q::after {
    content: '-';
    transform: rotate(0deg);
}

.tp-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding-top: 0;
    padding-bottom: 0;
    color: var(--tp-muted);
}

.tp-faq-item.active .tp-faq-a {
    max-height: 500px; /* Sufficiently large to reveal content */
    padding-top: var(--tp-spacing-sm);
    padding-bottom: var(--tp-spacing-sm);
}

/* CTA */
.tp-cta {
    background: linear-gradient(90deg, var(--tp-primary) 0%, var(--tp-secondary) 100%);
    color: #595959;
    padding: var(--tp-spacing-xxxl) 0;
    text-align: center;
}

.tp-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.tp-cta .tp-h2 {
    color: #595959;
    margin-bottom: var(--tp-spacing-md);
}

.tp-cta p {
    font-size: 1.125rem;
    margin-bottom: var(--tp-spacing-xl);
    color: rgba(255, 255, 255, 0.9);
}

.tp-cta .tp-button {
    margin: 0 var(--tp-spacing-sm);
}

.tp-cta .tp-button-outline {
    border-color: #fff;
    color: #595959;
}

.tp-cta .tp-button-outline:hover {
    background-color: #fff;
    color: var(--tp-primary);
}

/* Form Styling */
.tp-contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--tp-spacing-md);
    padding: var(--tp-spacing-xl);
    background-color: var(--tp-surface);
    border-radius: var(--tp-border-radius-card);
    box-shadow: var(--tp-shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
}

.tp-form-group {
    display: flex;
    flex-direction: column;
    gap: var(--tp-spacing-xs);
}

.tp-form-label {
    font-weight: 600;
    color: var(--tp-text);
    font-size: 0.9rem;
}

.tp-form-input, .tp-form-textarea {
    width: 100%;
    padding: var(--tp-spacing-sm);
    border: 1px solid var(--tp-muted);
    border-radius: var(--tp-border-radius-button);
    background-color: rgba(255,255,255,0.8);
    color: var(--tp-text);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.tp-form-input:focus, .tp-form-textarea:focus {
    border-color: var(--tp-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(var(--tp-primary-rgb), 0.2);
}

.tp-form-textarea {
    min-height: 120px;
    resize: vertical;
}

.tp-form-error {
    color: #a40e0e;
    font-size: 0.9rem;
    margin-top: 4px;
}

.tp-form-success {
    color: var(--tp-accent);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    padding: var(--tp-spacing-sm);
    background-color: rgba(var(--tp-accent-rgb), 0.1);
    border-radius: var(--tp-border-radius-button);
}

/* Footer */
.tp-footer {
    background-color: #1e1b4b;
    color: rgba(255, 255, 255, 0.8);
    padding-top: var(--tp-spacing-xxxl);
    padding-bottom: var(--tp-spacing-md);color:#9a96d9}

.tp-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--tp-spacing-xl);
    margin-bottom: var(--tp-spacing-xxl);
}

.tp-footer-col h3 {
    color: #595959;
    margin-bottom: var(--tp-spacing-md);
    font-size: 1.25rem;
}

.tp-footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.tp-footer-list {
    list-style: none;
}

.tp-footer-list li {
    margin-bottom: var(--tp-spacing-xs);
}

.tp-footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
}

.tp-footer-link:hover {
    color: var(--tp-primary);
    text-decoration: underline;
}

.tp-footer-bottom {
    text-align: center;
    padding-top: var(--tp-spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.tp-social-links {
    display: flex;
    gap: var(--tp-spacing-sm);
    margin-top: var(--tp-spacing-md);
    justify-content: flex-start;
}

.tp-social-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    text-decoration: none;
}

.tp-social-links a:hover {
    color: var(--tp-primary);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tp-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.tp-animate.tp-animated {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .tp-nav-list {
        gap: var(--tp-spacing-md);
    }

    .tp-hero-content {
        padding: var(--tp-spacing-xl);
    }

    .tp-section {
        padding-top: var(--tp-spacing-xxl);
        padding-bottom: var(--tp-spacing-xxl);
    }
    .tp-section-alt {
        padding-top: var(--tp-spacing-xxl);
        padding-bottom: var(--tp-spacing-xxl);
    }

    .tp-grid-3, .tp-grid-4 {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .tp-nav-list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: var(--tp-shadow-md);
        padding: var(--tp-spacing-md) 0;
        border-top: 1px solid rgba(0,0,0,0.1);
    }

    .tp-nav-list.active {
        display: flex;
    }

    .tp-nav-item {
        text-align: center;
        width: 100%;
    }

    .tp-nav-link {
        display: block;
        padding: var(--tp-spacing-sm) var(--tp-spacing-md);
        color: var(--tp-text);
    }

    .tp-nav-link:hover {
        background-color: var(--tp-background);
    }

    .tp-mobile-toggle {
        display: block;
    }

    .tp-hero {
        min-height: 70vh;
    }

    .tp-hero-content {
        padding: var(--tp-spacing-lg);
    }

    .tp-h1 {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }

    .tp-h2 {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    .tp-hero-subtitle {
        font-size: 1.1rem;
    }

    .tp-cta .tp-button {
        display: block;
        margin: var(--tp-spacing-sm) auto;
        width: 80%;
    }

    .tp-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .tp-footer-col h3 {
        margin-top: var(--tp-spacing-xl);
    }

    .tp-footer-col:first-child h3 {
        margin-top: 0;
    }

    .tp-social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 1rem; /* 16px */
    }

    .tp-container {
        padding-left: var(--tp-spacing-sm);
        padding-right: var(--tp-spacing-sm);
    }

    .tp-hero {
        padding-top: var(--tp-spacing-xxl);
        padding-bottom: var(--tp-spacing-xxl);
    }

    .tp-section {
        padding-top: var(--tp-spacing-xxl);
        padding-bottom: var(--tp-spacing-xxl);
    }
    .tp-section-alt {
        padding-top: var(--tp-spacing-xxl);
        padding-bottom: var(--tp-spacing-xxl);
    }

    .tp-grid-2, .tp-grid-3, .tp-grid-4, .tp-stats, .tp-testimonial-grid, .tp-faq {
        grid-template-columns: 1fr;
    }

    .tp-button {
        padding: var(--tp-spacing-xs) var(--tp-spacing-md);
        font-size: 0.95rem;
    }

    .tp-pullquote {
        font-size: 1.25rem;
        margin: var(--tp-spacing-xxl) auto;
    }

    .tp-pullquote::before {
        font-size: 6rem;
        top: -var(--tp-spacing-md);
    }

    .tp-stat-number {
        font-size: 3rem;
    }

    .tp-faq-item {
        padding: var(--tp-spacing-sm) var(--tp-spacing-md);
    }

    .tp-cta .tp-button {
        width: 100%;
    }
}

/* === Quality polish === */
.tp-card, [class*="tp-card"] { transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.2s ease; }
.tp-card:hover, [class*="tp-card"]:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.16); }

button, [class*="btn"], [class*="cta"] { transition: all 0.3s ease; cursor: pointer; }
button:hover, [class*="btn"]:hover, [class*="cta"]:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); filter: brightness(1.05); }

img { max-width: 100%; height: auto; display: block; }

/* FAQ collapsed-by-default — hard fallback (any language, any topic) */
.tp-faq-a, [class*="faq-a"], [class*="faq-answer"] { display: none !important; max-height: 0; overflow: hidden; padding: 0 22px; transition: none; }
.tp-faq-item.active .tp-faq-a, [class*="faq-item"].active [class*="faq-a"], [class*="faq-item"].active [class*="faq-answer"] { display: block !important; max-height: none !important; padding: 0 22px 18px; }
.tp-faq-q, [class*="faq-q"], [class*="faq-question"] { cursor: pointer; user-select: none; }
.tp-faq-q *, [class*="faq-q"] * { pointer-events: none; }

/* === PREMIUM SCAFFOLD (class-contract baseline) === */
/* Layout */
.tp-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.tp-section { padding: 96px 0; background: #eef2ff; }
.tp-section-alt { padding: 96px 0; background: color-mix(in srgb, #4f46e5 4%, #eef2ff); }
.tp-grid { display: grid; gap: 32px; }
.tp-grid-2 { display: grid; gap: 32px; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.tp-grid-3 { display: grid; gap: 32px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.tp-grid-4 { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.tp-text-center { text-align: center; }
/* Header / Nav */
.tp-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.94); backdrop-filter: saturate(180%) blur(12px); border-bottom: 1px solid color-mix(in srgb, #1e1b4b 8%, transparent); }
.tp-header > .tp-container, .tp-header .tp-container { display: flex; align-items: center; gap: 32px; padding-top: 12px; padding-bottom: 12px; min-height: 64px; }
.tp-brand, .tp-logo { display: inline-flex; align-items: center; gap: 10px; font-family: Merriweather; font-weight: 700; font-size: 1.05rem; line-height: 1; color: #4f46e5; letter-spacing: -0.015em; text-decoration: none; flex-shrink: 0; max-width: 220px; margin-right: 24px; }
.tp-brand-mark { display: inline-flex; color: #4f46e5; flex-shrink: 0; }
.tp-brand-mark svg { display: block; width: 24px; height: 24px; }
.tp-brand-name { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; padding-left: 2px; }
.tp-nav-list, .tp-nav-links { display: flex; gap: 28px; list-style: none; margin: 0 0 0 auto; padding: 0; align-items: center; }
.tp-nav-link { color: #1e1b4b; font-weight: 500; font-size: 0.95rem; padding: 6px 0; position: relative; text-decoration: none; }
.tp-nav-link + .tp-nav-link { margin-left: 0; }
.tp-nav-link:hover { color: #4f46e5; }
.tp-mobile-toggle { display: none; background: none; border: 0; padding: 6px; cursor: pointer; margin-left: auto; font-size: 1.4rem; line-height: 1; }
/* Hero */
.tp-hero { padding: 112px 0 96px; background: radial-gradient(circle at 82% 18%, color-mix(in srgb, #4f46e5 12%, transparent), transparent 34%), linear-gradient(180deg, color-mix(in srgb, #4f46e5 7%, #eef2ff) 0%, #eef2ff 100%); position: relative; overflow: hidden; }
/* Hero hardening — kill AI-generated giant ghost/background text & accidental absolute-positioned mockups */
.tp-hero [class*="ghost"], .tp-hero [class*="bg-text"], .tp-hero [class*="watermark"], .tp-hero [class*="hero-bg"], .tp-hero [aria-hidden="true"][class*="text"], .tp-hero [data-decorative="true"] { display: none !important; }
.tp-hero .tp-hero-image, .tp-hero .tp-dashboard-mockup { position: relative !important; }
.tp-hero .tp-hero-image { max-width: 100%; }
.tp-hero .tp-hero-image > * { max-width: 100%; }
.tp-hero .tp-stats { position: static !important; }
.tp-hero > .tp-container { max-width: 1200px; }
.tp-hero h1, .tp-hero .tp-h1 { font-family: Merriweather; font-size: clamp(2.75rem, 5.2vw, 4.75rem); line-height: 1.04; letter-spacing: -0.025em; font-weight: 800; color: #1e1b4b; margin: 0; max-width: 720px; width: 100%; text-wrap: balance; word-break: normal; overflow-wrap: break-word; hyphens: none; }
.tp-hero p, .tp-hero .tp-hero-sub, .tp-hero .tp-hero-subtitle { font-size: clamp(1.125rem, 1.5vw, 1.3rem); line-height: 1.7; color: #818cf8; max-width: 48ch; margin: 0; }
.tp-hero-content { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr); gap: 72px; align-items: center; }
.tp-hero-text { display: flex; flex-direction: column; gap: 24px; align-items: flex-start; }
.tp-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.tp-hero-image { position: relative; }
.tp-hero-image::before { content: ''; position: absolute; inset: 22px -18px -18px 22px; border-radius: 24px; background: color-mix(in srgb, #4f46e5 12%, transparent); z-index: 0; }
.tp-hero-image img { position: relative; z-index: 1; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 24px; box-shadow: 0 36px 90px -34px rgba(0,0,0,0.42), 0 2px 10px rgba(0,0,0,0.08); }
.tp-hero-subtitle { font-size: 1.25rem; line-height: 1.6; color: #818cf8; max-width: 60ch; }
.tp-h1 { font-family: Merriweather; font-size: clamp(2.5rem, 5vw, 4.25rem); line-height: 1.05; letter-spacing: -0.02em; font-weight: 800; color: #1e1b4b; margin: 0; }
.tp-h2 { font-family: Merriweather; font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.15; letter-spacing: -0.015em; font-weight: 700; color: #1e1b4b; margin: 0 0 24px; }
.tp-h3 { font-family: Merriweather; font-size: 1.5rem; line-height: 1.3; font-weight: 700; color: #1e1b4b; margin: 0 0 12px; }
.tp-subheading { font-size: 1.125rem; line-height: 1.7; color: #818cf8; max-width: 720px; margin: 0 auto 64px; }
/* Buttons */
.tp-button { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 10px; font-weight: 600; font-size: 1rem; text-decoration: none; cursor: pointer; border: 2px solid transparent; transition: all 0.25s cubic-bezier(0.4,0,0.2,1); white-space: nowrap; line-height: 1; }
.tp-button-primary { background: #4f46e5; color: #fff; border-color: #4f46e5; }
.tp-button-primary:hover { background: #4338ca; border-color: #4338ca; color: #fff; transform: translateY(-2px); box-shadow: 0 12px 24px -8px color-mix(in srgb, #4f46e5 50%, transparent); }
.tp-button-secondary { background: #4338ca; color: #fff; border-color: #4338ca; }
.tp-button-secondary:hover { transform: translateY(-2px); filter: brightness(1.05); color: #fff; }
.tp-button-outline { background: transparent; color: #4f46e5; border-color: #4f46e5; }
.tp-button-outline:hover { background: #4f46e5; color: #fff; }
.tp-link { color: #4f46e5; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.tp-link:hover { gap: 10px; }
/* Cards */
.tp-card { background: #fff; border: 1px solid color-mix(in srgb, #1e1b4b 6%, transparent); border-radius: 14px; padding: 32px; transition: transform 0.3s ease, box-shadow 0.3s ease; box-shadow: 0 4px 20px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.06); display: flex; flex-direction: column; gap: 16px; }
.tp-card:hover { transform: translateY(-4px); box-shadow: 0 24px 48px -16px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06); }
.tp-card-feature, .tp-card-service, .tp-card-process { text-align: left; }
/* Icons */
.tp-icon-wrapper { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 12px; background: color-mix(in srgb, #4f46e5 10%, transparent); color: #4f46e5; }
.tp-icon-wrapper svg, .tp-icon-wrapper .tp-icon { width: 28px; height: 28px; stroke: #4f46e5; }
.tp-icon { width: 20px; height: 20px; stroke: currentColor; flex-shrink: 0; }
.tp-icon-large { width: 48px; height: 48px; stroke: #4f46e5; }
/* Check list */
.tp-check-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
.tp-check-item { display: flex; align-items: flex-start; gap: 12px; line-height: 1.6; }
.tp-check-item .tp-icon { color: #4f46e5; margin-top: 4px; }
/* Editorial */
.tp-pullquote { font-family: Merriweather; font-style: italic; font-size: clamp(1.5rem, 2.5vw, 2.25rem); line-height: 1.4; color: #1e1b4b; max-width: 900px; margin: 64px auto; padding: 0 32px; position: relative; text-align: center; }
.tp-pullquote::before { content: '"'; font-size: 6rem; line-height: 0.8; color: #4f46e5; opacity: 0.3; position: absolute; left: 0; top: -16px; }
.tp-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 48px; padding: 64px 0; }
.tp-stat-item { text-align: center; }
.tp-stat-number { display: block; font-family: Merriweather; font-size: clamp(3rem, 5vw, 4.5rem); font-weight: 800; color: #4f46e5; line-height: 1; letter-spacing: -0.03em; }
.tp-stat-label { display: block; margin-top: 12px; font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: #818cf8; }
/* Testimonials */
.tp-testimonial-grid { display: grid; gap: 32px; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.tp-testimonial-card { background: #fff; padding: 32px; border-radius: 14px; box-shadow: 0 4px 20px rgba(0,0,0,0.04); border: 1px solid color-mix(in srgb, #1e1b4b 6%, transparent); }
.tp-testimonial-quote { font-style: italic; line-height: 1.7; color: #1e1b4b; margin-bottom: 16px; }
.tp-testimonial-cite { font-weight: 600; color: #4f46e5; font-size: 0.95rem; }
.tp-testimonial-stars { color: #10b981; margin-bottom: 12px; }
/* FAQ */
.tp-faq { display: flex; flex-direction: column; gap: 12px; max-width: 820px; margin: 0 auto; }
.tp-faq-item { background: #fff; border: 1px solid color-mix(in srgb, #1e1b4b 8%, transparent); border-radius: 12px; overflow: hidden; transition: box-shadow 0.2s ease; }
.tp-faq-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.tp-faq-q { padding: 20px 24px; cursor: pointer; user-select: none; font-weight: 600; color: #1e1b4b; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.tp-faq-q::after { content: '+'; font-size: 1.5rem; color: #4f46e5; transition: transform 0.3s ease; flex-shrink: 0; }
.tp-faq-item.active .tp-faq-q::after { transform: rotate(45deg); }
/* CTA */
.tp-cta { padding: 96px 0; background: linear-gradient(135deg, #4f46e5 0%, #4338ca 100%); color: #fff; text-align: center; }
.tp-cta .tp-h2, .tp-cta h2 { color: #fff; }
.tp-cta-content { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 24px; align-items: center; }
.tp-cta .tp-button-primary { background: #fff; color: #4f46e5; border-color: #fff; }
.tp-cta .tp-button-primary:hover { background: #eef2ff; color: #4f46e5; }
/* Form */
.tp-form, .tp-contact-form { display: flex; flex-direction: column; gap: 20px; width: min(100%, 680px); margin: 32px auto 0; background: #fff; padding: 44px; border-radius: 24px; border: 1px solid color-mix(in srgb, #1e1b4b 7%, transparent); box-shadow: 0 30px 80px -34px rgba(0,0,0,0.32), 0 10px 28px -18px color-mix(in srgb, #4f46e5 40%, transparent); text-align: left; color: #1e1b4b; }
.tp-form-row { display: grid; gap: 20px; grid-template-columns: 1fr 1fr; }
@media (max-width: 600px) { .tp-form-row { grid-template-columns: 1fr; } }
.tp-form-group { display: flex; flex-direction: column; gap: 8px; }
.tp-form-label, .tp-form label { font-weight: 600; font-size: 0.9rem; color: #1e1b4b; letter-spacing: 0.01em; }
.tp-form-input, .tp-form-textarea, .tp-form input:not([type="submit"]), .tp-form textarea, .tp-form select { padding: 15px 16px; border: 1.5px solid color-mix(in srgb, #1e1b4b 12%, transparent); border-radius: 12px; font-size: 1rem; font-family: inherit; background: color-mix(in srgb, #4f46e5 2%, #fff); color: #1e1b4b; transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease; width: 100%; box-sizing: border-box; }
.tp-form-input:hover, .tp-form-textarea:hover { border-color: color-mix(in srgb, #4f46e5 35%, transparent); }
.tp-form-input:focus, .tp-form-textarea:focus, .tp-form input:focus, .tp-form textarea:focus { outline: none; border-color: #4f46e5; box-shadow: 0 0 0 4px color-mix(in srgb, #4f46e5 18%, transparent); }
.tp-form-textarea, .tp-form textarea { min-height: 140px; resize: vertical; }
/* Form messages — HIDDEN BY DEFAULT, only shown when JS adds .is-visible or removes [hidden] */
.tp-form-error, [class*="form-error"], [class*="form-message-error"] { display: none; color: #dc2626; font-size: 0.875rem; padding: 10px 12px; background: color-mix(in srgb, #dc2626 8%, transparent); border-radius: 8px; }
.tp-form-success, [class*="form-success"], [class*="form-message-success"] { display: none; color: #047857; font-weight: 600; padding: 12px 14px; background: color-mix(in srgb, #059669 10%, transparent); border-radius: 8px; }
.tp-form-error[hidden], .tp-form-success[hidden], [class*="form-error"][hidden], [class*="form-success"][hidden] { display: none !important; }
.tp-form-error.is-visible, .tp-form-success.is-visible { display: block; }
.tp-cta .tp-form, .tp-cta .tp-contact-form { color: #1e1b4b; }
.tp-cta .tp-form button[type="submit"], .tp-cta .tp-contact-form button[type="submit"] { background: #4f46e5; color: #fff; border-color: #4f46e5; }
/* Footer */
.tp-footer { background: #1e1b4b; color: color-mix(in srgb, #fff 80%, transparent); padding: 96px 0 32px; }
.tp-footer .tp-h3, .tp-footer h3, .tp-footer h4 { color: #fff; font-family: Merriweather; font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 20px; }
.tp-footer .tp-logo { color: #fff; }
.tp-footer-grid { display: grid; gap: 48px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); margin-bottom: 64px; }
.tp-footer-col { display: flex; flex-direction: column; gap: 12px; }
.tp-footer-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.tp-footer-link { color: color-mix(in srgb, #fff 70%, transparent); font-size: 0.95rem; }
.tp-footer-link:hover { color: #fff; }
.tp-footer-bottom { padding-top: 32px; border-top: 1px solid color-mix(in srgb, #fff 12%, transparent); font-size: 0.875rem; color: color-mix(in srgb, #fff 60%, transparent); text-align: center; }
.tp-social-links { display: flex; gap: 16px; }
.tp-social-links a { color: color-mix(in srgb, #fff 70%, transparent); }
.tp-social-links a:hover { color: #fff; }
/* Responsive */
@media (max-width: 900px) {
  .tp-hero { padding: 80px 0 64px; }
  .tp-hero-content { grid-template-columns: 1fr; gap: 40px; }
  .tp-section, .tp-section-alt { padding: 64px 0; }
  .tp-cta { padding: 64px 0; }
  .tp-footer { padding: 64px 0 24px; }
}
@media (max-width: 720px) {
  .tp-nav-list { display: none; }
  .tp-mobile-toggle { display: inline-flex; }
  .tp-nav.active .tp-nav-list, .tp-header.active .tp-nav-list, .tp-nav-list.active, .tp-nav-links.active { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #fff; padding: 24px; gap: 16px; box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
  .tp-card { padding: 24px; }
  .tp-form, .tp-contact-form { padding: 28px; border-radius: 18px; }
}

/* === STYLE FAMILY: fintech_glass === */
.tp-hero { background: linear-gradient(135deg, color-mix(in srgb, #4f46e5 14%, #eef2ff) 0%, color-mix(in srgb, #10b981 14%, #eef2ff) 100%); padding: 120px 0 96px; }
.tp-card { background: rgba(255,255,255,0.6); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border: 1px solid rgba(255,255,255,0.5); border-radius: 14px; box-shadow: 0 8px 32px rgba(31,38,135,0.08); }
.tp-button-primary { background: linear-gradient(135deg, #4f46e5 0%, #10b981 100%); color: #fff; border-radius: 10px; }
.tp-stats { backdrop-filter: blur(14px); background: rgba(255,255,255,0.5); border-radius: 16px; padding: 32px; }