/* ============================================
   Trade Manager Landing Page - Standalone CSS
   ============================================ */

/* ===== CSS RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #f1f5f9;
    background: #000000;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    max-width: 100vw;
}

html {
    overflow-x: hidden;
    max-width: 100vw;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

/* ===== CONTAINER ===== */
.tm-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .tm-container {
        padding: 0 1.5rem;
    }
}

/* ===== HEADER ===== */
.tm-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(20, 184, 166, 0.1);
}

.tm-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.tm-logo {
    height: 40px;
    width: auto;
}

.tm-nav {
    display: none;
    gap: 2rem;
}

@media (min-width: 768px) {
    .tm-nav {
        display: flex;
    }
}

.tm-nav-link {
    color: #f1f5f9;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tm-nav-link:hover {
    color: #14b8a6;
    background: rgba(20, 184, 166, 0.1);
}

.tm-mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    color: #f1f5f9;
    cursor: pointer;
}

@media (min-width: 768px) {
    .tm-mobile-menu-toggle {
        display: none;
    }
}

.tm-mobile-menu {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    background: #000000;
    border-top: 1px solid rgba(20, 184, 166, 0.1);
}

.tm-mobile-menu.active {
    display: flex;
}

.tm-mobile-menu-link {
    color: #f1f5f9;
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
}

.tm-mobile-menu-link:hover {
    background: rgba(20, 184, 166, 0.1);
    color: #14b8a6;
}

.tm-hide-mobile {
    display: none !important;
}

@media (min-width: 768px) {
    .tm-hide-mobile {
        display: inline-flex !important;
    }
}

/* ===== BUTTONS ===== */
.tm-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-weight: 600;
    border-radius: 0.5rem;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1rem;
}

.tm-btn-primary {
    background: #14b8a6;
    color: #ffffff;
    border-color: #0d9488;
}

.tm-btn-primary:hover {
    background: #0d9488;
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(20, 184, 166, 0.5);
}

.tm-btn-outline {
    background: transparent;
    color: #f1f5f9;
    border-color: rgba(148, 163, 184, 0.3);
}

.tm-btn-outline:hover {
    border-color: #14b8a6;
    background: rgba(20, 184, 166, 0.1);
    color: #14b8a6;
}

.tm-btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

@media (min-width: 640px) {
    .tm-btn-lg {
        padding: 0.875rem 1.75rem;
        font-size: 1.125rem;
    }
}

.tm-btn-full {
    width: 100%;
    justify-content: center;
}

/* ===== ICONS ===== */
.tm-icon {
    width: 24px;
    height: 24px;
}

.tm-icon-sm {
    width: 16px;
    height: 16px;
}

.tm-icon-xs {
    width: 14px;
    height: 14px;
}

.tm-icon-lg {
    width: 32px;
    height: 32px;
}

/* ===== HERO SECTION ===== */
.tm-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.tm-hero-bg {
    position: absolute;
    inset: 0;
}

.tm-hero-gradient {
    position: absolute;
    inset: 0;
    background: #000000;
}

.tm-hero-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: pulse-glow 4s ease-in-out infinite;
}

.tm-hero-glow-1 {
    top: 25%;
    left: 25%;
    background: rgba(20, 184, 166, 0.3);
}

.tm-hero-glow-2 {
    bottom: 25%;
    right: 25%;
    background: rgba(34, 211, 238, 0.3);
    animation-delay: 2s;
}

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

.tm-hero-container {
    position: relative;
    z-index: 1;
    padding: 3rem 1.5rem;
}

.tm-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .tm-hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.tm-hero-content {
    text-align: center;
}

@media (min-width: 1024px) {
    .tm-hero-content {
        text-align: left;
    }
}

.tm-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(20, 184, 166, 0.1);
    border: 1px solid rgba(20, 184, 166, 0.2);
    border-radius: 999px;
    color: #14b8a6;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.tm-hero-title {
    font-size: 1.875rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .tm-hero-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 768px) {
    .tm-hero-title {
        font-size: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .tm-hero-title {
        font-size: 4rem;
    }
}

.tm-text-primary {
    background: linear-gradient(135deg, #14b8a6 0%, #22d3ee 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tm-hero-description {
    font-size: 1rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.8;
}

@media (min-width: 640px) {
    .tm-hero-description {
        font-size: 1.125rem;
    }
}

@media (min-width: 768px) {
    .tm-hero-description {
        font-size: 1.25rem;
    }
}

/* Hero Trusted Section */
.tm-hero-trusted {
    margin: 2.5rem 0 2rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(148, 163, 184, 0.15);
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
    position: relative;
}

.tm-hero-trusted::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.4), transparent);
}

