/* ============================================
   Time Tracker Landing Page
   ============================================ */

/* --- Design Tokens --- */
:root {
    --tt-electric: #0066FF;
    --tt-electric-hover: #0052CC;
    --tt-electric-light: rgba(0, 102, 255, 0.08);
    --tt-electric-glow: rgba(0, 102, 255, 0.25);
    --tt-gradient: linear-gradient(135deg, #0066FF, #3B82F6);
    --tt-gradient-subtle: linear-gradient(135deg, rgba(0, 102, 255, 0.05), rgba(59, 130, 246, 0.05));
    --tt-dark: #0A0A0A;
    --tt-text: #1A1A2E;
    --tt-text-secondary: #555770;
    --tt-text-muted: #8A8CA5;
    --tt-bg: #FFFFFF;
    --tt-bg-off: #F8F9FC;
    --tt-border: #E5E7F0;
    --tt-radius: 14px;
    --tt-radius-sm: 8px;
    --tt-radius-lg: 20px;
    --tt-font: 'Ubuntu', sans-serif;
    --tt-max-width: 1400px;
    --tt-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --tt-transition-spring: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* --- Base Reset for Landing Page --- */
main {
    font-family: var(--tt-font);
    color: var(--tt-text);
    overflow-x: hidden;
}

main *,
main *::before,
main *::after {
    box-sizing: border-box;
}

/* --- Section Container --- */
.tt-section {
    width: 100%;
    margin: 0;
    padding: 0;
}

.tt-container {
    max-width: var(--tt-max-width);
    margin: 0 auto;
    padding: 80px 48px;
}

/* No gaps between sections */
.tt-section + .tt-section {
    margin-top: 0;
}

/* --- Typography --- */
.tt-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--tt-electric-light);
    color: var(--tt-electric);
    font-size: 13px;
    font-weight: 500;
    border-radius: 100px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.tt-section-title {
    font-family: var(--tt-font);
    font-size: 44px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--tt-text);
    letter-spacing: -0.02em;
    margin: 0;
}

.tt-section-subtitle {
    font-family: var(--tt-font);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--tt-text-secondary);
    margin: 0;
    max-width: 600px;
}

/* --- Buttons --- */
.tt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--tt-font);
    font-size: 15px;
    font-weight: 500;
    border-radius: var(--tt-radius-sm);
    border: none;
    cursor: pointer;
    transition: all var(--tt-transition);
    text-decoration: none;
    line-height: 1;
    position: relative;
    overflow: hidden;
}

.tt-btn-primary {
    background: var(--tt-electric);
    color: #fff;
    box-shadow: 0 2px 8px var(--tt-electric-glow);
}

.tt-btn-primary:hover {
    background: var(--tt-electric-hover);
    box-shadow: 0 4px 16px var(--tt-electric-glow);
    transform: translateY(-1px);
}

.tt-btn-primary:active {
    transform: translateY(0);
}

.tt-btn-secondary {
    background: transparent;
    color: var(--tt-text);
    border: 1.5px solid var(--tt-border);
}

.tt-btn-secondary:hover {
    border-color: var(--tt-electric);
    color: var(--tt-electric);
    background: var(--tt-electric-light);
}

/* --- Scroll Animations --- */
.tt-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.tt-animate.tt-visible {
    opacity: 1;
    transform: translateY(0);
}

.tt-animate-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.tt-animate-left.tt-visible {
    opacity: 1;
    transform: translateX(0);
}

.tt-animate-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.tt-animate-right.tt-visible {
    opacity: 1;
    transform: translateX(0);
}

.tt-animate-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.tt-animate-scale.tt-visible {
    opacity: 1;
    transform: scale(1);
}

/* Staggered children */
.tt-stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.tt-stagger.tt-visible > *:nth-child(1) { transition-delay: 0.05s; }
.tt-stagger.tt-visible > *:nth-child(2) { transition-delay: 0.1s; }
.tt-stagger.tt-visible > *:nth-child(3) { transition-delay: 0.15s; }
.tt-stagger.tt-visible > *:nth-child(4) { transition-delay: 0.2s; }
.tt-stagger.tt-visible > *:nth-child(5) { transition-delay: 0.25s; }
.tt-stagger.tt-visible > *:nth-child(6) { transition-delay: 0.3s; }

.tt-stagger.tt-visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   HERO SECTION — Flow Timeline
   ============================================ */
.hero-section {
    position: relative;
    background: linear-gradient(160deg, #EBF0FF 0%, #F0F5FF 30%, #F8FAFF 60%, #FFFFFF 100%);
    overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to bottom, transparent, #FFFFFF);
    pointer-events: none;
    z-index: 3;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,0,0,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.02) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
}

.hero-glow-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -100px;
    background: radial-gradient(circle, rgba(99,102,241,0.1), transparent 70%);
    animation: glowDrift 8s ease-in-out infinite;
}

.hero-glow-2 {
    width: 500px;
    height: 500px;
    bottom: -150px;
    left: -100px;
    background: radial-gradient(circle, rgba(0,102,255,0.06), transparent 70%);
    animation: glowDrift 10s ease-in-out infinite reverse;
}

@keyframes glowDrift {
    0%, 100% { opacity: 0.6; transform: translate(0, 0); }
    50% { opacity: 1; transform: translate(20px, -15px); }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 40px;
    padding-top: 56px;
    padding-bottom: 20px;
    position: relative;
    z-index: 2;
}

