/* ===========================================================
   GuteStyle Landing Page Stylesheet
   - Inherits all common rules from style.css
   - Overrides palette: navy #1e3a8a + gold #d4af37
   - Primary font: Kanit (with Noto Sans Thai fallback)
   =========================================================== */

@import url('style.css?v=1.2');

/* ===== Override CSS variables ===== */
:root {
    --primary: #1e3a8a;            /* deep navy */
    --primary-dark: #1e3163;
    --primary-light: #2c4caf;
    --accent: #d4af37;             /* salon gold */
    --accent-light: #e0c560;
    --accent-dark: #b8932c;
    --gold-gradient: linear-gradient(135deg, #d4af37 0%, #e8d186 50%, #b8932c 100%);
}

/* ===== Override typography to Kanit ===== */
body {
    font-family: 'Kanit', 'Noto Sans Thai', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 300;
    letter-spacing: 0.01em;
}

h1, h2, h3, h4, h5, h6,
.btn,
.nav-links a,
.section-header h2,
.feature-card h3,
.pricing-card h3,
.deploy-card h3 {
    font-family: 'Kanit', 'Noto Sans Thai', sans-serif;
    font-weight: 600;
}

.hero h1 {
    font-weight: 700;
    letter-spacing: -0.01em;
}

/* ===== Hero – navy gradient ===== */
.hero {
    background: linear-gradient(145deg, #1e3163 0%, #1e3a8a 45%, #2c4caf 100%);
}

.shape-1 { background: var(--accent); }
.shape-2 { background: var(--accent); }
.shape-3 { background: var(--accent-light); }

.hero-badge {
    background: rgba(212, 175, 55, 0.18);
    color: var(--accent-light);
    border: 1px solid rgba(212, 175, 55, 0.35);
}

.hero-stats {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(212, 175, 55, 0.25);
}

.stat-divider {
    background: rgba(212, 175, 55, 0.3);
}

.stat-number { color: var(--accent); }

/* ===== Section Headers ===== */
.section-badge {
    background: rgba(212, 175, 55, 0.14);
    color: var(--accent-dark);
}

/* ===== Buttons ===== */
.btn-primary {
    background: var(--gold-gradient);
    color: var(--primary);
    border-color: var(--accent);
    font-weight: 700;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #e0c560 0%, #f0deaa 50%, #d4af37 100%);
    border-color: var(--accent-light);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35);
}

.btn-outline {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--accent);
}

.btn-hero-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* ===== Navbar – nav links hover ===== */
.nav-links a:hover {
    color: var(--accent-dark);
    background: rgba(212, 175, 55, 0.1);
}

/* ===== Feature Cards ===== */
.feature-card:hover {
    border-color: var(--accent);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.14);
}

/* ===== Pricing ===== */
.pricing {
    background: #F7F6F2;
}

.toggle-btn.active {
    background: var(--primary);
    color: var(--accent);
}

.save-badge {
    background: rgba(212, 175, 55, 0.18);
    color: var(--accent-dark);
}

.toggle-btn.active .save-badge {
    background: rgba(212, 175, 55, 0.3);
    color: var(--accent);
}

.pricing-card.popular {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent), 0 20px 40px rgba(212, 175, 55, 0.18);
}

.pricing-features li.highlight-feature {
    color: var(--accent-dark);
}

.pricing-features li.highlight-feature .fa-check {
    color: var(--accent);
}

.pricing-features li small {
    color: var(--accent-dark);
}

.billing-option:hover { border-color: var(--accent); }

.billing-option.popular-option {
    border-color: var(--accent);
    background: rgba(212, 175, 55, 0.08);
}

.billing-discount.highlight { color: var(--accent-dark); }

/* ===== CTA Section ===== */
.cta-section {
    background: linear-gradient(145deg, #1e3163 0%, #1e3a8a 45%, #2c4caf 100%);
}

.trust-item i { color: var(--accent); }

/* ===== Why GuteStyle (problem/solution) ===== */
.why-section {
    padding: 100px 0;
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 40px;
}

.why-card {
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    border: 1px solid var(--gray-200);
    background: var(--white);
}

.why-card.problem {
    border-left: 4px solid #dc2626;
    background: #FFFBFB;
}

.why-card.solution {
    border-left: 4px solid var(--accent);
    background: #FFFCF2;
}

.why-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.why-card.problem h3 i { color: #dc2626; }
.why-card.solution h3 i { color: var(--accent); }

.why-list { list-style: none; }

.why-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 8px 0;
    font-size: 0.92rem;
    color: var(--gray-700);
    line-height: 1.7;
}

.why-list li i {
    margin-top: 5px;
    font-size: 0.78rem;
    flex-shrink: 0;
}

.why-card.problem .why-list li i { color: #dc2626; }
.why-card.solution .why-list li i { color: var(--accent); }

/* ===== Product Switcher Dropdown (re-used from index.html) ===== */
.dropdown { position: relative; }

.dropdown > a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    min-width: 220px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
    z-index: 1100;
}

.dropdown:hover > .dropdown-menu,
.dropdown:focus-within > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    color: var(--gray-700);
    font-size: 0.9rem;
    line-height: 1.3;
    transition: background 0.18s ease, color 0.18s ease;
}