@media (min-width: 1024px) {
    .tm-hero-trusted::before {
        left: 0;
        transform: translateX(0);
        width: 50%;
    }
}

.tm-hero-trusted-text {
    text-align: center;
    font-size: 0.75rem;
    color: #94a3b8;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

@media (min-width: 1024px) {
    .tm-hero-trusted-text {
        text-align: left;
    }
}

.tm-hero-trusted-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 400px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .tm-hero-trusted-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 600px;
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .tm-hero-trusted-grid {
        margin: 0;
        max-width: none;
    }
}

.tm-hero-trusted-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.tm-hero-trusted-item[data-delay="0"] {
    animation: fadeInUp 0.6s ease-out 0.5s both;
}

.tm-hero-trusted-item[data-delay="100"] {
    animation: fadeInUp 0.6s ease-out 0.6s both;
}

.tm-hero-trusted-item[data-delay="200"] {
    animation: fadeInUp 0.6s ease-out 0.7s both;
}

.tm-hero-trusted-item[data-delay="300"] {
    animation: fadeInUp 0.6s ease-out 0.8s both;
}

.tm-hero-trusted-item:hover {
    color: #14b8a6;
    transform: translateY(-4px);
}

.tm-hero-trusted-item:hover .tm-hero-trusted-icon {
    filter: drop-shadow(0 0 10px rgba(20, 184, 166, 0.5));
}

.tm-hero-trusted-icon {
    width: 26px;
    height: 26px;
    stroke-width: 1.5;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 640px) {
    .tm-hero-trusted-icon {
        width: 30px;
        height: 30px;
    }
}

@media (min-width: 1024px) {
    .tm-hero-trusted-icon {
        width: 32px;
        height: 32px;
    }
}

.tm-hero-trusted-name {
    font-size: 0.7rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

@media (min-width: 640px) {
    .tm-hero-trusted-name {
        font-size: 0.75rem;
    }
}

@media (min-width: 1024px) {
    .tm-hero-trusted-name {
        font-size: 0.8125rem;
    }
}

.tm-hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center; /* Center buttons on mobile */
}

@media (min-width: 640px) {
    .tm-hero-buttons {
        flex-direction: row;
        align-items: flex-start; /* Reset alignment on desktop */
    }
}

@media (min-width: 1024px) {
    .tm-hero-buttons {
        justify-content: flex-start;
    }
}

/* Hero Mockup */
.tm-hero-mockup {
    display: none;
    position: relative;
}

@media (min-width: 1024px) {
    .tm-hero-mockup {
        display: block;
    }
}

.tm-mockup-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.3), transparent 70%);
    filter: blur(80px);
    z-index: -1;
}

.tm-mockup-card {
    position: relative;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 0.75rem;
    box-shadow: 0 0 40px rgba(20, 184, 166, 0.25);
    transition: all 0.3s ease;
    overflow: hidden;
}

.tm-mockup-card:hover {
    transform: scale(1.02);
    box-shadow: 0 0 50px rgba(20, 184, 166, 0.35);
}

.tm-mockup-card-top {
    margin-bottom: 1rem;
}

.tm-mockup-img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    display: block;
}

.tm-mockup-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.tm-mockup-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* ===== SECTION STYLES ===== */
.tm-section {
    padding: 3rem 0;
}

@media (min-width: 768px) {
    .tm-section {
        padding: 4rem 0;
    }
}

@media (min-width: 1024px) {
    .tm-section {
        padding: 5rem 0;
    }
}

.tm-section-alt {
    background: rgba(20, 184, 166, 0.02);
}

.tm-section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .tm-section-header {
        margin-bottom: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .tm-section-header {
        margin-bottom: 4rem;
    }
}

.tm-section-title {
    font-size: 1.875rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .tm-section-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 768px) {
    .tm-section-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .tm-section-title {
        font-size: 3.5rem;
    }
}