/* --- Left Content --- */
.hero-content {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.hero-section .tt-badge {
    background: rgba(99, 102, 241, 0.08);
    color: #6366F1;
    border: 1px solid rgba(99, 102, 241, 0.15);
}

main .hero-section h1.hero-title {
    font-family: var(--tt-font) !important;
    font-size: clamp(2.2rem, 3.2vw, 3rem) !important;
    font-weight: 700 !important;
    line-height: 1.15 !important;
    color: var(--tt-text) !important;
    letter-spacing: -0.025em;
    margin: 0;
    max-width: 480px;
}

.hero-highlight {
    color: var(--tt-electric);
    -webkit-text-fill-color: var(--tt-electric);
}

.hero-subtitle {
    font-size: 16px;
    line-height: 1.7;
    color: var(--tt-text-secondary);
    max-width: 460px;
    margin: 0;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 4px;
    flex-wrap: wrap;
}

.hero-cta {
    padding: 15px 34px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    background: var(--tt-electric);
    box-shadow: 0 4px 16px var(--tt-electric-glow);
}

.hero-cta:hover {
    background: var(--tt-electric-hover);
    box-shadow: 0 6px 24px var(--tt-electric-glow);
    transform: translateY(-2px);
}

.hero-cta i {
    font-size: 13px;
    transition: transform var(--tt-transition);
}

.hero-cta:hover i {
    transform: translateX(4px);
}

.hero-no-cc {
    font-size: 13px;
    color: var(--tt-text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

.hero-no-cc i {
    color: #10B981;
    font-size: 12px;
}

/* Trust */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 12px;
    padding-top: 22px;
    border-top: 1px solid var(--tt-border);
}

.hero-trust-avatars {
    display: flex;
    align-items: center;
}

.trust-avatar-img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2.5px solid #fff;
    margin-right: -9px;
    object-fit: cover;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.trust-avatar-img:nth-child(1) { z-index: 5; position: relative; }
.trust-avatar-img:nth-child(2) { z-index: 4; position: relative; }
.trust-avatar-img:nth-child(3) { z-index: 3; position: relative; }
.trust-avatar-img:nth-child(4) { z-index: 2; position: relative; }

.trust-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2.5px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.trust-avatar-count {
    background: var(--tt-electric-light);
    color: var(--tt-electric);
}

.hero-trust-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.trust-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.trust-number {
    font-size: 15px;
    font-weight: 700;
    color: var(--tt-text);
}

.trust-rating {
    font-size: 13px;
    font-weight: 700;
    color: var(--tt-text);
    display: flex;
    align-items: center;
    gap: 3px;
}

.trust-rating i {
    color: #FBBF24;
    font-size: 11px;
}

.trust-label {
    font-size: 11px;
    color: var(--tt-text-muted);
    font-weight: 400;
}

.trust-divider {
    width: 1px;
    height: 30px;
    background: var(--tt-border);
}


/* ============================================
   RIGHT SIDE — Product Preview Panel
   ============================================ */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Wrapper panel card */
.tl-panel {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 18px;
    padding: 28px 24px 24px;
    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.02),
        0 4px 16px rgba(0, 0, 0, 0.04),
        0 16px 40px rgba(99, 102, 241, 0.04);
    width: 100%;
}

.tl-wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Task cards — single row */
.tl-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    padding: 0;
}

/* Individual task column */
.tl-task {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    flex: 1;
    min-width: 0;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.tl-wrap.tl-drawn .tl-task { opacity: 1; transform: translateY(0); }
.tl-wrap.tl-drawn .tl-task-1 { transition-delay: 0.2s; }
.tl-wrap.tl-drawn .tl-task-2 { transition-delay: 0.35s; }
.tl-wrap.tl-drawn .tl-task-3 { transition-delay: 0.5s; }
.tl-wrap.tl-drawn .tl-task-4 { transition-delay: 0.65s; }
.tl-wrap.tl-drawn .tl-task-5 { transition-delay: 0.8s; }

/* Task card */
.tl-task-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    padding: 16px 10px 14px;
    background: #fff;
    border: 1px solid #E5E7F0;
    border-radius: 14px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
    width: 100%;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.tl-task-card:hover {
    border-color: rgba(99, 102, 241, 0.18);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.08);
    transform: translateY(-3px);
}

/* Active badge */
.tl-task-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 9px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 100px;
    margin-top: 2px;
}

.tl-badge-active {
    background: rgba(16, 185, 129, 0.08);
    color: #10B981;
}

.tl-task-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.tl-task-name {
    font-family: var(--tt-font);
    font-size: 12.5px;
    font-weight: 600;
    color: var(--tt-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.tl-task-dur {
    font-size: 11.5px;
    color: var(--tt-text-muted);
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 4px;
}

.tl-live {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #10B981;
    display: inline-block;
    animation: tlPulse 1.5s ease-in-out infinite;
}

@keyframes tlPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    50% { box-shadow: 0 0 0 5px rgba(16, 185, 129, 0); }
}

/* Stem + dot */
.tl-task-stem {
    width: 1.5px;
    height: 18px;
    background: #D1D5E0;
    opacity: 0.5;
}

.tl-stem-active {
    background: linear-gradient(to bottom, #10B981, #0066FF);
    opacity: 0.7;
}

.tl-task-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    border: 2.5px solid #A5B4FC;
    flex-shrink: 0;
    z-index: 3;
}

.tl-dot-active {
    border-color: #0066FF;
    background: #0066FF;
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.12);
}

/* Timeline line */
.tl-line {
    width: 100%;
    height: 3px;
    background: #E5E7F0;
    position: relative;
    margin-top: -6px;
    z-index: 1;
    border-radius: 3px;
}

.tl-line-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #0066FF, #6366F1, #8B5CF6, #F59E0B, #10B981);
    border-radius: 3px;
    transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
}

.tl-wrap.tl-drawn .tl-line-fill {
    width: 100%;
}

/* Bottom stats — side by side */
.tl-bottom {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 14px;
    align-items: stretch;
    margin-top: 18px;
}

/* Productivity pill */
.tl-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: #fff;
    border: 1px solid #E5E7F0;
    border-radius: 10px;
    font-size: 11.5px;
    font-weight: 600;
    color: #10B981;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
    white-space: nowrap;
    align-self: center;
}

.tl-pill i {
    font-size: 12px;
}

/* Timer block */
.tl-timer-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 16px 24px;
    background: #fff;
    border: 1px solid #E5E7F0;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.05);
}

.tl-timer-label {
    font-size: 9.5px;
    font-weight: 700;
    color: var(--tt-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    gap: 5px;
}

.tl-timer-label i {
    color: #6366F1;
    font-size: 11px;
}

.tl-timer-value {
    font-family: var(--tt-font);
    font-size: 36px;
    font-weight: 700;
    color: var(--tt-text);
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.02em;
    line-height: 1.1;
}

.tl-timer-status {
    font-size: 11px;
    color: #10B981;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.tl-rec-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10B981;
    animation: tlPulse 1.5s ease-in-out infinite;
}

/* Progress mini card */
.tl-progress-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 14px 18px;
    background: #fff;
    border: 1px solid #E5E7F0;
    border-radius: 14px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
    align-self: center;
}