.dropdown-menu a i {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    color: var(--primary);
    font-size: 13px;
    flex-shrink: 0;
}

.dropdown-menu a:hover {
    background: rgba(212, 175, 55, 0.08);
    color: var(--accent-dark);
}

.dropdown-menu a.active {
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-dark);
}

.dropdown-menu a.active i {
    background: var(--accent);
    color: var(--primary);
}

/* ===== Steps (How it works) ===== */
.steps-section { padding: 100px 0; background: #F7F6F2; }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    margin-top: 40px;
    position: relative;
}

.step-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px 20px;
    border: 1px solid var(--gray-200);
    text-align: center;
    transition: var(--transition);
}

.step-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.08);
}

.step-num {
    width: 44px;
    height: 44px;
    background: var(--gold-gradient);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.05rem;
    margin: 0 auto 14px;
}

.step-card h3 {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}

.step-card p {
    font-size: 0.83rem;
    color: var(--gray-500);
    line-height: 1.55;
}

/* ===== Form / Contact – tints ===== */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--accent);
    border-color: var(--accent);
}

.checkbox-text a { color: var(--accent-dark); }
.checkbox-text a:hover { color: var(--accent); }

.contact-method:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.1);
}

.contact-method-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--accent);
}

.contact-value { color: var(--accent-dark); }

/* ===== Footer ===== */
.footer {
    background: #0c1530;
}

.footer-content {
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.footer .logo-icon {
    background: var(--accent);
    color: var(--primary);
}

.footer-links a:hover { color: var(--accent); }

/* ===== Cookie consent ===== */
.cookie-icon { color: var(--accent); }
.cookie-text a { color: var(--accent-dark); }

.cookie-category-title i { color: var(--accent); }
.cookie-modal-header h2 i { color: var(--accent); }
.cookie-badge { background: var(--accent); color: var(--primary); }

/* ===== Responsive: steps & why-grid ===== */
@media (max-width: 992px) {
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 4px 0 4px 16px;
    }
}