.tm-section-subtitle {
    font-size: 1.125rem;
    color: #cbd5e1;
    max-width: 48rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .tm-section-subtitle {
        font-size: 1.25rem;
    }
}

/* ===== KEY BENEFITS GRID ===== */
.tm-benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .tm-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tm-benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tm-benefit-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .tm-benefit-card {
        padding: 2rem;
    }
}

.tm-benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 30px rgba(20, 184, 166, 0.2);
    border-color: rgba(20, 184, 166, 0.3);
}

.tm-benefit-icon {
    width: 48px;
    height: 48px;
    background: rgba(20, 184, 166, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.tm-benefit-icon .tm-icon {
    color: #14b8a6;
}

.tm-benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.tm-benefit-description {
    color: #94a3b8;
    line-height: 1.6;
}

/* ===== MODULES SECTION ===== */
.tm-modules-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .tm-modules-layout {
        grid-template-columns: 2fr 3fr;
    }
}

.tm-module-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

@media (min-width: 1024px) {
    .tm-module-buttons {
        grid-template-columns: 1fr;
    }
}

.tm-module-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid transparent;
    border-left: 4px solid transparent;
    border-radius: 0.5rem;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #94a3b8;
    font-weight: 500;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .tm-module-btn {
        gap: 0.75rem;
        padding: 1rem;
        font-size: 1rem;
    }
}

.tm-module-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-left-color: rgba(20, 184, 166, 0.3);
}

.tm-module-btn.active {
    background: rgba(20, 184, 166, 0.1);
    border-left-color: #14b8a6;
    color: #f1f5f9;
    transform: scale(1.02);
}

.tm-module-btn-icon {
    width: 40px;
    height: 40px;
    background: rgba(148, 163, 184, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.tm-module-btn.active .tm-module-btn-icon {
    background: rgba(20, 184, 166, 0.2);
}

.tm-module-btn.active .tm-module-btn-icon .tm-icon-sm {
    color: #14b8a6;
}

/* Module Content */
.tm-module-content-wrapper {
    position: relative;
    min-height: 650px;
}

@media (min-width: 768px) {
    .tm-module-content-wrapper {
        min-height: 500px;
    }
}

.tm-module-content {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .tm-module-content {
        padding: 2rem;
    }
}

@media (min-width: 1024px) {
    .tm-module-content {
        padding: 2.5rem;
    }
}

.tm-module-content.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.tm-module-content-icon {
    width: 64px;
    height: 64px;
    background: rgba(20, 184, 166, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.tm-module-content-icon .tm-icon-lg {
    color: #14b8a6;
}

.tm-module-content-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #14b8a6;
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .tm-module-content-title {
        font-size: 1.875rem;
    }
}

.tm-module-content-description {
    font-size: 1rem;
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .tm-module-content-description {
        font-size: 1.125rem;
    }
}

.tm-module-highlights-title {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #94a3b8;
    font-weight: 600;
    margin-bottom: 1rem;
}

.tm-module-highlights-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.tm-module-highlights-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #cbd5e1;
}

.tm-module-highlights-list li .tm-icon-xs {
    color: #14b8a6;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

/* ===== TIMELINE SECTION ===== */
.tm-timeline-container {
    max-width: 900px;
}

.tm-timeline {
    position: relative;
    padding-left: 0;
}

@media (min-width: 768px) {
    .tm-timeline {
        padding-left: 4rem;
    }
}

.tm-timeline-line {
    position: absolute;
    left: 2rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #14b8a6, #22d3ee, #14b8a6);
    opacity: 0.3;
    display: none;
}

@media (min-width: 768px) {
    .tm-timeline-line {
        display: block;
    }
}

.tm-timeline-item {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .tm-timeline-item {
        flex-direction: row;
    }
}

.tm-timeline-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #14b8a6, #22d3ee);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(20, 184, 166, 0.3);
    z-index: 10;
    transition: transform 0.3s ease;
}

.tm-timeline-icon:hover {
    transform: scale(1.1);
}

.tm-timeline-icon .tm-icon {
    color: #ffffff;
}

.tm-timeline-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.tm-timeline-card:hover {
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(20, 184, 166, 0.2);
}

.tm-timeline-time {
    font-size: 0.875rem;
    color: #14b8a6;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.tm-timeline-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.tm-timeline-description {
    color: #cbd5e1;
    line-height: 1.6;
}

/* ===== PRICING SECTION ===== */
.tm-pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}

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

.tm-pricing-card {
    position: relative;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .tm-pricing-card {
        padding: 2rem;
    }
}

.tm-pricing-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(20, 184, 166, 0.2);
}