.tl-progress-title {
    font-size: 11px;
    font-weight: 600;
    color: var(--tt-text);
}

.tl-progress-chart {
    width: 100%;
    height: 36px;
}

.tl-progress-total {
    font-size: 13px;
    font-weight: 700;
    color: var(--tt-text);
}

.tl-progress-total span {
    font-weight: 400;
    color: var(--tt-text-muted);
    font-size: 11px;
}

/* Quick stats strip */
.tl-quick-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 14px;
}

.tl-qs {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 12px;
    background: #fff;
    border: 1px solid #E5E7F0;
    border-radius: 10px;
    font-size: 11.5px;
    color: var(--tt-text-secondary);
    white-space: nowrap;
}

.tl-qs i {
    color: var(--tt-electric);
    font-size: 12px;
}

.tl-qs strong {
    color: var(--tt-text);
    font-weight: 700;
}



/* ============================================
   GLOBAL SECTION BACKGROUNDS + DECORATIVE SHAPES
   ============================================ */

/* --- Alternating white / blue-tint backgrounds --- */
.hero-section {
    background: linear-gradient(170deg, #F0F4FF 0%, #FFFFFF 50%, #F8FAFF 100%);
}

.featured-section {
    background: #FFFFFF;
    border-top: 1px solid #ECEEF5;
    border-bottom: 1px solid #ECEEF5;
}

.steps-section {
    background: linear-gradient(180deg, #FFFFFF 0%, #F0F5FF 100%);
    position: relative;
    overflow: hidden;
}

.features-section {
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.support-section {
    background: linear-gradient(180deg, #F5F8FF 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.pricing-section {
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.smarter-section {
    background: linear-gradient(180deg, #FFFFFF 0%, #F0F4FF 100%);
    position: relative;
    overflow: hidden;
}

.integrations-section {
    background: #FFFFFF;
    border-top: 1px solid #ECEEF5;
    border-bottom: 1px solid #ECEEF5;
}

.faq-section {
    background: linear-gradient(180deg, #F8FAFF 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.final-cta-section {
    background: linear-gradient(180deg, #FFFFFF 0%, #EBF0FF 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid #ECEEF5;
}

/* --- Decorative Shapes --- */

/* Hero: large soft circle top-right */
.hero-section .hero-glow-1 {
    background: radial-gradient(circle, rgba(0,102,255,0.06), transparent 70%);
}

.hero-section .hero-glow-2 {
    background: radial-gradient(circle, rgba(0,102,255,0.04), transparent 70%);
}

/* Steps: floating ring + dot */
.steps-section::before {
    content: '';
    position: absolute;
    top: 60px;
    right: 80px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(0, 102, 255, 0.06);
    pointer-events: none;
}

.steps-section::after {
    content: '';
    position: absolute;
    bottom: 50px;
    left: 60px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 102, 255, 0.08);
    pointer-events: none;
}

/* Features: diagonal line accent + circle */
.features-section::before {
    content: '';
    position: absolute;
    top: 40px;
    right: 48px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--tt-electric);
    opacity: 0.12;
    pointer-events: none;
}

.features-section::after {
    content: '';
    position: absolute;
    bottom: 60px;
    left: 40px;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(0, 102, 255, 0.05);
    border-radius: 10px;
    transform: rotate(15deg);
    pointer-events: none;
}

/* Support: ring */
.support-section::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 64px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid rgba(0, 102, 255, 0.06);
    pointer-events: none;
}

.support-section::after {
    content: '';
    position: absolute;
    bottom: 48px;
    right: 72px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 102, 255, 0.08);
    pointer-events: none;
}

/* Pricing: plus + square */
.pricing-section::before {
    content: '+';
    position: absolute;
    top: 64px;
    right: 96px;
    font-size: 20px;
    font-weight: 300;
    color: rgba(0, 102, 255, 0.07);
    pointer-events: none;
}

.pricing-section::after {
    content: '';
    position: absolute;
    bottom: 80px;
    left: 56px;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(0, 102, 255, 0.05);
    border-radius: 4px;
    transform: rotate(12deg);
    pointer-events: none;
}

/* Smarter: triangle-ish + dot */
.smarter-section::before {
    content: '';
    position: absolute;
    top: 48px;
    left: 72px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 14px solid rgba(0, 102, 255, 0.05);
    pointer-events: none;
}

.smarter-section::after {
    content: '';
    position: absolute;
    bottom: 40px;
    right: 64px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 102, 255, 0.06);
    pointer-events: none;
}

/* FAQ: ring + cross */
.faq-section::before {
    content: '';
    position: absolute;
    top: 48px;
    left: 56px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 102, 255, 0.08);
    pointer-events: none;
}

.faq-section::after {
    content: '';
    position: absolute;
    bottom: 56px;
    right: 64px;
    width: 24px;
    height: 24px;
    border: 2px solid rgba(0, 102, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

/* Final CTA: large soft glow */
.final-cta-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -40px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.04), transparent 70%);
    pointer-events: none;
}

/* Hide section pseudo shapes on mobile */
@media (max-width: 768px) {
    .steps-section::before,
    .steps-section::after,
    .features-section::before,
    .features-section::after,
    .support-section::before,
    .support-section::after,
    .pricing-section::before,
    .pricing-section::after,
    .smarter-section::before,
    .smarter-section::after,
    .faq-section::before,
    .faq-section::after,
    .final-cta-section::before {
        display: none;
    }
}

/* ============================================
   ANIMATED GEOMETRIC SHAPES (time-tracking)
   ============================================ */
.geo-shapes {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.geo {
    position: absolute;
    pointer-events: none;
}

/* 1. Clock face with rotating hand */
.geo-clock {
    top: 18%;
    right: 6%;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid rgba(0, 102, 255, 0.08);
    animation: geoFloat 12s ease-in-out infinite;
}

.geo-clock-hand {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1.5px;
    height: 11px;
    background: rgba(0, 102, 255, 0.15);
    transform-origin: bottom center;
    animation: clockSpin 8s linear infinite;
    border-radius: 1px;
}

@keyframes clockSpin {
    from { transform: translateX(-50%) rotate(0deg); }
    to { transform: translateX(-50%) rotate(360deg); }
}

/* 2. Progress bar filling */
.geo-bar {
    top: 42%;
    left: 3%;
    width: 48px;
    height: 5px;
    border-radius: 3px;
    background: rgba(0, 102, 255, 0.05);
    animation: geoFloat 14s ease-in-out 2s infinite;
}

.geo-bar-fill {
    height: 100%;
    border-radius: 3px;
    background: rgba(0, 102, 255, 0.12);
    animation: barFill 4s ease-in-out infinite;
}

@keyframes barFill {
    0%, 100% { width: 20%; }
    50% { width: 85%; }
}

/* 3. Rotating square (task card) */
.geo-square {
    top: 60%;
    right: 4%;
    width: 18px;
    height: 18px;
    border: 1.5px solid rgba(0, 102, 255, 0.07);
    border-radius: 3px;
    animation: squareRotate 20s linear infinite, geoFloat 10s ease-in-out infinite;
}

@keyframes squareRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* 4. Timer ring */
.geo-ring {
    top: 75%;
    left: 5%;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1.5px solid rgba(0, 102, 255, 0.06);
    border-top-color: rgba(0, 102, 255, 0.15);
    animation: ringRotate 6s linear infinite, geoFloat 11s ease-in-out 1s infinite;
}

@keyframes ringRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* 5. Timeline dots */
.geo-dots {
    top: 30%;
    left: 7%;
    display: flex;
    gap: 6px;
    align-items: center;
    animation: geoFloat 13s ease-in-out 3s infinite;
}

.geo-dots span {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(0, 102, 255, 0.1);
    animation: dotPulse 3s ease-in-out infinite;
}

.geo-dots span:nth-child(2) { animation-delay: 0.5s; }
.geo-dots span:nth-child(3) { animation-delay: 1s; }

@keyframes dotPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.4); }
}