/* ===== Cross-product banner ===== */
.cross-product {
    background: linear-gradient(135deg, #fdf9ed 0%, #fff 50%, #f3f4ff 100%);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.cross-product-text h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}

.cross-product-text p {
    font-size: 0.92rem;
    color: var(--gray-600);
}

.cross-product-text strong { color: var(--accent-dark); }

/* ===== Plans (4-card row with white-label) ===== */
.pricing-grid.four {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1200px) {
    .pricing-grid.four { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .pricing-grid.four { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

/* White-Label highlight card */
.pricing-card.white-label {
    background: linear-gradient(160deg, #11183a 0%, #1e3a8a 100%);
    color: var(--white);
    border-color: var(--accent);
}

.pricing-card.white-label .pricing-header h3,
.pricing-card.white-label .pricing-amount .price {
    color: var(--white);
}

.pricing-card.white-label .pricing-desc {
    color: rgba(255,255,255,0.7);
}

.pricing-card.white-label .pricing-deploy {
    background: rgba(212, 175, 55, 0.18);
    color: var(--accent-light);
}

.pricing-card.white-label .pricing-features li {
    color: rgba(255,255,255,0.88);
}

.pricing-card.white-label .pricing-features li .fa-check { color: var(--accent); }

.pricing-card.white-label .btn-dark {
    background: var(--gold-gradient);
    color: var(--primary);
    border-color: var(--accent);
    font-weight: 700;
}

.pricing-card.white-label .btn-dark:hover {
    background: linear-gradient(135deg, #e0c560 0%, #f0deaa 50%, #d4af37 100%);
}

/* ===== Comparison Section ===== */
.comparison {
    padding: 80px 0;
    background: linear-gradient(180deg, #fafbff 0%, #fff 100%);
}

.cmp-prices {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin: 32px 0 36px;
}
@media (max-width: 980px) { .cmp-prices { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .cmp-prices { grid-template-columns: 1fr; } }

.cmp-price-card {
    background: #fff;
    border: 1px solid var(--gray-200, #e8e6e1);
    border-radius: 12px;
    padding: 16px 14px;
    text-align: center;
    transition: var(--transition);
}
.cmp-price-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.cmp-price-card.us {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #fff;
    border-color: var(--accent);
    box-shadow: 0 6px 20px rgba(212, 175, 55, .2);
}
.cmp-price-name { font-size: 12px; font-weight: 600; color: var(--gray-600, #4b5563); margin-bottom: 6px; }
.cmp-price-card.us .cmp-price-name { color: rgba(255,255,255,.85); }
.cmp-price-amt {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.1;
}
.cmp-price-card.us .cmp-price-amt { color: var(--accent-light, #e0c560); }
.cmp-price-amt sup { font-size: 13px; vertical-align: super; opacity: .7; }
.cmp-price-amt small { font-size: 11px; font-weight: 400; color: var(--gray-500, #6b7280); display: inline-block; margin-left: 2px; }
.cmp-price-card.us .cmp-price-amt small { color: rgba(255,255,255,.6); }
.cmp-price-tag { font-size: 10px; color: var(--gray-500, #6b7280); margin-top: 6px; line-height: 1.4; }
.cmp-price-card.us .cmp-price-tag { color: rgba(255,255,255,.7); }

/* Compact feature table */
.cmp-table-wrap {
    overflow-x: auto;
    border-radius: 14px;
    border: 1.5px solid var(--gray-200, #e8e6e1);
    background: #fff;
    margin-bottom: 18px;
}
.cmp-table { width: 100%; border-collapse: collapse; font-size: 13px; min-width: 720px; }
.cmp-table th {
    padding: 14px 10px;
    background: var(--primary);
    color: #fff;
    font-size: 11.5px;
    font-weight: 600;
    text-align: center;
    letter-spacing: .4px;
    text-transform: uppercase;
}
.cmp-table th:first-child { text-align: left; }
.cmp-table th.us-col {
    background: var(--accent);
    color: var(--primary);
    font-weight: 700;
}
.cmp-table td {
    padding: 12px 10px;
    border-bottom: 1px solid var(--gray-100, #f5f5f3);
    text-align: center;
    color: var(--gray-600, #4b5563);
    font-weight: 500;
}
.cmp-table td:first-child {
    text-align: left;
    color: var(--dark);
    font-weight: 500;
}
.cmp-table td:first-child i {
    color: var(--accent);
    margin-right: 6px;
    width: 16px;
}
.cmp-table td.us-col {
    background: linear-gradient(180deg, rgba(212,175,55,.08) 0%, rgba(212,175,55,.04) 100%);
    color: var(--primary);
    font-weight: 700;
    font-size: 16px;
}
.cmp-table td.partial {
    color: var(--gray-500, #6b7280);
    font-size: 11px;
    font-weight: 500;
}
.cmp-table tr:last-child td { border-bottom: none; }
.cmp-table tr:hover td { background: rgba(212,175,55,.04); }
.cmp-table tr:hover td.us-col { background: linear-gradient(180deg, rgba(212,175,55,.16) 0%, rgba(212,175,55,.08) 100%); }
.cmp-table tr.diff-row td:first-child { color: var(--primary); font-weight: 600; }
.cmp-table tr.diff-row td:first-child::after {
    content: " ★ จุดแข็งของเรา";
    font-size: 9px;
    color: var(--accent-dark, #b8932c);
    font-weight: 700;
    margin-left: 6px;
    letter-spacing: .3px;
    text-transform: uppercase;
}

/* Legend */
.cmp-legend {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    font-size: 12px;
    color: var(--gray-600, #4b5563);
    margin-bottom: 24px;
    padding: 14px 16px;
    background: #fafbff;
    border-radius: 10px;
}
.cmp-legend .lg {
    display: inline-block;
    width: 22px;
    height: 22px;
    border-radius: 6px;
    text-align: center;
    line-height: 22px;
    font-weight: 700;
    font-size: 11px;
    margin-right: 4px;
}
.cmp-legend .lg.ck { background: rgba(34,197,94,.15); color: #16a34a; }
.cmp-legend .lg.cp { background: rgba(245,158,11,.15); color: #b45309; padding: 0 8px; width: auto; }
.cmp-legend .lg.cx { background: var(--gray-100, #f5f5f3); color: var(--gray-500, #6b7280); }
.cmp-legend .cmp-note {
    color: var(--accent-dark, #b8932c);
    font-weight: 600;
    font-style: italic;
    flex-basis: 100%;
    text-align: center;
    margin-top: 4px;
    padding-top: 10px;
    border-top: 1px dashed var(--gray-200, #e8e6e1);
}

/* CTA */
.cmp-cta { text-align: center; margin-top: 24px; }
.cmp-cta .btn { padding: 14px 36px; font-size: 1rem; }
.cmp-disclaimer {
    margin-top: 14px;
    font-size: 11px;
    color: var(--gray-500, #6b7280);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* ===== Pros/Cons cards per vendor ===== */
.cmp-pros-title {
    font-size: 1.4rem;
    color: var(--primary);
    text-align: center;
    margin: 36px 0 18px;
    font-weight: 600;
}

.cmp-pros-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 16px;
    margin-bottom: 30px;
}

.cmp-pros-card {
    background: #fff;
    border: 1.5px solid var(--gray-200, #e8e6e1);
    border-radius: 14px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.cmp-pros-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.cmp-pros-card.us {
    border: 2px solid var(--accent);
    box-shadow: 0 8px 24px rgba(212,175,55,.18);
    position: relative;
}
.cmp-pros-card.us::before {
    content: "★ ระบบของเรา";
    position: absolute; top: 12px; right: 12px;
    background: var(--gold-gradient);
    color: var(--primary);
    padding: 4px 10px;
    border-radius: 9999px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .5px;
    box-shadow: 0 2px 6px rgba(212,175,55,.4);
}

.cmp-pros-head {
    padding: 16px 18px 12px;
    border-bottom: 1px solid var(--gray-100, #f5f5f3);
    background: linear-gradient(180deg, #fafbff 0%, #fff 100%);
}
.cmp-pros-card.us .cmp-pros-head {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #fff;
}
.cmp-pros-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
}
.cmp-pros-card.us .cmp-pros-name { color: var(--accent-light, #e0c560); }
.cmp-pros-tag {
    font-size: 11px;
    color: var(--gray-500, #6b7280);
    margin-top: 4px;
}
.cmp-pros-card.us .cmp-pros-tag { color: rgba(255,255,255,.7); }
.cmp-pros-tag a { color: var(--accent-dark, #b8932c); text-decoration: none; }
.cmp-pros-tag a:hover { text-decoration: underline; }
.cmp-pros-card.us .cmp-pros-tag a { color: var(--accent-light, #e0c560); }

.cmp-pros-body {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.cmp-pros-col {
    padding: 14px 16px;
    font-size: 12.5px;
}
.cmp-pros-col.pros {
    background: rgba(34,197,94,.04);
    border-right: 1px solid var(--gray-100, #f5f5f3);
}
.cmp-pros-col.cons {
    background: rgba(239,68,68,.03);
}

.cpc-head {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1px dashed var(--gray-200, #e8e6e1);
}
.cmp-pros-col.pros .cpc-head { color: #16a34a; }
.cmp-pros-col.cons .cpc-head { color: #dc2626; }

.cmp-pros-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.cmp-pros-col li {
    padding: 5px 0 5px 14px;
    position: relative;
    color: var(--gray-700, #374151);
    line-height: 1.5;
    font-size: 12px;
}
.cmp-pros-col.pros li::before {
    content: "+";
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: 700;
}
.cmp-pros-col.cons li::before {
    content: "−";
    position: absolute;
    left: 0;
    color: #dc2626;
    font-weight: 700;
}

@media (max-width: 480px) {
    .cmp-pros-body { grid-template-columns: 1fr; }
    .cmp-pros-col.pros { border-right: none; border-bottom: 1px solid var(--gray-100, #f5f5f3); }
}

/* ===========================================================
   Phase 3 — Free Trial 14 days
   =========================================================== */

/* Hero trial badge (sits above H1) */
.hero-trial-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212,175,55,.15);
    border: 1.5px solid rgba(212,175,55,.4);
    color: var(--accent, #d4af37);
    padding: 7px 18px;
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(4px);
    animation: pulse-glow 2.4s ease-in-out infinite;
}
@keyframes pulse-glow {
    0%,100% { box-shadow: 0 0 0 0 rgba(212,175,55,.0); }
    50%     { box-shadow: 0 0 0 8px rgba(212,175,55,.12); }
}

/* Free Trial dedicated section */
.free-trial {
    padding: 60px 0;
    background: linear-gradient(180deg, #fff 0%, #fafbff 100%);
}
.ft-card {
    background: linear-gradient(135deg, var(--primary, #1e3a8a) 0%, var(--primary-dark, #142a63) 100%);
    color: #fff;
    border-radius: 24px;
    padding: 48px;
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 32px;
    align-items: center;
    box-shadow: 0 20px 60px -10px rgba(30,58,138,.35);
    position: relative;
    overflow: hidden;
}
.ft-card::before {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,175,55,.15) 0%, transparent 70%);
    top: -150px; right: -100px;
    pointer-events: none;
}
.ft-icon {
    width: 100px; height: 100px;
    background: var(--gold-gradient);
    border-radius: 24px;
    display: grid; place-items: center;
    font-size: 40px;
    color: var(--primary);
    box-shadow: 0 8px 24px rgba(212,175,55,.4);
    flex-shrink: 0;
}
.ft-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--accent-light, #e0c560);
}
.ft-tag {
    display: inline-block;
    background: var(--accent, #d4af37);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 9999px;
    margin-left: 8px;
    vertical-align: middle;
}
.ft-content p {
    color: rgba(255,255,255,.85);
    margin-bottom: 18px;
    line-height: 1.7;
}
.ft-list {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 20px;
}
.ft-list li {
    color: rgba(255,255,255,.92);
    font-size: 13.5px;
    padding-left: 4px;
}
.ft-list i {
    color: var(--accent, #d4af37);
    margin-right: 6px;
}
.ft-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.btn-lg {
    padding: 14px 32px !important;
    font-size: 1.05rem !important;
}
.ft-note {
    font-size: 12px;
    color: rgba(255,255,255,.6);
}
@media (max-width: 768px) {
    .ft-card { grid-template-columns: 1fr; padding: 32px 24px; text-align: center; }
    .ft-icon { margin: 0 auto; }
    .ft-list { grid-template-columns: 1fr; text-align: left; }
    .ft-cta { justify-content: center; }
}

/* ===========================================================
   Phase 4 — Value reframe "1 ระบบ vs หลายระบบรวมกัน"
   =========================================================== */
.value-reframe {
    padding: 70px 0;
    background: #fafbff;
}
.vr-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}
.vr-header h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin: 12px 0 8px;
    font-weight: 700;
}
.vr-header h2 em {
    font-style: normal;
    color: var(--gray-500, #6b7280);
    font-weight: 400;
    margin: 0 8px;
}
.vr-sub {
    color: var(--gray-600, #4b5563);
    font-size: 14px;
    line-height: 1.7;
}

.vr-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 28px;
}
@media (max-width: 800px) { .vr-compare { grid-template-columns: 1fr; } }

.vr-card {
    background: #fff;
    border: 1.5px solid var(--gray-200, #e8e6e1);
    border-radius: 18px;
    padding: 28px;
    position: relative;
    transition: all 0.2s;
}
.vr-card.old {
    background: #fafafa;
    border-color: #e8e6e1;
    opacity: 0.92;
}
.vr-card.new {
    border: 2px solid var(--accent, #d4af37);
    box-shadow: 0 12px 36px rgba(212,175,55,.18);
    transform: scale(1.02);
    background: linear-gradient(180deg, #fffdf5 0%, #fff 100%);
}
@media (max-width: 800px) {
    .vr-card.new { transform: none; }
}

.vr-best-badge {
    position: absolute;
    top: -12px; right: 20px;
    background: var(--gold-gradient);
    color: var(--primary);
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 9999px;
    box-shadow: 0 4px 12px rgba(212,175,55,.4);
}

.vr-card-head {
    display: flex; align-items: center; gap: 14px;
    padding-bottom: 18px;
    border-bottom: 1px dashed var(--gray-200, #e8e6e1);
    margin-bottom: 18px;
}
.vr-card-icon {
    width: 48px; height: 48px;
    border-radius: 14px;
    background: rgba(220,38,38,.1);
    color: #dc2626;
    display: grid; place-items: center;
    font-size: 22px;
    flex-shrink: 0;
}
.vr-card-icon-good {
    width: 48px; height: 48px;
    border-radius: 14px;
    background: rgba(16,185,129,.12);
    color: #10b981;
    display: grid; place-items: center;
    font-size: 22px;
    flex-shrink: 0;
}
.vr-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
}
.vr-card-sub {
    font-size: 12px;
    color: var(--gray-500, #6b7280);
    margin-top: 2px;
}

.vr-tools {
    list-style: none;
    padding: 0;
    margin-bottom: 18px;
}
.vr-tools li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    border-bottom: 1px solid var(--gray-100, #f5f5f3);
    font-size: 13.5px;
}
.vr-tools li:last-child { border-bottom: none; }
.vt-name { color: var(--gray-700, #374151); display: flex; align-items: center; gap: 8px; }
.vt-name i { color: var(--gray-400, #9ca3af); width: 14px; }
.vr-card.new .vt-name i { color: #10b981; }
.vt-cost {
    color: var(--gray-600, #4b5563);
    font-weight: 600;
    font-size: 12px;
    font-family: ui-monospace, monospace;
}

.vr-total {
    background: rgba(220,38,38,.06);
    border-radius: 12px;
    padding: 14px 18px;
    text-align: center;
    margin-bottom: 18px;
}
.vr-total.green {
    background: rgba(16,185,129,.08);
}
.vr-total-lbl {
    font-size: 11px;
    color: var(--gray-600, #4b5563);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.vr-total-amt {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
    margin-top: 4px;
}
.vr-total.green .vr-total-amt { color: #047857; }
.vr-total-amt small {
    display: block;
    font-size: 11px;
    font-weight: 400;
    color: var(--gray-500, #6b7280);
    margin-top: 4px;
}

.vr-pain, .vr-gain {
    list-style: none;
    padding: 0;
}
.vr-pain li, .vr-gain li {
    padding: 6px 0 6px 22px;
    position: relative;
    font-size: 12.5px;
    line-height: 1.5;
    color: var(--gray-700, #374151);
}
.vr-pain li i {
    position: absolute; left: 0; top: 8px;
    color: #dc2626;
    font-size: 11px;
}
.vr-gain li i {
    position: absolute; left: 0; top: 8px;
    color: #10b981;
    font-size: 12px;
}

.vr-savings {
    background: var(--gold-gradient);
    color: var(--primary);
    padding: 22px 32px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 8px 24px rgba(212,175,55,.25);
}
.vr-savings-icon {
    width: 54px; height: 54px;
    background: rgba(0,0,0,.1);
    border-radius: 14px;
    display: grid; place-items: center;
    font-size: 26px;
    flex-shrink: 0;
}
.vr-savings-text {
    font-size: 14.5px;
    line-height: 1.6;
}
.vr-savings-text strong {
    font-size: 17px;
    display: block;
    margin-bottom: 2px;
}
@media (max-width: 600px) {
    .vr-savings { flex-direction: column; text-align: center; padding: 22px; }
    .vr-savings-icon { margin: 0 auto; }
}

/* ===========================================================
   Phase 5 — UI/UX Polish (modern · premium · elegant)
   =========================================================== */

/* ---------- Smooth easing tokens ---------- */
:root {
    --ease-out-soft: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.18s var(--ease-out-soft);
    --transition-smooth: all 0.25s var(--ease-out-soft);
}

/* ---------- Typography refinement ---------- */
body {
    line-height: 1.7;
}

.hero h1 {
    font-weight: 800;
    letter-spacing: -0.015em;
}

.section-header h2 {
    letter-spacing: -0.01em;
}

.section-header p {
    color: var(--gray-500);
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
}

/* ---------- Hero polish ---------- */
.hero {
    padding-bottom: 120px;
}

/* Decorative floating shapes — slow drift */
.hero-bg-shapes .shape {
    animation: floatShape 14s ease-in-out infinite;
    will-change: transform;
}
.hero-bg-shapes .shape-1 { animation-duration: 18s; }
.hero-bg-shapes .shape-2 { animation-duration: 22s; animation-delay: -6s; }
.hero-bg-shapes .shape-3 { animation-duration: 16s; animation-delay: -3s; }

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0); }
    25%      { transform: translate(20px, -28px); }
    50%      { transform: translate(-12px, 18px); }
    75%      { transform: translate(-22px, -10px); }
}
.shape-3 {
    /* shape-3 already uses translate(-50%,-50%) – keep that as base */
    animation: floatShape3 16s ease-in-out infinite;
}
@keyframes floatShape3 {
    0%, 100% { transform: translate(-50%, -50%); }
    50%      { transform: translate(-48%, -53%); }
}

/* Extra decorative sparkles */
.hero::before,
.hero::after {
    content: "";
    position: absolute;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.55;
    box-shadow: 0 0 18px 2px rgba(212, 175, 55, 0.55);
    pointer-events: none;
    z-index: 0;
}
.hero::before { top: 22%; left: 14%; animation: twinkle 4.5s ease-in-out infinite; }
.hero::after  { top: 38%; right: 18%; width: 4px; height: 4px; animation: twinkle 6s ease-in-out infinite -2s; }

@keyframes twinkle {
    0%, 100% { opacity: 0.2; transform: scale(0.8); }
    50%      { opacity: 0.8; transform: scale(1.2); }
}

/* Animated shimmer on the gold gradient text */
.hero h1 .gradient-text {
    background: linear-gradient(
        100deg,
        #d4af37 0%,
        #f0deaa 25%,
        #fff7d9 50%,
        #f0deaa 75%,
        #d4af37 100%
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: heroShimmer 5s linear infinite;
}
@keyframes heroShimmer {
    0%   { background-position: 200% 50%; }
    100% { background-position: -200% 50%; }
}

/* Hero trust strip — small icon row below stats */
.hero-trust-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 18px;
    margin-top: 28px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}
.hero-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.18);
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.78rem;
    font-weight: 500;
    padding: 7px 14px;
    border-radius: 9999px;
    backdrop-filter: blur(6px);
    transition: var(--transition-smooth);
}
.hero-trust-item:hover {
    background: rgba(212, 175, 55, 0.12);
    border-color: rgba(212, 175, 55, 0.45);
    color: var(--accent-light);
    transform: translateY(-1px);
}
.hero-trust-item i {
    font-size: 0.85rem;
    color: var(--accent);
}

/* Curved divider at the bottom of the hero */
.hero-divider {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    width: 100%;
    height: 60px;
    display: block;
    pointer-events: none;
}

/* ---------- Section rhythm + alternating tints ---------- */
.value-reframe { background: linear-gradient(180deg, #fafbff 0%, #f6f4ec 100%); }
.features      { background: var(--white); }
.why-section   { background: linear-gradient(180deg, #fffefa 0%, #fff 100%); }
.pricing       { background: linear-gradient(180deg, #f7f6f2 0%, #fbf9f1 100%); }
.free-trial    { background: linear-gradient(180deg, #fff 0%, #fafbff 100%); }
.comparison    { background: linear-gradient(180deg, #fafbff 0%, #fff 100%); }
.steps-section { background: linear-gradient(180deg, #f7f6f2 0%, #fffaee 100%); }
.contact       { background: linear-gradient(180deg, #fff 0%, #fafbff 100%); }

/* ---------- Feature cards: depth + smooth lift ---------- */
.feature-card {
    background: #fff;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(15, 23, 42, 0.02);
    transition: transform 0.25s var(--ease-out-soft),
                box-shadow 0.25s var(--ease-out-soft),
                border-color 0.25s var(--ease-out-soft);
    position: relative;
    overflow: hidden;
}
.feature-card::after {
    /* Subtle top sheen on hover */
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 2px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.4s var(--ease-out-soft);
    border-radius: var(--radius) var(--radius) 0 0;
}
.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 14px 32px -10px rgba(212, 175, 55, 0.22),
                0 6px 14px -6px rgba(15, 23, 42, 0.08);
}
.feature-card:hover::after {
    transform: scaleX(1);
}

/* Icon as a soft gold gradient circle */
.feature-icon {
    background: linear-gradient(135deg,
        rgba(212, 175, 55, 0.18) 0%,
        rgba(30, 58, 138, 0.12) 100%);
    color: var(--primary);
    box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.18);
    transition: var(--transition-smooth);
}
.feature-card:hover .feature-icon {
    background: var(--gold-gradient);
    color: var(--primary);
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.35);
    transform: scale(1.05);
}

/* ---------- Pricing card polish ---------- */
.pricing-card {
    transition: transform 0.25s var(--ease-out-soft),
                box-shadow 0.25s var(--ease-out-soft),
                border-color 0.25s var(--ease-out-soft);
}

/* Lite — subtle "เริ่มต้น" green corner ribbon already exists via popular-badge override */
.pricing-card .popular-badge[style*="#10b981"] {
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* Professional — animated soft gold pulse around border */
.pricing-card.popular {
    position: relative;
}
.pricing-card.popular::before {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: calc(var(--radius-lg) + 3px);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.55), rgba(212, 175, 55, 0));
    z-index: -1;
    opacity: 0;
    animation: popularPulse 3.4s ease-in-out infinite;
    pointer-events: none;
}
@keyframes popularPulse {
    0%, 100% { opacity: 0; transform: scale(1); }
    50%      { opacity: 0.55; transform: scale(1.015); }
}
.pricing-card.popular .popular-badge {
    font-size: 0.92rem;
    padding: 7px 28px;
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.45);
    animation: badgeBob 3s ease-in-out infinite;
}
@keyframes badgeBob {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(-2px); }
}

/* ---------- Buttons polish ---------- */
.btn {
    transition: transform 0.15s var(--ease-out-soft),
                background 0.25s var(--ease-out-soft),
                box-shadow 0.25s var(--ease-out-soft),
                border-color 0.25s var(--ease-out-soft),
                color 0.25s var(--ease-out-soft);
    will-change: transform;
}
.btn:active {
    transform: scale(0.97);
}
.btn-primary {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.btn-primary::after {
    /* Shimmer sweep on hover */
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        100deg,
        transparent 0%,
        rgba(255, 255, 255, 0.55) 50%,
        transparent 100%
    );
    transform: skewX(-20deg);
    transition: left 0.7s var(--ease-out-soft);
    pointer-events: none;
    z-index: 1;
}
.btn-primary:hover::after {
    left: 130%;
}
.btn-primary:hover {
    transform: translateY(-1px);
}

/* ---------- Scroll-trigger reveal ---------- */
.fade-up {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s var(--ease-out-soft),
                transform 0.6s var(--ease-out-soft);
    will-change: opacity, transform;
}
.fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Navbar scroll polish + active link ---------- */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    box-shadow: 0 8px 24px -8px rgba(15, 23, 42, 0.12);
    border-bottom-color: rgba(212, 175, 55, 0.18);
}
.nav-links a.is-active {
    color: var(--accent-dark);
    background: rgba(212, 175, 55, 0.12);
}

/* ---------- Footer polish ---------- */
.footer {
    position: relative;
}
.footer::before {
    /* Gold gradient hairline at top */
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(212, 175, 55, 0.6) 50%,
        transparent 100%);
}

.footer-meta {
    margin: 18px 0 14px;
    padding: 16px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.12);
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}
.footer-locale {
    color: var(--gray-400);
    font-size: 0.82rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.footer-locale strong {
    color: var(--accent-light);
    font-weight: 600;
}
.footer-social {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.footer-social a {
    width: 36px;
    height: 36px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.18);
    color: var(--gray-400);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}
.footer-social a:hover {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(212, 175, 55, 0.35);
}

/* ---------- Responsive tuning ---------- */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.2rem; }
    .hero { padding-bottom: 80px; }
    .hero-trust-strip { gap: 8px 10px; }
    .hero-trust-item { font-size: 0.72rem; padding: 6px 10px; }
    .footer-meta { justify-content: center; text-align: center; }
}
@media (max-width: 480px) {
    .hero h1 { font-size: 1.85rem; }
    .section-header h2 { font-size: 1.6rem; }
    .hero-trust-item { font-size: 0.7rem; }
    .feature-card { padding: 24px 18px; }
}

/* ---------- Print + reduced motion ---------- */
@media print {
    .hero-bg-shapes,
    .hero::before,
    .hero::after,
    .hero-trust-strip,
    .footer-social,
    .pricing-card.popular::before {
        display: none !important;
    }
    .fade-up { opacity: 1 !important; transform: none !important; }
    * { animation: none !important; transition: none !important; }
}

@media (prefers-reduced-motion: reduce) {
    .hero-bg-shapes .shape,
    .shape-3,
    .hero h1 .gradient-text,
    .pricing-card.popular::before,
    .pricing-card.popular .popular-badge,
    .hero::before,
    .hero::after {
        animation: none !important;
    }
    .fade-up {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    .btn-primary::after { display: none; }
}

/* ───── ROI CALCULATOR ───── */
.roi-calc {
    padding: 70px 0;
    background: linear-gradient(180deg, var(--white,#fff) 0%, #fff8e7 100%);
}
.roi-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 30px;
}
.roi-header h2 {
    font-size: 2rem;
    color: var(--primary, #1e3a8a);
    font-weight: 700;
    margin: 14px 0 10px;
    letter-spacing: -0.01em;
}
.roi-card {
    max-width: 1080px;
    margin: 0 auto;
    background: #fff;
    border: 1.5px solid var(--gray-200, #e8e6e1);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 14px 40px -8px rgba(30,58,138,.15);
}

.roi-input {
    margin-bottom: 28px;
    background: linear-gradient(135deg, rgba(212,175,55,.08), rgba(30,58,138,.05));
    border-radius: 16px;
    padding: 22px 28px;
}
.roi-input label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary, #1e3a8a);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.roi-slider-wrap {
    display: flex;
    align-items: center;
    gap: 22px;
}
.roi-slider {
    flex: 1;
    -webkit-appearance: none;
    appearance: none;
    height: 8px;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--accent,#d4af37), var(--primary,#1e3a8a));
    outline: none;
    cursor: pointer;
}
.roi-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--accent,#d4af37);
    box-shadow: 0 4px 12px rgba(212,175,55,.4);
    cursor: pointer;
    transition: transform .15s;
}
.roi-slider::-webkit-slider-thumb:hover { transform: scale(1.15); }
.roi-slider::-moz-range-thumb {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--accent,#d4af37);
    box-shadow: 0 4px 12px rgba(212,175,55,.4);
    cursor: pointer;
}
.roi-value-display {
    min-width: 100px;
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: var(--primary, #1e3a8a);
    line-height: 1;
}
.roi-value-display small { font-size: 14px; font-weight: 400; color: var(--gray-500,#6b7280); }
.roi-staff-tip {
    margin-top: 12px;
    font-size: 12px;
    color: var(--gray-600, #4b5563);
    text-align: center;
    font-style: italic;
}

.roi-result {
    display: grid;
    grid-template-columns: 1fr 50px 1fr;
    gap: 16px;
    align-items: stretch;
    margin-bottom: 24px;
}
@media (max-width: 800px) {
    .roi-result { grid-template-columns: 1fr; }
    .roi-vs { transform: rotate(0deg); }
}
.roi-vs {
    display: grid; place-items: center;
    font-size: 24px;
    font-weight: 800;
    color: var(--accent, #d4af37);
    background: linear-gradient(135deg, rgba(212,175,55,.15), rgba(212,175,55,.05));
    border-radius: 50%;
    align-self: center;
    width: 50px; height: 50px;
}
.roi-col {
    background: #fafafa;
    border: 1.5px solid var(--gray-200, #e8e6e1);
    border-radius: 16px;
    padding: 22px;
    display: flex;
    flex-direction: column;
}
.roi-col.new {
    background: linear-gradient(180deg, #fffdf5, #fff);
    border: 2px solid var(--accent, #d4af37);
    box-shadow: 0 8px 24px rgba(212,175,55,.15);
}
.roi-col-head {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px dashed var(--gray-200, #e8e6e1);
}
.roi-col.old .roi-col-head i { color: #dc2626; font-size: 22px; }
.roi-col.new .roi-col-head i { color: #10b981; font-size: 22px; }
.roi-col-title { font-weight: 700; font-size: 15px; color: var(--primary, #1e3a8a); }
.roi-col-sub { font-size: 11px; color: var(--gray-500, #6b7280); margin-top: 2px; }

.roi-breakdown {
    list-style: none; padding: 0; margin: 0 0 14px 0;
    flex: 1;
}
.roi-breakdown li {
    display: flex; justify-content: space-between; align-items: center;
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px dotted var(--gray-100, #f5f5f3);
}
.roi-breakdown li:last-child { border-bottom: none; }
.roi-breakdown i { color: var(--gray-400, #9ca3af); margin-right: 8px; font-size: 8px; }
.roi-col.new .roi-breakdown i { color: #10b981; font-size: 11px; }
.roi-cost {
    color: var(--gray-600, #4b5563);
    font-weight: 600;
    font-family: ui-monospace, monospace;
    font-size: 12.5px;
}
.roi-item-good span { color: var(--gray-700, #374151); font-size: 13px; }

.roi-total {
    background: rgba(220,38,38,.06);
    border-radius: 12px;
    padding: 14px;
    text-align: center;
    margin-top: auto;
}
.roi-total.green {
    background: rgba(16,185,129,.08);
}
.roi-total-lbl {
    font-size: 11px; color: var(--gray-600,#4b5563);
    font-weight: 600; text-transform: uppercase; letter-spacing: .05em;
}
.roi-total-amt {
    font-size: 28px; font-weight: 800;
    color: var(--primary,#1e3a8a);
    margin-top: 4px;
}
.roi-total.green .roi-total-amt { color: #047857; }

.roi-savings {
    background: var(--gold-gradient,linear-gradient(135deg,#d4af37,#e0c560));
    color: var(--primary,#1e3a8a);
    padding: 22px 28px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 10px 28px rgba(212,175,55,.25);
}
.roi-savings-icon {
    width: 56px; height: 56px;
    background: rgba(0,0,0,.1);
    border-radius: 14px;
    display: grid; place-items: center;
    font-size: 26px;
    flex-shrink: 0;
}
.roi-savings-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}
.roi-savings-text strong {
    font-size: 22px;
    font-weight: 800;
    display: inline-block;
}
.roi-savings-text small {
    display: block;
    font-size: 11px;
    opacity: .75;
    margin-top: 4px;
    font-weight: 400;
}
.roi-savings .btn {
    flex-shrink: 0;
}
@media (max-width: 600px) {
    .roi-savings { flex-direction: column; text-align: center; }
    .roi-savings-icon { margin: 0 auto; }
    .roi-card { padding: 22px 18px; }
    .roi-input { padding: 18px 16px; }
    .roi-value-display { font-size: 28px; min-width: 70px; }
}
