/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;400;500;600;700&family=Sora:wght@400;600;700&display=swap');

/* Base Styles & Custom Properties */
:root {
    --fl8-primary: #0369a1; /* Sky Corporate Blue */
    --fl8-secondary: #075985; /* Darker Blue */
    --fl8-accent: #d97706; /* Orange Accent */
    --fl8-background: #f0f9ff; /* Light Blue Background */
    --fl8-text-color: #0c4a6e; /* Dark Blue Text */
    --fl8-muted-text: #7dd3fc; /* Muted Light Blue */
    --fl8-white: #ffffff;
    --fl8-black: #000000;
    --fl8-border-radius: 8px;
    --fl8-transition-speed: 0.3s ease;

    --tp-header-height: 80px;
    --tp-section-padding-desktop: 100px 0;
    --tp-section-padding-mobile: 60px 0;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'IBM Plex Sans', sans-serif;
    color: var(--fl8-text-color);
    line-height: 1.6;
    background-color: var(--fl8-background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body::selection {
    background-color: var(--fl8-accent);
    color: var(--fl8-white);
}

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

a:hover {
    color: var(--fl8-accent);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Sora', sans-serif;
    color: var(--fl8-secondary);
    margin-bottom: 0.8em;
    line-height: 1.2;
}

h1 {
    font-size: 3.5em;
    font-weight: 700;
    letter-spacing: -0.05em;
    color: var(--fl8-primary);
}

h2 {
    font-size: 2.8em;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--fl8-secondary);
}

h3 {
    font-size: 2.2em;
    font-weight: 600;
    letter-spacing: -0.03em;
}

h4 {
    font-size: 1.8em;
    font-weight: 600;
}

h5 {
    font-size: 1.4em;
    font-weight: 500;
}

h6 {
    font-size: 1.1em;
    font-weight: 500;
    letter-spacing: 0.02em;
}

p {
    margin-bottom: 1em;
}

strong {
    font-weight: 600;
}

/* Layout & Utilities */
.tp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.tp-section {
    padding: var(--tp-section-padding-desktop);
    position: relative;
    overflow: hidden;
}

.tp-section:nth-of-type(even) {
    background-color: var(--fl8-background);
}

.tp-section:nth-of-type(odd) {
    background-color: var(--fl8-white);
}

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

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

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

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

.tp-animate.tp-animated {
    opacity: 1;
    transform: translateY(0);
}

/* Buttons */
.tp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--fl8-border-radius);
    font-size: 1.1em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all var(--fl8-transition-speed);
    border: 2px solid transparent;
    line-height: 1;
}

.tp-btn-primary {
    background-color: var(--fl8-primary);
    color: var(--fl8-white);
}

.tp-btn-primary:hover {
    background-color: var(--fl8-secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(3, 105, 161, 0.3);
}

.tp-btn-secondary {
    background-color: var(--fl8-accent);
    color: var(--fl8-white);
}

.tp-btn-secondary:hover {
    background-color: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(217, 119, 6, 0.3);
}

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

.tp-btn-outline:hover {
    background-color: var(--fl8-primary);
    color: var(--fl8-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(3, 105, 161, 0.2);
}

/* Header & Navigation */
.tp-header {
    background-color: var(--fl8-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
}

.tp-header .tp-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: var(--tp-header-height);
}

.tp-logo {
    font-family: 'Sora', sans-serif;
    font-size: 2em;
    font-weight: 700;
    color: var(--fl8-primary);
    text-decoration: none;
    letter-spacing: -0.03em;
}

.tp-nav-menu {
    list-style: none;
    display: flex;
    gap: 30px;
}

.tp-nav-menu a {
    font-weight: 500;
    font-size: 1.05em;
    padding: 5px 0;
    position: relative;
}

.tp-nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: var(--fl8-accent);
    transition: width var(--fl8-transition-speed);
}

.tp-nav-menu a:hover::after {
    width: 100%;
}

.tp-hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1100;
}

.tp-hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--fl8-primary);
    transition: all var(--fl8-transition-speed);
    border-radius: 2px;
}