/* 6. Hourglass */
.geo-hourglass {
    bottom: 22%;
    right: 8%;
    width: 14px;
    height: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
    animation: hourglassFlip 6s ease-in-out infinite, geoFloat 15s ease-in-out infinite;
}

.geo-hg-top, .geo-hg-bottom {
    width: 0;
    height: 0;
}

.geo-hg-top {
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 10px solid rgba(0, 102, 255, 0.08);
}

.geo-hg-bottom {
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 10px solid rgba(0, 102, 255, 0.08);
}

@keyframes hourglassFlip {
    0%, 45% { transform: rotate(0deg); }
    50%, 95% { transform: rotate(180deg); }
    100% { transform: rotate(360deg); }
}

/* 7. Floating rectangle (timesheet) */
.geo-rect {
    top: 50%;
    left: 6%;
    width: 28px;
    height: 10px;
    border: 1.5px solid rgba(0, 102, 255, 0.06);
    border-radius: 2px;
    animation: geoFloat 16s ease-in-out 4s infinite;
}

/* 8. Progress ring (SVG) */
.geo-progress {
    top: 12%;
    left: 4%;
    width: 36px;
    height: 36px;
    animation: geoFloat 11s ease-in-out 2s infinite;
}

.geo-progress-arc {
    animation: arcDraw 5s ease-in-out infinite;
    transform-origin: center;
    transform: rotate(-90deg);
}

@keyframes arcDraw {
    0%, 100% { stroke-dashoffset: 70; }
    50% { stroke-dashoffset: 10; }
}

/* 9. Cross / plus */
.geo-cross {
    bottom: 35%;
    left: 4%;
    width: 16px;
    height: 16px;
    position: absolute;
    animation: geoFloat 9s ease-in-out 5s infinite;
}

.geo-cross::before,
.geo-cross::after {
    content: '';
    position: absolute;
    background: rgba(0, 102, 255, 0.08);
    border-radius: 1px;
}

.geo-cross::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 1.5px;
    transform: translateY(-50%);
}

.geo-cross::after {
    top: 0;
    left: 50%;
    width: 1.5px;
    height: 100%;
    transform: translateX(-50%);
}

/* 10. Diamond */
.geo-diamond {
    bottom: 15%;
    right: 5%;
    width: 14px;
    height: 14px;
    border: 1.5px solid rgba(0, 102, 255, 0.07);
    transform: rotate(45deg);
    animation: geoFloat 13s ease-in-out 3s infinite, diamondPulse 8s ease-in-out infinite;
}

@keyframes diamondPulse {
    0%, 100% { border-color: rgba(0, 102, 255, 0.07); }
    50% { border-color: rgba(0, 102, 255, 0.14); }
}

/* Shared float animation */
@keyframes geoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Hide all geo shapes on mobile */
@media (max-width: 1024px) {
    .geo-shapes {
        display: none;
    }
}


/* ============================================
   HERO RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        padding-top: 48px;
        padding-bottom: 40px;
    }

    .hero-content {
        align-items: center;
    }

    .hero-subtitle {
        max-width: 540px;
    }

    .hero-trust {
        justify-content: center;
    }

    .tl-panel {
        max-width: 580px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-container {
        padding-top: 40px;
        padding-bottom: 36px;
    }

    .hero-trust {
        flex-direction: column;
        gap: 12px;
    }

    .tl-panel {
        padding: 20px 16px 18px;
        border-radius: 16px;
    }

    .tl-cards {
        gap: 6px;
    }

    .tl-task-card {
        padding: 10px 6px 8px;
    }

    .tl-task-name {
        font-size: 10px;
    }

    .tl-task-icon {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }

    .tl-timer-value {
        font-size: 26px;
    }

    .tl-bottom {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .tl-pill {
        justify-content: center;
    }

    .tl-progress-card {
        display: none;
    }

    .tl-quick-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
}


/* ============================================
   AS FEATURED ON
   ============================================ */
.hero-featured {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 32px 24px;
}

.hero-featured-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--tt-text-muted, #8A8CA5);
    margin-bottom: 16px;
    display: block;
}

.hero-featured-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.hero-featured-logo {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--tt-text-secondary, #555770);
    letter-spacing: -0.01em;
    cursor: default;
    transition: color 0.3s ease;
}