.tm-pricing-card-popular {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.05), rgba(34, 211, 238, 0.05));
    border: 2px solid rgba(20, 184, 166, 0.5);
    box-shadow: 0 0 60px rgba(20, 184, 166, 0.3);
}

@media (min-width: 768px) {
    .tm-pricing-card-popular {
        transform: scale(1.05);
    }
}

.tm-pricing-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #14b8a6, #22d3ee);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.4);
    animation: bounce-badge 2s ease-in-out infinite;
}

@keyframes bounce-badge {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.tm-pricing-plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.tm-pricing-plan-desc {
    font-size: 0.875rem;
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}

.tm-pricing-price {
    margin-bottom: 1.5rem;
}

.tm-pricing-amount {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #14b8a6, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tm-pricing-period {
    color: #cbd5e1;
    font-size: 1rem;
}

.tm-pricing-features {
    list-style: none;
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.tm-pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: #cbd5e1;
    font-size: 0.875rem;
}

.tm-pricing-features li .tm-icon-xs {
    color: #14b8a6;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

/* ===== CONTACT SECTION WITH ANIMATED BACKGROUND ===== */
.tm-contact-section {
    position: relative;
    overflow: hidden;
    background: rgba(20, 184, 166, 0.02);
}

/* Main Background Gradient Layer */
.tm-contact-bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(20, 184, 166, 0.05) 0%, transparent 50%, rgba(34, 211, 238, 0.05) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Central Pulsing Glow (Large) - Creates ambient lighting effect */
.tm-contact-bg-glow-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: rgba(20, 184, 166, 0.1);
    border-radius: 50%;
    filter: blur(150px);
    animation: pulse-slow 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

/* Corner Gradient Glows - Floating ambient lights */
.tm-contact-glow {
    position: absolute;
    width: 256px;
    height: 256px;
    border-radius: 50%;
    filter: blur(100px);
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.tm-contact-glow-1 {
    top: 80px;
    left: 80px;
    background: rgba(20, 184, 166, 0.2);
    opacity: 1;
}

.tm-contact-glow-2 {
    bottom: 80px;
    right: 80px;
    background: rgba(34, 211, 238, 0.2);
    opacity: 1;
    animation-delay: 3s;
}

/* Animated Floating Particles - Creates depth and movement */
.tm-particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
}

/* Each particle matches Tailwind implementation exactly */
.tm-particle-1 {
    top: 10%;
    left: 5%;
    width: 12px;
    height: 12px;
    background-color: #14b8a6;
    opacity: 0.6;
    animation: particle-float-1 8s ease-in-out infinite;
}

.tm-particle-2 {
    top: 20%;
    right: 15%;
    width: 8px;
    height: 8px;
    background-color: #22d3ee;
    opacity: 0.5;
    animation: particle-float-2 10s ease-in-out infinite 1s;
}

.tm-particle-3 {
    top: 40%;
    left: 10%;
    width: 16px;
    height: 16px;
    background-color: rgba(20, 184, 166, 0.6);
    opacity: 0.7;
    filter: blur(2px);
    animation: particle-float-3 12s ease-in-out infinite 0.5s;
}

.tm-particle-4 {
    top: 60%;
    right: 8%;
    width: 12px;
    height: 12px;
    background-color: rgba(34, 211, 238, 0.7);
    opacity: 0.6;
    animation: particle-float-4 9s ease-in-out infinite 2s;
}

.tm-particle-5 {
    bottom: 25%;
    left: 20%;
    width: 8px;
    height: 8px;
    background-color: #14b8a6;
    opacity: 0.5;
    animation: particle-float-5 11s ease-in-out infinite 1.5s;
}

.tm-particle-6 {
    bottom: 15%;
    right: 25%;
    width: 12px;
    height: 12px;
    background-color: #22d3ee;
    opacity: 0.6;
    filter: blur(1px);
    animation: particle-float-6 10s ease-in-out infinite 0.8s;
}

.tm-particle-7 {
    top: 30%;
    left: 30%;
    width: 8px;
    height: 8px;
    background-color: rgba(20, 184, 166, 0.8);
    opacity: 0.4;
    animation: particle-float-7 13s ease-in-out infinite 2.5s;
}

.tm-particle-8 {
    top: 70%;
    right: 35%;
    width: 16px;
    height: 16px;
    background-color: rgba(34, 211, 238, 0.5);
    opacity: 0.5;
    filter: blur(2px);
    animation: particle-float-8 9s ease-in-out infinite 1.2s;
}

.tm-particle-9 {
    top: 50%;
    left: 45%;
    width: 8px;
    height: 8px;
    background-color: #14b8a6;
    opacity: 0.6;
    animation: particle-float-9 11s ease-in-out infinite 0.3s;
}

.tm-particle-10 {
    bottom: 40%;
    right: 5%;
    width: 12px;
    height: 12px;
    background-color: rgba(34, 211, 238, 0.6);
    opacity: 0.5;
    animation: particle-float-10 10s ease-in-out infinite 1.8s;
}

/* Floating Geometric Shapes - Adds visual interest */
.tm-shape {
    position: absolute;
    border: 1px solid;
    pointer-events: none;
    z-index: 2;
}

.tm-shape-1 {
    top: 15%;
    right: 10%;
    width: 32px;
    height: 32px;
    border-color: rgba(20, 184, 166, 0.3);
    border-radius: 2px;
    opacity: 0.4;
    animation: shape-rotate-1 15s ease-in-out infinite;
}

.tm-shape-2 {
    top: 55%;
    left: 15%;
    width: 24px;
    height: 24px;
    border-color: rgba(34, 211, 238, 0.4);
    transform: rotate(45deg);
    opacity: 0.3;
    animation: shape-rotate-2 18s ease-in-out infinite 2s;
}

.tm-shape-3 {
    bottom: 30%;
    right: 40%;
    width: 40px;
    height: 40px;
    border-color: rgba(20, 184, 166, 0.2);
    border-radius: 50%;
    opacity: 0.35;
    animation: shape-rotate-3 20s linear infinite 1s;
}

.tm-shape-4 {
    top: 45%;
    right: 20%;
    width: 28px;
    height: 28px;
    border-color: rgba(34, 211, 238, 0.3);
    border-radius: 2px;
    transform: rotate(12deg);
    opacity: 0.3;
    animation: shape-rotate-4 16s ease-in-out infinite 3s;
}

/* ANIMATION KEYFRAMES */

/* Central Glow Pulse - Slow breathing effect */
@keyframes pulse-slow {
    0%, 100% {
        opacity: 0.2;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

/* Corner Glows Float - Gentle up/down movement */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Particle Animations - Each has unique movement pattern for natural feel */

@keyframes particle-float-1 {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(10px, -15px); }
    50% { transform: translate(-5px, -25px); }
    75% { transform: translate(15px, -10px); }
}

@keyframes particle-float-2 {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(-12px, 18px); }
    50% { transform: translate(8px, 30px); }
    75% { transform: translate(-15px, 12px); }
}

@keyframes particle-float-3 {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(20px, -20px); }
    66% { transform: translate(-15px, -30px); }
}

@keyframes particle-float-4 {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(8px, 20px); }
    50% { transform: translate(-10px, 35px); }
    75% { transform: translate(12px, 15px); }
}

