/* ========================================
   GLONECT Landing — Production CSS
   ======================================== */

:root {
    --primary: #0056b3;
    --primary-light: #80b3ff;
    --accent: #4caf50;
    --bg: #f4f7fa;
    --text: #1a1a1a;
    --text-secondary: #666;
    --border: #e0e0e0;
    --white: #ffffff;
    --shadow: 0 2px 15px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.1);
    
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --font-mono: 'Courier New', monospace;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

/* ========== TYPOGRAPHY ========== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); text-align: center; margin-bottom: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--accent);
}

/* ========== LAYOUT ========== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: 4rem 0;
}

@media (max-width: 768px) {
    section {
        padding: 2.5rem 0;
    }
}

/* ========== NAVBAR ========== */

.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.navbar.scrolled {
    box-shadow: var(--shadow-lg);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.cta-mobile {
    display: none;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .cta-mobile {
        display: block;
        padding: 0.5rem 1rem;
        background: var(--primary);
        color: var(--white);
        border: none;
        border-radius: 0.5rem;
        cursor: pointer;
        font-weight: 600;
    }
}

/* ========== BUTTONS ========== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: #003d85;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 86, 179, 0.3);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary-light);
}

.btn-secondary:hover {
    border-color: var(--primary);
    background: #f0f5ff;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

/* ========== HERO ========== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg) 0%, var(--white) 100%);
}

.stereo-background {
    position: absolute;
    inset: 0;
    opacity: 0.15;
    z-index: 0;
    overflow: hidden;
}

.stereo-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: parallax 20s ease-in-out infinite;
}

@keyframes parallax {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
}

.hero-tagline {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.hero-headline {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subheadline {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.trust-markers {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
        padding: 2rem 0;
    }
    
    .hero-ctas {
        flex-direction: column;
    }
    
    .trust-markers {
        gap: 1rem;
        font-size: 0.85rem;
    }
}

/* ========== HOW IT WORKS ========== */

.how-it-works {
    background: var(--white);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    padding: 2rem;
    border-radius: 1rem;
    background: var(--bg);
    transition: all 0.3s;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
}

.step h3 {
    margin-bottom: 0.5rem;
}

.step p {
    margin: 0;
}

/* ========== SERVICES ========== */

.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    padding: 2rem;
    border-radius: 1rem;
    background: var(--bg);
    border-left: 4px solid var(--primary);
    transition: all 0.3s;
    cursor: pointer;
}

.service-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--accent);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 0.5rem;
}

.service-metrics {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 600;
    margin-top: 1rem;
}

/* ========== CASES ========== */

.cases {
    background: var(--bg);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.case-card {
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.case-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.case-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}

.case-content {
    padding: 1.5rem;
}

.case-industry {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.case-card h3 {
    margin-bottom: 1rem;
}

.case-results {
    background: var(--bg);
    padding: 1rem;
    border-radius: 0.5rem;
    margin: 1rem 0;
    font-size: 0.9rem;
}

.case-result-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.case-result-item:last-child {
    margin-bottom: 0;
}

.case-testimonial {
    font-style: italic;
    color: var(--text-secondary);
    margin: 1rem 0;
    padding-left: 1rem;
    border-left: 3px solid var(--accent);
}

.case-author {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
}

/* ========== PRICING ========== */

.pricing {
    background: var(--white);
}

.pricing-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    border: 2px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.pricing-card:hover {
    box-shadow: var(--shadow-lg);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--white);
    padding: 0.25rem 1rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 700;
}

.pricing-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.pricing-period {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.pricing-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}

.pricing-features li:before {
    content: "✓ ";
    color: var(--accent);
    font-weight: 700;
    margin-right: 0.5rem;
}

.pricing-cta {
    width: 100%;
}

/* ========== TRUST ========== */

.trust {
    background: var(--bg);
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Trust logos */
.trust-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    margin: 1rem 0 2rem;
    opacity: 0.95;
}

.trust-logo {
    height: 36px;
    max-width: 160px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.75;
    transition: opacity 0.3s ease, filter 0.3s ease, transform 0.2s ease;
}

.trust-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: translateY(-2px);
}