.hero-featured-logo:hover {
    color: var(--tt-text, #1A1A2E);
}

.hero-featured-divider {
    width: 1px;
    height: 22px;
    background: var(--tt-border, #E5E7F0);
}


/* ============================================
   FEATURE HIGHLIGHT — EMPLOYEE TIMESHEETS
   ============================================ */
.tt-fh-section {
    background: #FFFFFF;
    border-top: 1px solid #ECEEF5;
}

.tt-fh-container {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    align-items: center;
    gap: 60px;
    padding-top: 80px;
    padding-bottom: 80px;
}

/* --- Left: Content --- */
.tt-fh-content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.tt-fh-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    padding: 5px 14px;
    background: rgba(16, 185, 129, 0.08);
    color: #10B981;
    font-family: var(--tt-font);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 100px;
    margin-bottom: 18px;
}

.tt-fh-badge i {
    font-size: 10px;
}

.tt-fh-title {
    font-family: var(--tt-font);
    font-size: clamp(1.8rem, 2.8vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--tt-text);
    letter-spacing: -0.025em;
    margin: 0 0 18px;
}

.tt-fh-sparkle {
    color: #10B981;
    font-size: 0.7em;
    margin-left: 4px;
}

.tt-fh-desc {
    font-family: var(--tt-font);
    font-size: 15.5px;
    line-height: 1.75;
    color: var(--tt-text-secondary);
    margin: 0 0 24px;
    max-width: 520px;
}

.tt-fh-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    background: var(--tt-text, #1A1A2E);
    color: #FFFFFF;
    font-family: var(--tt-font);
    font-size: 14.5px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: fit-content;
    margin-bottom: 28px;
}

.tt-fh-cta:hover {
    background: #0A0A1A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.tt-fh-cta i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.tt-fh-cta:hover i {
    transform: translateX(3px);
}

.tt-fh-divider {
    border: none;
    border-top: 1px solid var(--tt-border);
    margin: 0 0 24px;
}

/* Key Benefits / Perfect For */
.tt-fh-lists {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.tt-fh-list-title {
    font-family: var(--tt-font);
    font-size: 15px;
    font-weight: 700;
    color: var(--tt-text);
    margin: 0 0 14px;
}

.tt-fh-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tt-fh-list li {
    font-family: var(--tt-font);
    font-size: 14px;
    line-height: 1.5;
    color: var(--tt-text-secondary);
    padding-left: 20px;
    position: relative;
}

.tt-fh-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10B981;
}

/* --- Right: Timesheet Card Visual --- */
.tt-fh-visual {
    position: relative;
}

.tt-fh-card {
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 8px 32px rgba(0, 0, 0, 0.06);
    border: 1px solid #ECEEF5;
}

.tt-fh-card-header {
    height: 80px;
    background: #F3F4F6;
    border-bottom: 1px solid #E5E7EB;
}

.tt-fh-card-body {
    padding: 24px;
}

.tt-fh-card-title {
    font-family: var(--tt-font);
    font-size: 17px;
    font-weight: 700;
    color: var(--tt-text);
    margin: 0 0 20px;
}

.tt-fh-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.tt-fh-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--tt-font);
    font-size: 13px;
    white-space: nowrap;
}

.tt-fh-table thead th {
    padding: 10px 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--tt-text-muted);
    text-align: center;
    border-bottom: 1px solid #ECEEF5;
}

.tt-fh-table thead th span {
    display: block;
    font-size: 10px;
    font-weight: 400;
    color: var(--tt-text-muted);
    margin-top: 2px;
    opacity: 0.7;
}

.tt-fh-th-project {
    text-align: left !important;
    min-width: 110px;
}

.tt-fh-th-total {
    min-width: 90px;
}

.tt-fh-table tbody td,
.tt-fh-table tfoot td {
    padding: 14px 12px;
    text-align: center;
    color: var(--tt-text-secondary);
    border-bottom: 1px solid #F3F4F6;
    font-size: 13px;
    font-weight: 500;
}

.tt-fh-td-project {
    text-align: left !important;
}

.tt-fh-td-project strong {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--tt-text);
}

.tt-fh-td-project span {
    font-size: 11.5px;
    color: var(--tt-text-muted);
    font-weight: 400;
}

.tt-fh-td-total {
    font-weight: 600 !important;
    color: var(--tt-electric) !important;
}

.tt-fh-table tfoot td {
    border-bottom: none;
    border-top: 2px solid #ECEEF5;
    font-weight: 600;
    color: var(--tt-text);
}

.tt-fh-table tfoot .tt-fh-td-total {
    color: var(--tt-electric) !important;
}


/* ============================================
   HOW IT WORKS — 3 CARDS
   ============================================ */
.steps-section {
    background: linear-gradient(180deg, #FFFFFF 0%, #F0F5FF 100%);
}

.steps-container {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Cards Row */
.steps-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Single Card */
.steps-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 16px rgba(0, 0, 0, 0.02);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.steps-card:hover {
    box-shadow: 0 8px 32px rgba(0, 102, 255, 0.08), 0 2px 8px rgba(0, 0, 0, 0.03);
    transform: translateY(-4px);
}

/* Card Header (icon + label inline) */
.steps-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
}

.steps-card-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--tt-electric);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
    transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.steps-card:hover .steps-card-icon {
    transform: scale(1.08);
}