@keyframes particle-float-5 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-18px, -28px); }
}

@keyframes particle-float-6 {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(15px, 22px); }
    66% { transform: translate(-8px, 35px); }
}

@keyframes particle-float-7 {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(-10px, -18px); }
    50% { transform: translate(12px, -30px); }
    75% { transform: translate(-8px, -15px); }
}

@keyframes particle-float-8 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(10px, 25px); }
}

@keyframes particle-float-9 {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(14px, -12px); }
    50% { transform: translate(-6px, -22px); }
    75% { transform: translate(10px, -8px); }
}

@keyframes particle-float-10 {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(-16px, 15px); }
    66% { transform: translate(8px, 28px); }
}

/* Shape Rotation Animations - Rotating geometric shapes */

@keyframes shape-rotate-1 {
    0%, 100% { 
        transform: rotate(0deg) translate(0, 0);
        opacity: 0.4;
    }
    50% { 
        transform: rotate(180deg) translate(5px, -10px);
        opacity: 0.6;
    }
}

@keyframes shape-rotate-2 {
    0%, 100% { 
        transform: rotate(45deg) translate(0, 0);
        opacity: 0.3;
    }
    50% { 
        transform: rotate(225deg) translate(-8px, 12px);
        opacity: 0.5;
    }
}

@keyframes shape-rotate-3 {
    0%, 100% { 
        transform: rotate(0deg) scale(1);
        opacity: 0.35;
    }
    50% { 
        transform: rotate(360deg) scale(1.1);
        opacity: 0.5;
    }
}