.testimonial {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.testimonial:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.testimonial-author {
    font-weight: 700;
    color: var(--text);
}

.testimonial-role {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.testimonial-stars {
    color: #ffc107;
    margin-bottom: 0.5rem;
}

/* ========== FAQ ========== */

.faq {
    background: var(--white);
}

.faq-items {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 0;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-item:hover {
    padding-left: 1rem;
}

.faq-question {
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text);
}

.faq-toggle {
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
    color: var(--text-secondary);
    margin-top: 1rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* ========== CONTACT CTA ========== */

.contact-cta {
    background: linear-gradient(135deg, var(--primary) 0%, #003d85 100%);
    color: var(--white);
    text-align: center;
}

.contact-cta h2 {
    color: var(--white);
}

.contact-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-buttons .btn {
    background: var(--white);
    color: var(--primary);
}

.contact-buttons .btn:hover {
    background: var(--bg);
}

/* ========== FOOTER ========== */

.footer {
    background: #1a1a1a;
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-section a:hover {
    color: var(--white);
}

.footer-manifesto {
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ========== STICKY CTA ========== */

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    gap: 0.5rem;
    padding: 0.5rem;
    background: var(--white);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 99;
}

.sticky-cta.show {
    display: flex;
}

@media (max-width: 768px) {
    .sticky-cta.show {
        display: flex;
    }
}

/* ========== MODAL ========== */

.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    max-width: 500px;
    width: 100%;
    position: relative;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-secondary);
}

.modal-close:hover {
    color: var(--text);
}

.modal-content h3 {
    margin-bottom: 0.5rem;
}

.modal-content p {
    margin-bottom: 1.5rem;
}

/* ========== FORMS ========== */

.demo-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.demo-form input,
.demo-form select {
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    font-family: var(--font-family);
    font-size: 1rem;
}

.demo-form input:focus,
.demo-form select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    cursor: pointer;
}

.checkbox-label input {
    margin-top: 0.25rem;
    cursor: pointer;
}

.form-note {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
    margin: 0;
}

/* ========== AI ROI CALCULATOR ========== */

.roi-calculator {
    position: relative;
    padding: clamp(4rem, 8vw, 6rem) 0 clamp(4.5rem, 9vw, 7rem);
    background:
        radial-gradient(circle at 20% -10%, rgba(0, 86, 179, 0.18), transparent 55%),
        radial-gradient(circle at 85% 0%, rgba(45, 212, 191, 0.2), transparent 45%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(241, 246, 255, 0.98) 100%);
    overflow: hidden;
}

.roi-calculator::before,
.roi-calculator::after {
    content: '';
    position: absolute;
    border-radius: 999px;
    opacity: 0.35;
    pointer-events: none;
    filter: blur(70px);
}

.roi-calculator::before {
    width: 32rem;
    height: 32rem;
    top: -16rem;
    left: -12rem;
    background: rgba(0, 86, 179, 0.45);
}

.roi-calculator::after {
    width: 28rem;
    height: 28rem;
    bottom: -12rem;
    right: -10rem;
    background: rgba(45, 212, 191, 0.45);
}

.roi-container {
    position: relative;
    z-index: 1;
}

.roi-header {
    max-width: 780px;
    margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
    text-align: center;
}

.roi-badge {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    margin-bottom: 1rem;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    background: rgba(0, 86, 179, 0.1);
    border: 1px solid rgba(0, 86, 179, 0.2);
    border-radius: 999px;
    color: var(--primary);
}

.roi-header h2 {
    font-size: clamp(2.1rem, 4.5vw, 3rem);
    margin-bottom: 0.75rem;
    color: #0d203a;
}

.roi-header p {
    font-size: 1.05rem;
    color: var(--text-secondary);
}

.roi-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: clamp(2.25rem, 5vw, 3.5rem);
    align-items: stretch;
}

.roi-left,
.roi-right {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 22px;
    border: 1px solid rgba(13, 31, 51, 0.08);
    box-shadow: 0 28px 60px -35px rgba(13, 31, 51, 0.65);
    padding: clamp(1.75rem, 3.5vw, 2.4rem);
    overflow: hidden;
}

.roi-left::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.04), transparent 55%);
    pointer-events: none;
}

.roi-note {
    margin-bottom: 1.75rem;
    padding: 1rem 1.25rem;
    border-radius: 16px;
    background: rgba(13, 31, 51, 0.05);
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.roi-field {
    margin-bottom: 1.5rem;
}

.roi-field label {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
    color: #0d203a;
}

.roi-field select,
.roi-field input[type="range"] {
    width: 100%;
}

.roi-field select {
    padding: 0.7rem 0.9rem;
    border-radius: 12px;
    border: 1px solid rgba(13, 31, 51, 0.12);
    background: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.roi-field select:focus {
    outline: none;
    border-color: rgba(0, 86, 179, 0.35);
    box-shadow: 0 0 0 4px rgba(0, 86, 179, 0.12);
}

.roi-value {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
    font-variant-numeric: tabular-nums;
}

.roi-field input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(0, 86, 179, 0.65), rgba(29, 141, 242, 0.65));
    outline: none;
    transition: box-shadow 0.2s ease;
}