.steps-card-label {
    font-family: var(--tt-font);
    font-size: 18px;
    font-weight: 700;
    color: var(--tt-text);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* Card Description */
.steps-card-desc {
    font-size: 15px;
    line-height: 1.65;
    color: var(--tt-text-secondary);
    margin: 0;
}



/* ============================================
   FEATURES — Bento Grid
   ============================================ */
.features-section {
    background: #fff;
}

.features-container {
    display: flex;
    flex-direction: column;
    gap: 36px;
    padding-top: 72px;
    padding-bottom: 72px;
}

/* Header */
.features-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

main .features-section h2.features-title {
    font-family: var(--tt-font) !important;
    font-size: clamp(2rem, 3vw, 2.75rem) !important;
    white-space: nowrap;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    color: var(--tt-text) !important;
    letter-spacing: -0.02em;
    margin: 0;
}

.features-subtitle {
    font-size: 16px;
    line-height: 1.65;
    color: var(--tt-text-secondary);
    margin: 0;
}

/* Feature Grid — 4 columns */
.feat-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

/* Card base */
.feat-card {
    background: #FAFBFE;
    border: 1px solid #ECEEF5;
    border-radius: 14px;
    padding: 22px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feat-card:hover {
    background: #fff;
    border-color: rgba(99, 102, 241, 0.12);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    transform: translateY(-4px);
}

/* Accent bar at bottom — colored per card */
.feat-card-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent, #0066FF);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feat-card:hover .feat-card-accent {
    transform: scaleX(1);
}

/* Set accent color via data attribute */
.feat-card[data-accent="#0066FF"] { --accent: #0066FF; }
.feat-card[data-accent="#8B5CF6"] { --accent: #8B5CF6; }
.feat-card[data-accent="#14B8A6"] { --accent: #14B8A6; }
.feat-card[data-accent="#F59E0B"] { --accent: #F59E0B; }
.feat-card[data-accent="#10B981"] { --accent: #10B981; }
.feat-card[data-accent="#EF4444"] { --accent: #EF4444; }
.feat-card[data-accent="#6366F1"] { --accent: #6366F1; }
.feat-card[data-accent="#0EA5E9"] { --accent: #0EA5E9; }

/* Card top row: number + icon */
.feat-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.feat-num {
    font-family: var(--tt-font);
    font-size: 26px;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.05);
    line-height: 1;
    letter-spacing: -0.03em;
}

.feat-icon-wrap {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feat-card:hover .feat-icon-wrap {
    transform: scale(1.1) rotate(-3deg);
}

/* Typography */
.feat-card-title {
    font-family: var(--tt-font);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
    color: var(--tt-text);
    margin: 0;
}

.feat-card-desc {
    font-size: 13px;
    line-height: 1.65;
    color: var(--tt-text-secondary);
    margin: 0;
}

/* ============================================
   SUPPORT SECTION
   ============================================ */
.support-section {
    background: linear-gradient(180deg, #F5F8FF 0%, #FFFFFF 100%);
}

.support-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Header */
.support-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    max-width: 700px;
}

main .support-section h2.support-title {
    font-family: var(--tt-font) !important;
    font-size: clamp(1.6rem, 2.5vw, 2rem) !important;
    font-weight: 700 !important;
    line-height: 1.25 !important;
    color: var(--tt-text) !important;
    letter-spacing: -0.015em;
    margin: 0;
}

.support-subtitle {
    font-size: 16px;
    line-height: 1.65;
    color: var(--tt-text-secondary);
    margin: 0;
}

.support-cta {
    margin-top: 4px;
    padding: 12px 28px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
}

.support-cta i {
    font-size: 12px;
    transition: transform var(--tt-transition);
}

.support-cta:hover i {
    transform: translateX(3px);
}

.support-channels {
    font-size: 13px;
    color: var(--tt-text-muted);
    font-weight: 400;
    letter-spacing: 0.02em;
}

/* Stats Row */
.support-stats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    width: 100%;
}

.support-stat-card {
    background: #fff;
    border: 1px solid #ECEEF5;
    border-radius: var(--tt-radius);
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.support-stat-card:hover {
    border-color: rgba(0, 102, 255, 0.12);
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.06);
    transform: translateY(-3px);
}

.support-stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--tt-electric-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tt-electric);
    font-size: 18px;
    transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.support-stat-card:hover .support-stat-icon {
    transform: scale(1.1);
}

.support-stat-number {
    font-family: var(--tt-font);
    font-size: 28px;
    font-weight: 700;
    color: var(--tt-text);
    line-height: 1;
    letter-spacing: -0.02em;
}

.support-stat-label {
    font-size: 13px;
    color: var(--tt-text-muted);
    line-height: 1.4;
    font-weight: 400;
}



/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-section {
    background: #FFFFFF;
}

.pricing-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
    padding-top: 80px;
    padding-bottom: 80px;
}

.pricing-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: 800px;
}

main .pricing-section h2.pricing-title {
    font-family: var(--tt-font) !important;
    font-size: clamp(2rem, 3vw, 2.5rem) !important;
    white-space: nowrap;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    color: var(--tt-text) !important;
    letter-spacing: -0.02em;
    margin: 0;
}

/* Billing Toggle */
.billing-toggle {
    display: inline-flex;
    align-items: center;
    background: #ECEEF5;
    border-radius: 100px;
    padding: 4px;
    gap: 0;
}

.billing-btn {
    padding: 9px 22px;
    font-family: var(--tt-font);
    font-size: 13px;
    font-weight: 500;
    color: var(--tt-text-secondary);
    background: transparent;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.billing-btn.billing-active {
    color: #fff;
    background: var(--tt-electric);
    box-shadow: 0 2px 8px rgba(0, 102, 255, 0.25);
}

.billing-btn:not(.billing-active):hover {
    color: var(--tt-text);
}

/* 4-Column Pricing Cards */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
    align-items: stretch;
}

.price-card {
    background: #fff;
    border: 1.5px solid #ECEEF5;
    border-radius: 16px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    transition: all 0.35s ease;
}

.price-card:hover {
    border-color: rgba(99, 102, 241, 0.12);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
    transform: translateY(-3px);
}

.price-card-featured {
    border-color: var(--tt-electric);
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.1);
}

.price-card-featured:hover {
    border-color: var(--tt-electric);
    box-shadow: 0 8px 32px rgba(0, 102, 255, 0.14);
}

.price-card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--tt-electric);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 100px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 102, 255, 0.3);
}

.price-card-name {
    font-family: var(--tt-font);
    font-size: 18px;
    font-weight: 700;
    color: var(--tt-text);
    margin: 0;
}

.price-amount {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.price-currency {
    font-size: 20px;
    font-weight: 600;
    color: var(--tt-text);
}

.price-value {
    font-family: var(--tt-font);
    font-size: 42px;
    font-weight: 700;
    color: var(--tt-text);
    line-height: 1;
    letter-spacing: -0.03em;
    transition: all 0.4s ease;
}

.price-period {
    font-size: 14px;
    color: var(--tt-text-muted);
    margin-left: 4px;
}

.price-billing-note {
    font-size: 12px;
    color: var(--tt-text-muted);
    margin-top: -8px;
}

.price-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    padding-top: 12px;
    border-top: 1px solid #F0F1F5;
}

.price-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    line-height: 1.4;
    color: var(--tt-text-secondary);
}

.price-features li i {
    color: var(--tt-electric);
    font-size: 11px;
    margin-top: 3px;
    flex-shrink: 0;
}

.price-cta {
    width: 100%;
    text-align: center;
    margin-top: auto;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
}

.price-value.price-changing {
    opacity: 0;
    transform: translateY(-6px);
}