@keyframes shape-rotate-4 {
    0%, 100% { 
        transform: rotate(12deg) translate(0, 0);
        opacity: 0.3;
    }
    50% { 
        transform: rotate(192deg) translate(6px, -8px);
        opacity: 0.45;
    }
}

/* Fallback for reduced motion preference - Respects user accessibility settings */
@media (prefers-reduced-motion: reduce) {
    .tm-contact-bg-glow-center,
    .tm-contact-glow,
    .tm-particle,
    .tm-shape,
    .tm-demo-blob {
        animation: none !important;
    }
    
    .tm-contact-bg-glow-center {
        opacity: 0.3;
    }
    
    .tm-demo-blob {
        opacity: 0.2;
    }
}

.tm-contact-grid {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .tm-contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Enhanced Contact Benefits with Animated Blobs */
.tm-contact-benefits {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 768px) {
    .tm-contact-benefits {
        padding: 2rem;
    }
}

/* CUSTOMIZATION TIP: To disable animated blobs, set display: none on .tm-demo-blob */
.tm-demo-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    pointer-events: none;
    z-index: 1;
}

.tm-demo-blob-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #14b8a6 0%, rgba(20, 184, 166, 0) 70%);
    top: -100px;
    left: -100px;
    animation: demo-float-1 8s ease-in-out infinite;
}

.tm-demo-blob-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #22d3ee 0%, rgba(34, 211, 238, 0) 70%);
    bottom: -80px;
    right: -80px;
    animation: demo-float-2 10s ease-in-out infinite;
}

.tm-demo-blob-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #10b981 0%, rgba(16, 185, 129, 0) 70%);
    top: 50%;
    right: -50px;
    animation: demo-float-3 7s ease-in-out infinite;
}

@keyframes demo-float-1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(20px, -20px) scale(1.1);
    }
    66% {
        transform: translate(-15px, 15px) scale(0.95);
    }
}

@keyframes demo-float-2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-25px, -25px) scale(1.15);
    }
}

@keyframes demo-float-3 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(15px, 20px) scale(1.08);
    }
}

.tm-contact-benefits-content {
    position: relative;
    z-index: 2;
}

/* Statistics Cards - Enhanced with specificity */
.tm-contact-benefits .tm-demo-stats-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1rem !important;
    margin-bottom: 2rem !important;
}

.tm-contact-benefits .tm-demo-stat-card {
    background: rgba(20, 184, 166, 0.08) !important;
    border: 1px solid rgba(20, 184, 166, 0.2) !important;
    border-radius: 0.75rem !important;
    padding: 1.25rem 1rem !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
}

.tm-contact-benefits .tm-demo-stat-card:hover {
    background: rgba(20, 184, 166, 0.12) !important;
    border-color: rgba(20, 184, 166, 0.3) !important;
    transform: translateY(-3px) !important;
}

.tm-contact-benefits .tm-demo-stat-number {
    font-size: 2rem !important;
    font-weight: 700 !important;
    color: #14b8a6 !important;
    line-height: 1 !important;
    margin-bottom: 0.5rem !important;
    display: block !important;
}

.tm-contact-benefits .tm-demo-stat-label {
    font-size: 0.875rem !important;
    color: #94a3b8 !important;
    font-weight: 500 !important;
    display: block !important;
}

/* Responsive adjustments for stats */
@media (max-width: 768px) {
    .tm-contact-benefits .tm-demo-stats-grid {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
    }
    
    .tm-contact-benefits .tm-demo-stat-card {
        padding: 1rem !important;
    }
    
    .tm-contact-benefits .tm-demo-stat-number {
        font-size: 1.5rem !important;
    }
}