.tp-hamburger.is-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.tp-hamburger.is-active span:nth-child(2) {
    opacity: 0;
}
.tp-hamburger.is-active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section */
.tp-hero {
    background: linear-gradient(135deg, rgba(3, 105, 161, 0.9) 0%, rgba(7, 89, 133, 0.9) 100%), url('https://loremflickr.com/1400/800/comparison%2Ccompare/all?lock=369136971') no-repeat center center/cover;
    min-height: 80vh;
    display: flex;
    align-items: center;
    color: var(--fl8-white);
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.tp-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.tp-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.tp-hero h1 {
    color: var(--fl8-white);
    font-size: 4.2em;
    margin-bottom: 0.3em;
    letter-spacing: -0.06em;
}

.tp-hero p {
    font-size: 1.5em;
    font-weight: 300;
    margin-bottom: 2em;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
}

.tp-hero .tp-btn {
    padding: 16px 36px;
    font-size: 1.25em;
    border-radius: 50px;
    background-color: var(--fl8-accent);
    border-color: var(--fl8-accent);
    color: var(--fl8-white);
}

.tp-hero .tp-btn:hover {
    background-color: #f59e0b;
    box-shadow: 0 8px 16px rgba(217, 119, 6, 0.4);
    transform: translateY(-3px);
}

/* Feature Comparison Section */
.tp-feature-comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.tp-feature-card {
    background-color: var(--fl8-white);
    border-radius: var(--fl8-border-radius);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform var(--fl8-transition-speed), box-shadow var(--fl8-transition-speed);
    border: 1px solid #e0f2fe;
}

.tp-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.tp-feature-card i {
    font-size: 3em;
    color: var(--fl8-primary);
    margin-bottom: 20px;
    display: block;
}

.tp-feature-card h3 {
    color: var(--fl8-secondary);
    font-size: 1.5em;
    margin-bottom: 15px;
}

.tp-feature-card p {
    font-size: 0.95em;
    color: var(--fl8-text-color);
}

/* Tech Specs Section */
.tp-tech-specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 40px;
    background-color: var(--fl8-white);
    border-radius: var(--fl8-border-radius);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.tp-tech-specs-table th, .tp-tech-specs-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #e0f2f7;
}

.tp-tech-specs-table th {
    background-color: var(--fl8-primary);
    color: var(--fl8-white);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9em;
    letter-spacing: 0.05em;
}

.tp-tech-specs-table tr:nth-child(even) {
    background-color: #f8fcff;
}

.tp-tech-specs-table td {
    color: var(--fl8-text-color);
}

.tp-tech-specs-table tr:hover {
    background-color: #e6f7ff;
    transition: background-color var(--fl8-transition-speed);
}

/* FAQ Section (Accordion) */
.tp-faq-list {
    margin-top: 40px;
}

.tp-faq-item {
    background-color: var(--fl8-white);
    border: 1px solid #e0f2f7;
    border-radius: var(--fl8-border-radius);
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.tp-faq-q {
    padding: 20px 25px;
    font-size: 1.15em;
    font-weight: 600;
    color: var(--fl8-secondary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color var(--fl8-transition-speed);
}

.tp-faq-q:hover {
    background-color: #f0faff;
}

.tp-faq-q::after {
    content: '+';
    font-size: 1.5em;
    color: var(--fl8-accent);
    transition: transform var(--fl8-transition-speed);
}

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

.tp-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding var(--fl8-transition-speed);
    padding: 0 25px;
}

.tp-faq-item.active .tp-faq-a {
    max-height: 500px; /* Adjust as needed for content */
    padding: 15px 25px 20px;
}

.tp-faq-a p {
    font-size: 1em;
    line-height: 1.7;
    color: var(--fl8-text-color);
}

/* CTA Gradient Section */
.tp-cta-gradient {
    background: linear-gradient(135deg, var(--fl8-primary) 0%, var(--fl8-secondary) 100%);
    color: var(--fl8-white);
    text-align: center;
    padding: 80px 0;
    border-radius: var(--fl8-border-radius);
    margin: 60px auto;
    max-width: 1000px;
    box-shadow: 0 10px 25px rgba(3, 105, 161, 0.3);
}

.tp-cta-gradient h2 {
    color: var(--fl8-white);
    font-size: 2.8em;
    margin-bottom: 20px;
}

.tp-cta-gradient p {
    font-size: 1.3em;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.tp-cta-gradient .tp-btn {
    background-color: var(--fl8-accent);
    border-color: var(--fl8-accent);
    padding: 14px 32px;
    font-size: 1.15em;
    border-radius: 50px;
}

.tp-cta-gradient .tp-btn:hover {
    background-color: #f59e0b;
    box-shadow: 0 6px 15px rgba(217, 119, 6, 0.4);
    transform: translateY(-2px);
}

/* Testimonials Section */
.tp-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.tp-testimonial-card {
    background-color: var(--fl8-white);
    border-radius: var(--fl8-border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    position: relative;
    border: 1px solid #e0f2fe;
    transition: transform var(--fl8-transition-speed), box-shadow var(--fl8-transition-speed);
}

.tp-testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.tp-testimonial-card::before {
    content: '“';
    font-family: serif;
    font-size: 5em;
    color: var(--fl8-muted-text);
    position: absolute;
    top: -10px;
    left: 20px;
    opacity: 0.3;
    z-index: 1;
    line-height: 1;
}

.tp-testimonial-content {
    position: relative;
    z-index: 2;
}

.tp-testimonial-content p {
    font-style: italic;
    font-size: 1.1em;
    color: var(--fl8-text-color);
    margin-bottom: 20px;
}

.tp-testimonial-author {
    font-weight: 600;
    color: var(--fl8-secondary);
    margin-bottom: 5px;
    display: block;
}

.tp-testimonial-source {
    font-size: 0.9em;
    color: var(--fl8-muted-text);
}

/* Trust Indicators */
.tp-trust-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
}

.tp-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background-color: var(--fl8-background);
    padding: 18px 25px;
    border-radius: 50px;
    font-weight: 600;
    color: var(--fl8-primary);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all var(--fl8-transition-speed);
}

.tp-trust-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.tp-trust-item i {
    font-size: 1.8em;
    color: var(--fl8-accent);
}

/* Contact Form */
.tp-form-section {
    background-color: var(--fl8-white);
    border-radius: var(--fl8-border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 50px;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid #e0f2fe;
}

.tp-form-group {
    margin-bottom: 25px;
    position: relative;
}

.tp-form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--fl8-secondary);
    font-size: 1.05em;
}