/* Compare Toggle Button */
.compare-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--tt-font);
    font-size: 14px;
    font-weight: 600;
    color: var(--tt-electric);
    background: var(--tt-electric-light);
    border: 1.5px solid rgba(0, 102, 255, 0.15);
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.compare-toggle:hover {
    background: rgba(0, 102, 255, 0.12);
    box-shadow: 0 2px 12px rgba(0, 102, 255, 0.1);
}

.compare-arrow {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.compare-toggle.active .compare-arrow {
    transform: rotate(180deg);
}

/* ============================================
   FEATURE COMPARISON TABLE
   ============================================ */
.compare-table-wrap {
    width: 100%;
    overflow-x: auto;
    margin-top: 16px;
    border-radius: 14px;
    border: 1px solid #ECEEF5;
    background: #fff;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--tt-font);
    font-size: 13px;
    min-width: 700px;
}

.compare-table thead {
    background: #F8F9FC;
    position: sticky;
    top: 0;
}

.compare-table th {
    padding: 14px 16px;
    text-align: center;
    font-weight: 600;
    font-size: 13px;
    color: var(--tt-text);
    border-bottom: 1px solid #ECEEF5;
    white-space: nowrap;
}

.compare-table th:first-child {
    text-align: left;
    min-width: 220px;
}

.compare-highlight {
    background: rgba(0, 102, 255, 0.04) !important;
    color: var(--tt-electric) !important;
}

.compare-table td {
    padding: 11px 16px;
    text-align: center;
    color: var(--tt-text-secondary);
    border-bottom: 1px solid #F5F6FA;
}

.compare-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--tt-text);
}

.compare-table tbody tr:hover {
    background: #FAFBFE;
}

.compare-table tbody tr:last-child td {
    border-bottom: none;
}

.cm-yes {
    color: #10B981;
    font-size: 13px;
}

.cm-no {
    color: #D1D5E0;
    font-size: 13px;
}

/* ============================================
   WORK SMARTER SECTION
   ============================================ */