.tm-contact-benefits-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.tm-contact-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.tm-contact-benefit-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(20, 184, 166, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tm-contact-benefit-icon .tm-icon {
    color: #14b8a6;
}

.tm-contact-benefit-item p {
    color: #cbd5e1;
    font-size: 1.125rem;
    padding-top: 0.5rem;
}

.tm-contact-social-proof {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tm-contact-proof-text {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: #94a3b8;
    font-size: 0.875rem;
}

.tm-contact-proof-text .tm-icon-xs {
    color: #14b8a6;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

/* Contact Form */
.tm-contact-form-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 0 60px rgba(20, 184, 166, 0.3);
    transition: all 0.3s ease;
}

.tm-contact-form-card:hover {
    box-shadow: 0 0 80px rgba(20, 184, 166, 0.4);
}

.tm-contact-form-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.tm-contact-form-subtitle {
    color: #94a3b8;
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

.tm-form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
    .tm-form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.tm-form-group {
    margin-bottom: 1.25rem;
}

.tm-form-label {
    display: block;
    color: #cbd5e1;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.tm-form-input,
.tm-form-select,
.tm-form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    color: #f1f5f9;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.tm-form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1.25rem;
    padding-right: 2.5rem;
}

.tm-form-select option {
    background: #000000;
    color: #f1f5f9;
    padding: 0.75rem 1rem;
}

.tm-form-select option:first-child {
    color: #94a3b8;
}

.tm-form-select option:checked,
.tm-form-select option:hover {
    background: #334155;
    color: #14b8a6;
}

.tm-form-input:focus,
.tm-form-select:focus,
.tm-form-textarea:focus {
    outline: none;
    border-color: #14b8a6;
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

.tm-form-textarea {
    resize: none;
    font-family: inherit;
}

.tm-form-message {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
}

.tm-form-message.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #86efac;
}

.tm-form-message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #fca5a5;
}

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

/* ===== FOOTER ===== */
.tm-footer {
    padding: 2rem 0;
    border-top: 1px solid rgba(20, 184, 166, 0.2);
    background: linear-gradient(90deg, rgba(20, 184, 166, 0.05), transparent, rgba(34, 211, 238, 0.05));
    position: relative;
}

.tm-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 256px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.4), transparent);
}

.tm-footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

@media (min-width: 768px) {
    .tm-footer-content {
        flex-direction: row;
    }
}

.tm-footer-copyright {
    color: #94a3b8;
    font-size: 0.875rem;
}

.tm-footer-credit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #94a3b8;
    font-size: 0.875rem;
}

.tm-heart-icon {
    color: #ef4444;
    animation: pulse-heart 2s ease-in-out infinite;
}

@keyframes pulse-heart {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

.tm-inflyx-text {
    font-weight: 600;
    background: linear-gradient(90deg, #14b8a6 0%, #22d3ee 25%, #f8fafc 50%, #22d3ee 75%, #14b8a6 100%);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer-text 6s linear infinite;
    transition: all 0.3s ease;
    cursor: default;
}

@keyframes shimmer-text {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.tm-inflyx-text:hover {
    filter: brightness(1.2);
    text-shadow: 0 0 12px rgba(34, 211, 238, 0.6);
    transform: scale(1.05);
}

/* ===== UTILITY CLASSES ===== */
.tm-text-center {
    text-align: center;
}

/* ===== SCROLL ANIMATIONS ===== */
@media (prefers-reduced-motion: no-preference) {
    [data-aos] {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }
    
    [data-aos].aos-animate {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== MODAL ===== */
.tm-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.tm-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tm-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.tm-modal-content {
    position: relative;
    background: #000000;
    border: 1px solid rgba(20, 184, 166, 0.2);
    border-radius: 1rem;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem;
    animation: scaleIn 0.3s ease;
    box-shadow: 0 20px 60px rgba(20, 184, 166, 0.2);
}

@media (min-width: 768px) {
    .tm-modal-content {
        padding: 2.5rem;
    }
}

.tm-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #cbd5e1;
}

.tm-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #14b8a6;
    transform: rotate(90deg);
}

.tm-modal-header {
    margin-bottom: 2rem;
}

.tm-modal-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #14b8a6;
    margin-bottom: 0.5rem;
}

.tm-modal-subtitle {
    font-size: 1rem;
    color: #94a3b8;
}

body.modal-open {
    overflow: hidden;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