.tp-form-group input[type="text"],
.tp-form-group input[type="email"],
.tp-form-group input[type="tel"],
.tp-form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #b3e0f2;
    border-radius: var(--fl8-border-radius);
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 1em;
    color: var(--fl8-text-color);
    transition: border-color var(--fl8-transition-speed), box-shadow var(--fl8-transition-speed);
}

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

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

.tp-form-submit .tp-btn {
    width: 100%;
    padding: 16px;
    font-size: 1.2em;
    border-radius: var(--fl8-border-radius);
}

.tp-form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: var(--fl8-border-radius);
    font-weight: 500;
    text-align: center;
    display: none;
}

.tp-form-message.tp-success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
}

.tp-form-message.tp-error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
}

.tp-form-message.tp-sending {
    background-color: #e0f2fe;
    color: var(--fl8-primary);
    border: 1px solid var(--fl8-primary);
}

/* Footer */
.tp-footer {
    background-color: var(--fl8-secondary);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 30px;
    font-size: 0.95em;
}

.tp-footer .tp-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.tp-footer-col {
    flex: 1; /* For flexible width */
    min-width: 250px;
}

.tp-footer-col.tp-footer-cta {
    flex: 1.5; /* Larger column for CTA */
}

.tp-footer-col h4 {
    color: var(--fl8-white);
    font-size: 1.4em;
    margin-bottom: 25px;
    position: relative;
}

.tp-footer-col h4::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--fl8-accent);
    margin-top: 10px;
}

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

.tp-footer-col ul li {
    margin-bottom: 10px;
}

.tp-footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--fl8-transition-speed);
}

.tp-footer-col ul li a:hover {
    color: var(--fl8-accent);
    padding-left: 5px; /* Subtle hover effect */
}

.tp-footer-col p {
    margin-bottom: 15px;
}

.tp-footer-contact-info {
    margin-top: 20px;
}

.tp-footer-contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
}

.tp-footer-contact-info i {
    color: var(--fl8-accent);
    font-size: 1.2em;
}

.tp-footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.tp-footer-bottom p {
    margin: 0;
}

.tp-social-links {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.tp-social-links a {
    color: var(--fl8-white);
    font-size: 1.5em;
    transition: color var(--fl8-transition-speed), transform var(--fl8-transition-speed);
}

.tp-social-links a:hover {
    color: var(--fl8-accent);
    transform: translateY(-3px);
}

/* Contact Page Specific */
.tp-contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    margin-top: 60px;
}

.tp-contact-info {
    background-color: var(--fl8-background);
    border-radius: var(--fl8-border-radius);
    padding: 40px;
    border: 1px solid #d0efff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.tp-contact-info h3 {
    color: var(--fl8-primary);
    margin-bottom: 30px;
}

.tp-contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.tp-contact-detail i {
    font-size: 1.8em;
    color: var(--fl8-accent);
    flex-shrink: 0;
    margin-top: 5px;
}

.tp-contact-detail div p {
    margin: 0;
    font-size: 1.05em;
    color: var(--fl8-text-color);
}