.smarter-section {
    background: linear-gradient(180deg, #FFFFFF 0%, #F0F4FF 100%);
}

.smarter-container {
    display: flex;
    flex-direction: column;
    gap: 48px;
    padding-top: 100px;
    padding-bottom: 100px;
}

/* Header — left aligned like reference */
.smarter-header {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 560px;
}

.smarter-tag {
    font-family: var(--tt-font);
    font-size: 12px;
    font-weight: 700;
    color: var(--tt-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

main .smarter-section h2.smarter-title {
    font-family: var(--tt-font) !important;
    font-size: clamp(1.8rem, 2.8vw, 2.5rem) !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    color: var(--tt-text) !important;
    letter-spacing: -0.02em;
    margin: 0;
}

.smarter-subtitle {
    font-size: 16px;
    line-height: 1.7;
    color: var(--tt-text-secondary);
    margin: 0;
}

/* Cards Row */
.smarter-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* Single Card */
.smarter-card {
    background: #fff;
    border: 1px solid #ECEEF5;
    border-radius: var(--tt-radius);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.smarter-card:hover {
    border-color: rgba(0, 102, 255, 0.12);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.02);
    transform: translateY(-5px);
}

/* Card Icon */
.smarter-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.smarter-card:hover .smarter-card-icon {
    transform: scale(1.1);
}

.smarter-icon-blue {
    background: rgba(0, 102, 255, 0.08);
    color: #0066FF;
}

.smarter-icon-orange {
    background: rgba(245, 158, 11, 0.08);
    color: #F59E0B;
}

.smarter-icon-purple {
    background: rgba(139, 92, 246, 0.08);
    color: #8B5CF6;
}

/* Card Text */
.smarter-card-title {
    font-family: var(--tt-font);
    font-size: 18px;
    font-weight: 600;
    color: var(--tt-text);
    margin: 0;
}

.smarter-card-desc {
    font-size: 14px;
    line-height: 1.65;
    color: var(--tt-text-secondary);
    margin: 0;
    flex: 1;
}

/* Card CTA Button */
.smarter-card-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    font-family: var(--tt-font);
    font-size: 13px;
    font-weight: 600;
    color: var(--tt-text);
    background: transparent;
    border: 1.5px solid var(--tt-border);
    border-radius: var(--tt-radius-sm);
    text-decoration: none;
    width: fit-content;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.smarter-card-btn:hover {
    border-color: var(--tt-electric);
    color: var(--tt-electric);
    background: var(--tt-electric-light);
    transform: scale(1.03);
    box-shadow: 0 2px 8px rgba(0, 102, 255, 0.12);
}


/* ============================================
   INTEGRATIONS STRIP
   ============================================ */
.integrations-section {
    background: #fff;
    border-top: 1px solid #ECEEF5;
    border-bottom: 1px solid #ECEEF5;
}

.integrations-container {
    padding-top: 44px;
    padding-bottom: 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.integrations-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--tt-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-align: center;
    margin: 0;
}

.integrations-marquee {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.integrations-track {
    display: flex;
    align-items: center;
    gap: 48px;
    width: max-content;
    animation: intgScroll 35s linear infinite;
}

.integrations-track:hover {
    animation-play-state: paused;
}

@keyframes intgScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.intg-item {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    filter: grayscale(1);
    opacity: 0.45;
    transition: all 0.4s ease;
    cursor: default;
    user-select: none;
}

.intg-item:hover {
    filter: grayscale(0);
    opacity: 1;
}

.intg-item i {
    font-size: 20px;
    color: var(--tt-text-secondary);
    transition: color 0.4s ease;
}

.intg-item span {
    font-family: var(--tt-font);
    font-size: 14px;
    font-weight: 600;
    color: var(--tt-text-secondary);
    transition: color 0.4s ease;
}

.intg-item:hover span {
    color: var(--tt-text);
}

/* Brand colors on hover */
.intg-item:hover i.fa-slack { color: #4A154B; }
.intg-item:hover i.fa-jira { color: #0052CC; }
.intg-item:hover i.fa-github { color: #181717; }
.intg-item:hover i.fa-trello { color: #0079BF; }
.intg-item:hover i.fa-google { color: #4285F4; }
.intg-item:hover i.fa-microsoft { color: #00A4EF; }
.intg-item:hover i.fa-figma { color: #F24E1E; }
.intg-item:hover i.fa-confluence { color: #172B4D; }
.intg-item:hover i.fa-stripe { color: #635BFF; }
.intg-item:hover i.fa-bolt { color: #FF4A00; }


/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    background: linear-gradient(180deg, #F8FAFF 0%, #FFFFFF 100%);
}

.faq-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
    padding-top: 80px;
    padding-bottom: 80px;
}

.faq-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

main .faq-section h2.faq-title {
    font-family: var(--tt-font) !important;
    font-size: clamp(1.8rem, 2.5vw, 2.2rem) !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    color: var(--tt-text) !important;
    margin: 0;
}

.faq-list {
    width: 100%;
    max-width: 760px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: #FAFBFE;
    border: 1px solid #ECEEF5;
    border-radius: 12px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
    border-color: rgba(0, 102, 255, 0.1);
}

.faq-item.faq-open {
    border-color: rgba(0, 102, 255, 0.15);
    box-shadow: 0 2px 12px rgba(0, 102, 255, 0.04);
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 22px;
    font-family: var(--tt-font);
    font-size: 15px;
    font-weight: 600;
    color: var(--tt-text);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 16px;
    transition: color 0.2s ease;
}

.faq-q:hover {
    color: var(--tt-electric);
}

.faq-icon {
    font-size: 13px;
    color: var(--tt-text-muted);
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
}

.faq-item.faq-open .faq-icon {
    transform: rotate(45deg);
    color: var(--tt-electric);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
    padding: 0 22px;
}

.faq-item.faq-open .faq-a {
    max-height: 200px;
    padding: 0 22px 18px;
}

.faq-a p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--tt-text-secondary);
    margin: 0;
}


/* ============================================
   FINAL CTA SECTION
   ============================================ */
.final-cta-section {
    position: relative;
    background: linear-gradient(180deg, #FFFFFF 0%, #EBF0FF 100%);
    border-top: 1px solid #ECEEF5;
    overflow: hidden;
}

.final-cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding-top: 72px;
    padding-bottom: 72px;
    position: relative;
    z-index: 2;
}

main .final-cta-section h2.final-cta-headline {
    font-family: var(--tt-font) !important;
    font-size: clamp(1.5rem, 2.5vw, 2rem) !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    color: var(--tt-text) !important;
    letter-spacing: -0.015em;
    margin: 0;
    max-width: 600px;
}

.final-cta-btn {
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    margin-top: 4px;
}

.final-cta-btn i {
    font-size: 13px;
    transition: transform var(--tt-transition);
}

.final-cta-btn:hover i {
    transform: translateX(4px);
}

.final-cta-alt {
    font-size: 14px;
    color: var(--tt-text-secondary);
    margin: 0;
}

.final-cta-alt a {
    color: var(--tt-electric);
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.final-cta-alt a:hover {
    color: var(--tt-electric-hover);
}

.final-cta-trust {
    font-size: 12px;
    color: var(--tt-text-muted);
    margin: 0;
    letter-spacing: 0.01em;
}


/* ============================================
   RESPONSIVE
   ============================================ */
/* --- Responsive --- */
@media (max-width: 1200px) {
    .feat-bento {
        grid-template-columns: repeat(2, 1fr);
    }

    .support-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .tt-container {
        padding: 60px 32px;
    }

    .tt-section-title {
        font-size: 36px;
    }

    /* Feature Highlight tablet */
    .tt-fh-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .tt-fh-content {
        text-align: center;
        align-items: center;
    }

    .tt-fh-desc {
        max-width: 580px;
    }

    .tt-fh-card {
        max-width: 600px;
        margin: 0 auto;
    }

    /* Steps responsive */
    .steps-cards {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .steps-container {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    /* Features tablet */
    .features-container {
        padding-top: 72px;
        padding-bottom: 72px;
        gap: 36px;
    }

    /* Pricing tablet */
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-container {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    /* Work Smarter tablet */
    .smarter-cards {
        grid-template-columns: 1fr;
        max-width: 480px;
    }

    .smarter-container {
        padding-top: 72px;
        padding-bottom: 72px;
        gap: 36px;
    }
}

@media (max-width: 768px) {
    .tt-container {
        padding: 48px 20px;
    }

    .tt-section-title {
        font-size: 30px;
    }

    .tt-section-subtitle {
        font-size: 16px;
    }

    /* Feature Highlight mobile */
    .tt-fh-container {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .tt-fh-title {
        font-size: 1.6rem;
    }

    .tt-fh-lists {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .tt-fh-card-header {
        height: 50px;
    }

    .tt-fh-card-body {
        padding: 16px 12px;
    }

    .tt-fh-table thead th,
    .tt-fh-table tbody td,
    .tt-fh-table tfoot td {
        padding: 10px 8px;
        font-size: 11.5px;
    }

    /* Steps mobile */
    .steps-container {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .steps-card {
        padding: 28px 24px;
    }

    .steps-card-desc {
        font-size: 14px;
    }

    /* Features mobile */
    .feat-bento {
        grid-template-columns: 1fr;
    }

    .features-container {
        padding-top: 48px;
        padding-bottom: 48px;
        gap: 24px;
    }

    .feat-card {
        padding: 18px 16px;
    }

    /* Support mobile */
    .support-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .support-stat-card {
        padding: 22px 16px;
    }

    .support-stat-number {
        font-size: 24px;
    }

    .support-container {
        padding-top: 56px;
        padding-bottom: 56px;
        gap: 36px;
    }

    /* Pricing mobile */
    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .pricing-container {
        padding-top: 48px;
        padding-bottom: 48px;
        gap: 28px;
    }

    .price-value {
        font-size: 36px;
    }

    .billing-btn {
        padding: 8px 16px;
        font-size: 12px;
    }

    .compare-table {
        font-size: 12px;
    }

    /* Work Smarter mobile */
    .smarter-container {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .smarter-cards {
        max-width: 100%;
    }

    .smarter-card {
        padding: 24px 22px;
    }

    /* Integrations mobile */
    .integrations-container {
        padding-top: 36px;
        padding-bottom: 36px;
    }

    .integrations-track {
        gap: 36px;
    }

    .intg-item span {
        font-size: 12px;
    }

    /* Final CTA mobile */
    .final-cta-container {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .final-cta-btn {
        padding: 14px 32px;
        font-size: 15px;
    }
}