.roi-field input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid var(--primary);
    box-shadow: 0 6px 12px rgba(0, 86, 179, 0.35);
    cursor: pointer;
    transition: transform 0.2s ease;
}

.roi-field input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid var(--primary);
    box-shadow: 0 6px 12px rgba(0, 86, 179, 0.35);
    cursor: pointer;
    transition: transform 0.2s ease;
}

.roi-field input[type="range"]:focus-visible::-webkit-slider-thumb,
.roi-field input[type="range"]:focus-visible::-moz-range-thumb {
    transform: scale(1.08);
}

.roi-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.roi-actions .btn {
    min-width: 160px;
}

.roi-right {
    background: rgba(255, 255, 255, 0.95);
}

.roi-visual {
    position: relative;
    width: min(280px, 80vw);
    margin: 0 auto clamp(1.5rem, 3vw, 2rem);
}

.roi-gauge {
    width: 100%;
    height: auto;
}

.roi-gauge circle {
    fill: none;
    stroke-width: 12;
}

.roi-gauge-bg {
    stroke: rgba(13, 31, 51, 0.08);
}

.roi-gauge-progress {
    stroke: url(#roiGaugeGradient);
    stroke-dasharray: 427 427;
    stroke-dashoffset: 427;
    stroke-linecap: round;
    transform: rotate(-90deg);
    transform-origin: 80px 80px;
    transition: stroke-dashoffset 0.8s ease, stroke 0.4s ease;
}

.roi-gauge-progress.negative {
    stroke: #ef4444;
}

.roi-visual-core {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
    pointer-events: none;
}

.roi-visual-value {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--primary);
    transition: color 0.3s ease;
}

.roi-visual-value.negative {
    color: #ef4444;
}

.roi-visual-sub {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-secondary);
}

.roi-visual-tag {
    font-size: 0.9rem;
    color: #0d203a;
    font-weight: 600;
    text-align: center;
    max-width: 240px;
}

.roi-stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.25rem;
    margin-bottom: 1.75rem;
}

.roi-stat {
    padding: 1.1rem 1.2rem;
    border-radius: 18px;
    background: rgba(13, 31, 51, 0.04);
}

.roi-stat-label {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 0.35rem;
}

.roi-stat-value {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0d203a;
    font-variant-numeric: tabular-nums;
}

.roi-highlights {
    list-style: none;
    display: grid;
    gap: 0.9rem;
    margin-bottom: 1.75rem;
    padding: 0;
}

.roi-highlights li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    font-size: 0.95rem;
    color: var(--text);
}

.roi-highlight-title {
    color: var(--text-secondary);
}

.roi-highlight-value {
    font-weight: 600;
    font-size: 1.05rem;
    font-variant-numeric: tabular-nums;
}

.roi-cta {
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.12), rgba(29, 141, 242, 0.05));
    border-radius: 20px;
    padding: 1.6rem 1.8rem;
    text-align: center;
    color: var(--text-secondary);
    border: 1px solid rgba(0, 86, 179, 0.12);
}

.roi-cta .btn {
    margin-bottom: 0.85rem;
}

.roi-cta p {
    margin: 0;
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .roi-grid {
        grid-template-columns: 1fr;
    }

    .roi-left,
    .roi-right {
        padding: clamp(1.6rem, 4vw, 2.1rem);
    }

    .roi-actions {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 720px) {
    .roi-header h2 {
        font-size: clamp(1.8rem, 7vw, 2.4rem);
    }

    .roi-note {
        font-size: 0.9rem;
    }

    .roi-highlights li {
        flex-direction: column;
        align-items: flex-start;
    }

    .roi-cta {
        padding: 1.4rem 1.5rem;
    }
}

/* ========== ACCESSIBILITY ========== */

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (prefers-color-scheme: dark) {
    :root {
        --bg: #1a1a1a;
        --text: #f0f0f0;
        --text-secondary: #b0b0b0;
        --border: #333;
        --white: #2a2a2a;
    }
}

/* ========== RESPONSIVE ========== */

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn {
        padding: 0.65rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .trust-markers {
        flex-direction: column;
        gap: 0.5rem;
    }
}

.logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}
