:root {
    --fl-bg: #fdfdfd;
    --fl-dark: #111111;
    --fl-gray: #666666;
    --fl-light-gray: #f2f2f2;
    --fl-purple: #8c7bff;
    --fl-lime: #d4ff3f;
    --fl-shadow: 0 20px 40px rgba(0,0,0,0.06);
    --acrm-border: #ececf2;
    --acrm-soft: #fafafe;
    --acrm-card: #ffffff;
}

.fl-hero-section {
    background-color: var(--fl-bg);
    padding: 90px 5%;
    font-family: 'Inter', -apple-system, sans-serif;
    overflow: hidden;
}

.acrm-hero-theme {
    background:
      radial-gradient(circle at top left, rgba(212,255,63,0.18), transparent 28%),
      radial-gradient(circle at top right, rgba(140,123,255,0.12), transparent 32%),
      var(--fl-bg);
}

.fl-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.fl-hero-visuals {
    flex: 1;
    position: relative;
}

.fl-hero-main-card {
    background: linear-gradient(180deg, #f6f6fb 0%, #efeff6 100%);
    border-radius: 40px;
    padding: 40px;
    height: 550px;
    position: relative;
    border: 1px solid #ececf4;
}

.fl-hero-gauge-container {
    background: white;
    border-radius: 24px;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    box-shadow: var(--fl-shadow);
}

.fl-hero-gauge-info h3 { font-size: 1.1rem; margin-bottom: 5px; }
.fl-hero-gauge-info p { color: var(--fl-gray); font-size: 0.85rem; }
.fl-hero-time-val { font-size: 1.8rem; font-weight: 800; margin-top: 10px; }
.fl-hero-time-val span { font-size: 0.9rem; font-weight: 400; color: var(--fl-gray); }

.fl-hero-badge-fast {
    background: var(--fl-lime);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    margin-left: 10px;
    color: #111;
}

.fl-hero-gauge-chart {
    width: 150px;
    height: 75px;
    border-radius: 150px 150px 0 0;
    background: conic-gradient(from 0deg at 50% 100%, var(--fl-purple) 0% 70%, #e9e9ee 70% 100%);
    position: relative;
}

.fl-hero-metric-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    border-radius: 18px;
    box-shadow: var(--fl-shadow);
    z-index: 5;
}

.fl-hero-metric-dark { background: var(--fl-dark); color: white; top: 220px; left: 80px; width: 240px; }
.fl-hero-metric-white { background: white; color: var(--fl-dark); }
.fl-hero-pos-2 { top: 310px; left: 190px; width: 240px; }
.fl-hero-pos-3 { top: 400px; left: 80px; width: 240px; }
.fl-hero-pos-4 { top: 490px; left: 190px; width: 240px; }
.fl-hero-metric-icon { font-size: 1.2rem; }
.fl-hero-metric-text strong { display: block; font-size: 1.1rem; }
.fl-hero-metric-text span { font-size: 0.8rem; opacity: 0.78; }

.fl-hero-content { flex: 1; }

.fl-hero-pill {
    background: var(--fl-light-gray);
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.fl-hero-title {
    font-size: 4rem;
    line-height: 1.06;
    font-weight: 800;
    color: var(--fl-dark);
    margin-bottom: 25px;
    letter-spacing: -1.8px;
}

.fl-hero-title-main { display: inline-block; }

.fl-hero-icon-bolt {
    background: #ece9ff;
    border-radius: 50%;
    padding: 6px 9px;
    font-size: 1.25rem;
}

.fl-hero-title-dot { color: var(--fl-lime); font-size: 2rem; }

.fl-hero-desc {
    color: var(--fl-gray);
    font-size: 1.08rem;
    line-height: 1.75;
    margin-bottom: 40px;
    max-width: 560px;
}

.fl-hero-actions { display: flex; gap: 20px; margin-bottom: 55px; flex-wrap: wrap; }

.fl-hero-btn-black,
.fl-hero-btn-outline {
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.fl-hero-btn-black {
    background: var(--fl-dark);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 40px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.fl-hero-btn-black:hover,
.fl-hero-btn-outline:hover { transform: translateY(-2px); }

.fl-hero-btn-black span {
    background: var(--fl-lime);
    color: black;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fl-hero-btn-outline {
    background: white;
    border: 1px solid #ddd;
    color: #111;
    padding: 16px 32px;
    border-radius: 40px;
    cursor: pointer;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.fl-hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid #eee;
    padding-top: 30px;
    flex-wrap: wrap;
}

.fl-hero-stat-item span { color: var(--fl-gray); font-size: 0.9rem; display: block; margin-bottom: 10px; }
.fl-hero-stat-item strong { font-size: 2rem; font-weight: 800; }

.tk-ft-section {
    max-width: 1200px;
    margin: 90px auto;
    padding: 0 20px;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

.tk-ft-header { margin-bottom: 60px; }
.tk-ft-badge {
    background-color: #f2f2f2;
    padding: 7px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    display: inline-block;
    margin-bottom: 20px;
}

.tk-ft-main-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.08;
    margin: 0 0 15px 0;
    letter-spacing: -1.2px;
}

.tk-ft-subtitle { color: #888; font-size: 16px; max-width: 760px; margin: 0 auto; }

.tk-ft-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.tk-ft-card {
    background: #fff;
    border: 1.5px solid #f0f0f0;
    border-radius: 24px;
    padding: 36px 28px;
    text-align: left;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.tk-ft-card:hover {
    transform: translateY(-5px);
    border-color: #e0e0e0;
    box-shadow: 0 20px 40px rgba(17,17,17,0.05);
}

.tk-ft-card-dark {
    background-color: #111;
    border-color: #111;
    color: #fff;
}

.tk-ft-icon-box {
    width: 48px;
    height: 48px;
    background-color: #f9f9f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 25px;
    color: #333;
}

.tk-ft-icon-lime { background-color: #d4ff3f; color: #111; }
.tk-ft-card-dark .tk-ft-icon-box:not(.tk-ft-icon-lime) { background-color: rgba(255,255,255,0.1); color: #fff; }
.tk-ft-card-title { font-size: 20px; font-weight: 700; margin: 0 0 12px 0; }
.tk-ft-card-desc { color: #777; font-size: 14px; line-height: 1.7; margin: 0 0 30px 0; flex-grow: 1; }
.tk-ft-card-dark .tk-ft-card-desc { color: #aaa; }
.tk-ft-link {
    text-decoration: none;
    color: #111;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.2s;
}
.tk-ft-card-dark .tk-ft-link { color: #fff; }
.tk-ft-link:hover { opacity: 0.7; }

:root {
    --tse-lime: #d4ff3f;
    --tse-purple: #8c7bff;
    --tse-dark: #111111;
    --tse-gray: #666666;
    --tse-border: #eeeeee;
}

.tse-prod-section {
    padding: 100px 20px;
    background-color: #fcfcfc;
    font-family: 'Inter', -apple-system, sans-serif;
    text-align: center;
    overflow: hidden;
}

.tse-prod-header { max-width: 900px; margin: 0 auto 60px; }
.tse-prod-badge {
    background-color: var(--tse-lime);
    color: var(--tse-dark);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 25px;
}
.tse-prod-title {
    font-size: 60px;
    font-weight: 800;
    margin: 0 0 20px;
    letter-spacing: -2px;
    line-height: 1.08;
}
.tse-prod-desc { color: var(--tse-gray); font-size: 18px; margin-bottom: 30px; line-height: 1.7; }
.tse-prod-checklist { display: flex; justify-content: center; gap: 25px; flex-wrap: wrap; }
.tse-prod-check-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--tse-dark);
}
.tse-prod-check-icon { width: 14px; height: 14px; color: var(--tse-dark); }
.tse-prod-visual-container { max-width: 1100px; margin: 0 auto; position: relative; }
.tse-prod-browser-frame {
    background: white;
    border-radius: 20px;
    box-shadow: 0 40px 100px -20px rgba(0,0,0,0.1);
    border: 1px solid var(--tse-border);
    overflow: hidden;
}
.tse-prod-browser-top {
    height: 45px;
    background: #fff;
    border-bottom: 1px solid var(--tse-border);
    display: flex;
    align-items: center;
    padding: 0 20px;
}
.tse-prod-dots { display: flex; gap: 6px; }
.tse-prod-dots span { width: 10px; height: 10px; border-radius: 50%; background: #e5e5e5; }
.tse-prod-dots span:nth-child(1) { background: #ff5f56; }
.tse-prod-dots span:nth-child(2) { background: #ffbd2e; }
.tse-prod-dots span:nth-child(3) { background: #27c93f; }
.tse-prod-address-bar {
    background: #f1f1f1;
    height: 28px;
    border-radius: 6px;
    margin-left: 20px;
    flex-grow: 0.7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: var(--tse-gray);
}
.tse-prod-lock { font-size: 10px; margin-right: 5px; }
.tse-prod-img-wrapper { position: relative; line-height: 0; }
.tse-prod-main-img { width: 100%; height: auto; display: block; }
.tse-prod-cta-float {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--tse-purple);
    color: white;
    text-decoration: none;
    padding: 18px 30px;
    border-radius: 50px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 30px rgba(140,123,255,0.4);
    transition: all 0.3s ease;
    z-index: 10;
    white-space: nowrap;
}
.tse-prod-cta-float:hover { transform: translate(-50%, -55%); }
.tse-prod-cta-arrow {
    background: rgba(0,0,0,1);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.acrm-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    font-family: 'Inter', sans-serif;
}

.acrm-flow-section,
.acrm-menu-section,
.acrm-revenue-section,
.acrm-tech-section,
.acrm-faq-section,
.acrm-cta-section {
    padding: 90px 0;
}

.acrm-head {
    max-width: 820px;
    margin: 0 auto 48px;
    text-align: center;
}

.acrm-head-left { text-align: left; margin-left: 0; }
.acrm-kicker {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;
    background: #f3f3f8;
    color: #333;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
}

.acrm-head h2 {
    font-size: 48px;
    line-height: 1.08;
    letter-spacing: -1.4px;
    margin: 0 0 15px;
    color: #111;
    font-weight: 800;
}

.acrm-head p {
    margin: 0;
    color: #666;
    font-size: 17px;
    line-height: 1.75;
}

.acrm-flow-grid,
.acrm-menu-grid,
.acrm-revenue-grid,
.acrm-tech-grid {
    display: grid;
    gap: 24px;
}

.acrm-flow-grid { grid-template-columns: repeat(4, 1fr); }
.acrm-menu-grid { grid-template-columns: repeat(2, 1fr); }
.acrm-revenue-grid { grid-template-columns: repeat(2, 1fr); }
.acrm-tech-grid { grid-template-columns: repeat(4, 1fr); }

.acrm-flow-card,
.acrm-menu-card,
.acrm-revenue-card,
.acrm-tech-card {
    background: var(--acrm-card);
    border: 1px solid var(--acrm-border);
    border-radius: 28px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(17,17,17,0.03);
}

.acrm-step-no {
    display: inline-flex;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin-bottom: 18px;
}

.acrm-flow-card h3,
.acrm-menu-card h3,
.acrm-revenue-card h3,
.acrm-tech-card h3 {
    margin: 0 0 12px;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
    color: #111;
}

.acrm-flow-card p,
.acrm-tech-card p {
    margin: 0;
    color: #666;
    line-height: 1.75;
    font-size: 15px;
}

.acrm-menu-card ul,
.acrm-revenue-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.acrm-menu-card li,
.acrm-revenue-card li {
    position: relative;
    padding: 12px 0 12px 24px;
    color: #444;
    line-height: 1.6;
    border-bottom: 1px solid #f1f1f5;
}

.acrm-menu-card li:last-child,
.acrm-revenue-card li:last-child { border-bottom: none; }

.acrm-menu-card li::before,
.acrm-revenue-card li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--fl-purple);
    position: absolute;
    left: 0;
    top: 19px;
}

.acrm-revenue-section { background: var(--acrm-soft); }
.acrm-revenue-card-dark { background: #111; border-color: #111; }
.acrm-revenue-card-dark h3 { color: #fff; }
.acrm-revenue-card-dark li { color: rgba(255,255,255,0.82); border-bottom-color: rgba(255,255,255,0.08); }
.acrm-revenue-card-dark li::before { background: var(--fl-lime); }

.acrm-tech-card {
    text-align: left;
    background: linear-gradient(180deg, #ffffff 0%, #fafafe 100%);
}

.acrm-tech-card i {
    font-size: 30px;
    color: var(--fl-purple);
    margin-bottom: 16px;
}

.acrm-faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 18px;
}

.acrm-faq-item {
    border: 1px solid var(--acrm-border);
    border-radius: 20px;
    background: #fff;
    overflow: hidden;
}

.acrm-faq-question {
    width: 100%;
    border: none;
    background: transparent;
    padding: 24px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    text-align: left;
    font-size: 18px;
    font-weight: 700;
    color: #111;
    cursor: pointer;
}

.acrm-faq-question i {
    transition: transform 0.25s ease;
    color: var(--fl-purple);
}

.acrm-faq-answer {
    display: none;
    padding: 0 26px 24px;
}

.acrm-faq-answer p {
    margin: 0;
    color: #666;
    font-size: 15px;
    line-height: 1.8;
}

.acrm-faq-item.is-open .acrm-faq-answer { display: block; }
.acrm-faq-item.is-open .acrm-faq-question i { transform: rotate(45deg); }

.acrm-cta-section { padding-top: 20px; padding-bottom: 100px; }
.acrm-cta-box {
    background: linear-gradient(135deg, #111111 0%, #1f183f 100%);
    border-radius: 32px;
    padding: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.acrm-cta-box .acrm-kicker { background: rgba(255,255,255,0.12); color: #fff; }
.acrm-cta-box h2 {
    color: #fff;
    margin: 0 0 14px;
    font-size: 40px;
    line-height: 1.1;
}

.acrm-cta-box p {
    color: rgba(255,255,255,0.82);
    margin: 0;
    max-width: 680px;
    line-height: 1.75;
}

.acrm-cta-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.acrm-cta-primary,
.acrm-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 24px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.acrm-cta-primary {
    background: var(--fl-lime);
    color: #111;
}

.acrm-cta-secondary {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
}

.acrm-cta-primary:hover,
.acrm-cta-secondary:hover { transform: translateY(-2px); }

@media (max-width: 1100px) {
    .tk-ft-grid { grid-template-columns: repeat(2, 1fr); }
    .acrm-flow-grid,
    .acrm-tech-grid { grid-template-columns: repeat(2, 1fr); }
    .fl-hero-container { flex-direction: column; }
    .fl-hero-content { text-align: center; }
    .fl-hero-desc { margin: 0 auto 40px; }
    .fl-hero-actions,
    .fl-hero-stats { justify-content: center; }
}

@media (max-width: 900px) {
    .acrm-menu-grid,
    .acrm-revenue-grid,
    .acrm-cta-box { grid-template-columns: 1fr; display: grid; }
    .acrm-cta-box { text-align: left; }
    .acrm-head h2 { font-size: 38px; }
    .tse-prod-title { font-size: 44px; }
    .fl-hero-title { font-size: 3rem; }
    .fl-hero-main-card { width: 100%; max-width: 520px; margin: 0 auto; height: 610px; }
}

@media (max-width: 768px) {
    .tk-ft-grid,
    .acrm-flow-grid,
    .acrm-menu-grid,
    .acrm-revenue-grid,
    .acrm-tech-grid { grid-template-columns: 1fr; }
    .tk-ft-main-title,
    .acrm-head h2 { font-size: 32px; }
    .fl-hero-title { font-size: 2.5rem; }
    .fl-hero-section { padding: 70px 20px; }
    .fl-hero-main-card { padding: 24px; height: 670px; }
    .fl-hero-metric-dark,
    .fl-hero-pos-2,
    .fl-hero-pos-3,
    .fl-hero-pos-4 {
        left: 20px;
        width: calc(100% - 40px);
    }
    .fl-hero-metric-dark { top: 230px; }
    .fl-hero-pos-2 { top: 320px; }
    .fl-hero-pos-3 { top: 410px; }
    .fl-hero-pos-4 { top: 500px; }
    .tse-prod-title { font-size: 36px; }
    .tse-prod-checklist { flex-direction: column; gap: 10px; align-items: center; }
    .tse-prod-cta-float { padding: 12px 20px; font-size: 14px; }
    .acrm-cta-box { padding: 32px 24px; }
    .acrm-cta-box h2 { font-size: 32px; }
}