.tp-contact-detail div strong {
    display: block;
    color: var(--fl8-secondary);
    margin-bottom: 5px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .tp-hero h1 {
        font-size: 3.5em;
    }

    .tp-hero p {
        font-size: 1.3em;
    }

    h1 {
        font-size: 3em;
    }

    h2 {
        font-size: 2.4em;
    }

    h3 {
        font-size: 1.9em;
    }

    .tp-section {
        padding: 80px 0;
    }

    .tp-nav-menu {
        gap: 20px;
    }

    .tp-footer-col.tp-footer-cta {
        flex: 2;
        min-width: unset;
    }

    .tp-footer-col {
        flex: 1;
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .tp-header .tp-container {
        flex-direction: row-reverse;
        justify-content: space-between;
    }

    .tp-nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: var(--tp-header-height);
        left: 0;
        width: 100%;
        background-color: var(--fl8-white);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        border-top: 1px solid #eee;
        transition: all var(--fl8-transition-speed);
        height: 0;
        overflow: hidden;
    }

    .tp-nav-menu.is-active {
        display: flex;
        height: auto;
        max-height: 300px; /* Arbitrary max-height for smooth transition */
    }

    .tp-nav-menu li {
        text-align: center;
        margin: 10px 0;
    }

    .tp-nav-menu a {
        font-size: 1.2em;
        padding: 10px 0;
        width: 100%;
        display: block;
    }
    
    .tp-nav-menu a::after {
        bottom: 5px;
        height: 1px;
        width: 50%;
        left: 25%;
    }

    .tp-hamburger {
        display: flex;
    }

    .tp-hero {
        min-height: 60vh;
        padding: 60px 0;
    }

    .tp-hero h1 {
        font-size: 2.8em;
    }

    .tp-hero p {
        font-size: 1.1em;
    }

    h1 {
        font-size: 2.5em;
    }

    h2 {
        font-size: 2em;
    }

    h3 {
        font-size: 1.6em;
    }

    .tp-section {
        padding: var(--tp-section-padding-mobile);
    }

    .tp-cta-gradient {
        padding: 50px 20px;
        margin: 40px auto;
    }

    .tp-cta-gradient h2 {
        font-size: 2.4em;
    }

    .tp-cta-gradient p {
        font-size: 1.1em;
    }

    .tp-contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tp-form-section {
        padding: 40px 30px;
    }

    .tp-footer .tp-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .tp-footer-col {
        min-width: 100%;
        margin-bottom: 30px;
    }

    .tp-footer-col h4::after {
        margin-left: auto;
        margin-right: auto;
    }

    .tp-footer-col ul li a:hover {
        padding-left: 0;
    }

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

@media (max-width: 480px) {
    .tp-hero h1 {
        font-size: 2em;
    }

    .tp-hero p {
        font-size: 1em;
    }

    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.8em;
    }

    h3 {
        font-size: 1.4em;
    }

    .tp-btn {
        padding: 12px 20px;
        font-size: 1em;
    }

    .tp-hero .tp-btn {
        font-size: 1.1em;
        padding: 14px 28px;
    }

    .tp-feature-card, .tp-testimonial-card {
        padding: 25px;
    }

    .tp-tech-specs-table th, .tp-tech-specs-table td {
        padding: 12px 15px;
        font-size: 0.9em;
    }

    .tp-faq-q {
        font-size: 1em;
        padding: 15px 20px;
    }

    .tp-faq-item.active .tp-faq-a {
        padding: 10px 20px 15px;
    }

    .tp-cta-gradient h2 {
        font-size: 2em;
    }

    .tp-cta-gradient p {
        font-size: 1em;
    }

    .tp-form-section {
        padding: 30px 20px;
    }
}

/* Visual Separator - Example */
.tp-section-separator {
    background: linear-gradient(to right, var(--fl8-primary), var(--fl8-accent), var(--fl8-primary));
    height: 5px;
    width: 100%;
    margin: 0 auto;
}

/* Pattern for dark header sections */
.tp-dark-section {
    background-color: var(--fl8-secondary);
    color: var(--fl8-white);
    padding: var(--tp-section-padding-desktop);
    position: relative;
    overflow: hidden;
}

.tp-dark-section h2, .tp-dark-section h3, .tp-dark-section strong {
    color: var(--fl8-white);
}

.tp-dark-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 10% 20%, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.07) 10%, transparent 10%, transparent 100%),
                      radial-gradient(circle at 90% 80%, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.07) 10%, transparent 10%, transparent 100%);
    background-size: 20px 20px;
    opacity: 0.5;
    z-index: 0;
}

.tp-dark-section .tp-container {
    position: relative;
    z-index: 1;
}

/* Card Hover Lift Effect (re-defined more generically) */
.tp-card-hover-lift {
    transition: transform var(--fl8-transition-speed), box-shadow var(--fl8-transition-speed);
}

.tp-card-hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Input focus ring (re-defined) */
input[type="text"]:focus, input[type="email"]:focus, input[type="tel"]:focus, textarea:focus {
    border-color: var(--fl8-accent);
    box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.2);
}


/* === Quality polish === */
@keyframes tpFadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.tp-animate { opacity: 0; }
.tp-animate.tp-visible { animation: tpFadeInUp 0.6s ease forwards; }