/* =========================
   COMPONENTS / ELEMENTS
========================= */

/* ---------- Buttons ---------- */
.cta-button {
    background-color: var(--cambs-digital);
    color: #fff;
    padding: 12px 32px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: var(--vivid-sky-blue);
    transform: translateY(-2px);
}

/* ---------- Animated Cards ---------- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.section-header h2 {
    margin-bottom: 0;
    font-weight: 600;
    font-size: 2.5rem;
}

.arrow-down {
    color: var(--cambs-digital);
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Sticky card behavior maintained */
.card {
    position: sticky;
    top: 100px;
    background-color: var(--snow);
    will-change: transform;
    transform-origin: top center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: row;
    align-items: stretch;
    overflow: hidden;
    border-radius: 12px;
    transition: box-shadow 0.3s ease, filter 0.3s ease;
}

.card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    filter: brightness(1.02);
}

/* Image (right side) */
.card-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.card:hover .card-image img {
    transform: scale(1.05);
}

/* Content (left side) */
.card-content {
    flex: 1;
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    border-left: 4px solid var(--coral-pink);
}

.card-content h3 {
    margin-top: 0;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--tea-green-light);
    margin-bottom: .75rem;
}

.card-content p {
    color: #444;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}


/* ---------- Responsive adjustments ---------- */
@media (max-width:992px) {
    .card {
        flex-direction: column;
    }

    .card-image img {
        height: 300px;
    }

    .card-content {
        border-left: none;
        border-top: 4px solid var(--coral-pink);
        text-align: center;
        align-items: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .arrow-down {
        width: 36px;
        height: 36px;
    }
}

/* ---------- Text Divider ---------- */
.text-divider {
    width: 100%;
    background-color: transparent;
    overflow: hidden;
    white-space: nowrap;
    text-align: center;
    position: relative;
    margin-bottom: -60px;
    z-index: 2;
}

.text-divider span {
    display: inline-block;
    font-size: 8rem;
    font-weight: 800;
    color: var(--tea-green);

    transform: translateY(20px);
    user-select: none;
}

/* ---------- PPC Funnel Components ---------- */
/* Step list & scroll indicator */
.funnel-steps {
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0 0 0 28px;
    /* space for dots */
}

/* single gray line (background track) */
.funnel-steps::before {
    content: "";
    position: absolute;
    left: 6px;
    /* center of dots */
    top: 0;
    bottom: 25px;
    width: 2px;
    background: rgba(0, 0, 0, 0.15);
    z-index: 1;
}

/* coral fill line */
.funnel-steps::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 0;
    bottom: 25px;
    width: 2px;
    height: calc(var(--fill-height, 0%) - 25px);
    background: var(--cambs-digital);
    z-index: 2;
    transition: height 0.4s ease-out;
}

/* step text + dot */
.funnel-step {
    position: relative;
    margin-bottom: 36px;
    font-weight: 700;
    color: var(--tea-green-light);
    cursor: pointer;
    transition: color 0.25s ease;
}

/* dot */
.funnel-step::before {
    content: "";
    position: absolute;
    left: -27px;
    /* centers on 6px line with 12px dot */
    top: 0px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cfcfcf;
    z-index: 3;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

/* active & hover */
.funnel-step.active {
    color: var(--cambs-digital);
}

.funnel-step.active::before {
    background: var(--cambs-digital);
    transform: scale(1.25);
}

.funnel-step:hover {
    color: var(--vivid-sky-blue);
}

.funnel-step:hover::before {
    background: var(--vivid-sky-blue);
}

.funnel-step:last-child {
    margin-bottom: 0;
}

/* ---------- Funnel right column ---------- */
.funnel-content {
    display: flex;
    flex-direction: column;
    gap: 80px;
}
.funnel-content h2{
    text-align: center;
}
.funnel-block {
    display: flex;
    flex-direction: column;
    gap:0px;
}

.funnel-intro {
    font-family: var(--font-accent);
    font-style: italic;
    line-height: 1.8;
    font-size: 1.1rem;
    color: #333;
    max-width: 700px;
}

.funnel-image img {
    width: 100%;
    max-width: 750px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
    background-color: #f9f9f9;
    object-fit: cover;
    text-align: center;
      width: 100%; /* Makes image fill the funnel-block width */
  height: auto; /* Keeps aspect ratio */
  object-fit: cover; /* Ensures it fills nicely */
  border-radius: 8px;
  display: block;
}

.funnel-image {
  width: 100%;
  display: flex;
  justify-content: center; /* Centers image horizontally */
}


/* ---------- Responsive Funnel tweaks ---------- */
@media (max-width:768px) {
    .funnel-content {
        gap: 10px;
    }

    .funnel-step {
        margin-bottom: 24px;
    }

    .funnel-intro {
        font-size: 1rem;
    }

    .funnel-image img {
        max-width: 100%;
    }
}

/* ========== GET-RIGHT SECTION ========== */
.get-right-section {
    background: #000;
    /* black background */
    color: #fff;
    padding: 6rem 0;
    overflow: hidden;
}

.get-right-title {
    text-align: center;
    color: #fff;
    font-size: 2.2rem;
    font-weight: 500;
    margin-bottom: 3rem;
    line-height: 1.4;
}

.get-right-title em {
    font-family: var(--font-accent, 'Georgia', serif);
    font-style: italic;
    color: var(--coral-pink);
}

.get-right-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.get-right-card {
    background: #f7f2ed;
    color: #111;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    transform: translateY(60px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.get-right-card.animate-in {
    transform: translateY(0);
    opacity: 1;
}

/* Image / Content pairing */
.get-right-image img {
    width: 100%;
    height: auto;
    display: block;
}

.get-right-content {
    padding: 2rem;
}

.get-right-content h3 {
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.get-right-content p {
    line-height: 1.6;
}

.get-right-content .metric {
    color: var(--coral-pink);
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Responsiveness */
@media (max-width: 768px) {
    .get-right-section {
        padding: 4rem 0;
    }

    .get-right-title {
        font-size: 1.6rem;
    }

    .get-right-content {
        text-align: center;
    }

    .get-right-content .cta-button {
        margin-top: 1rem;
    }
}

/* ========== FAQ SECTION ========== */
.faq-section {
    background: linear-gradient(135deg, var(--snow) 0%, var(--tea-green) 100%);
    padding: 5rem 0 0 0;
    position: relative;
}

.faq-section .section-header {
    margin-bottom: .5rem;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* FAQ Item */
.faq-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.faq-item.active {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

/* FAQ Question Button */
.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    border-left: 4px solid transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-main);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--cambs-digital);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 168, 220, 0.05);
    border-left-color: var(--vivid-sky-blue);
}

.faq-item.active .faq-question {
    background: rgba(242, 133, 125, 0.08);
    border-left-color: var(--coral-pink);
    color: var(--coral-pink);
}

/* FAQ Icon (Plus/Minus) */
.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease, color 0.3s ease;
    color: #999;
}

.faq-question:hover .faq-icon {
    color: var(--vivid-sky-blue);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--coral-pink);
}

/* FAQ Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    /* Adjust if needed for longer answers */
    padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
    color: #555;
    line-height: 1.7;
    margin: 0;
    padding-left: 4px;
    /* Align with border */
    font-size: 1rem;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FAQ CTA Section */
.faq-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.faq-cta p {
    font-size: 1.2rem;
    color: var(--tea-green-light);
    margin-bottom: 1.5rem;
    font-family: var(--font-accent);
    font-style: italic;
}

.faq-cta .cta-button {
    font-size: 1.1rem;
    padding: 16px 40px;
    box-shadow: 0 4px 15px rgba(242, 133, 125, 0.3);
}

.faq-cta .cta-button:hover {
    box-shadow: 0 6px 20px rgba(0, 209, 233, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-section {
        padding: 0 0 2rem 0;
    }

    .faq-container {
        gap: 0.75rem;
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.25rem 1.5rem;
    }

    .faq-answer p {
        font-size: 0.95rem;
    }

    .faq-cta {
        margin-top: 2rem;
        padding: 1.5rem;
    }

    .faq-cta p {
        font-size: 1.1rem;
    }

    .faq-cta .cta-button {
        width: 100%;
        padding: 14px 20px;
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }

    .faq-icon {
        width: 20px;
        height: 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1rem 1.25rem;
    }
}

/* Optional: Add numbering to FAQ items */
.faq-container {
    counter-reset: faq-counter;
}

.faq-item {
    counter-increment: faq-counter;
    position: relative;
}

.faq-item::before {
    content: "0" counter(faq-counter);
    position: absolute;
    top: 1.5rem;
    right: 3.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--coral-pink);
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.faq-item.active::before {
    opacity: 0.6;
}

@media (max-width: 768px) {
    .faq-item::before {
        display: none;
        /* Hide numbers on mobile to save space */
    }
}

/* ========== FOOTER ========== */
.site-footer {
    background: #111;
    color: #fff;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-left,
.footer-center,
.footer-right {
    flex: 1;
}

.footer-left {
    text-align: left;
}

.footer-center {
    text-align: center;
}

.footer-right {
    text-align: right;
}

.footer-email {
    color: var(--cambs-digital);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-email:hover {
    color: var(--vivid-sky-blue);
}

.footer-copyright {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-credit {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-credit a {
    color: var(--tea-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-credit a:hover {
    color: var(--vivid-sky-blue);
    text-decoration: underline;
}

/* Tablet (iPad) - Stack in 2 rows */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-left,
    .footer-center,
    .footer-right {
        width: 100%;
        text-align: center;
    }

    .footer-email {
        display: inline-block;
        margin-bottom: 0.5rem;
    }
}

/* Mobile - Compact single column */
@media (max-width: 480px) {
    .site-footer {
        padding: 1.5rem 0;
    }

    .footer-content {
        gap: 0.75rem;
    }

    .footer-email,
    .footer-copyright,
    .footer-credit {
        font-size: 0.85rem;
    }
}

/* Optional: Add subtle animation on load */
.site-footer {
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== MODAL CONTACT WINDOW ========== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-window {
    background: var(--snow);
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 100px rgba(0, 0, 0, 0.1);
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.active .modal-window {
    transform: translateY(0) scale(1);
}

/* Modal Close Button */
.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.modal-close:hover {
    background: var(--cambs-digital);
    color: white;
    transform: rotate(90deg);
    box-shadow: 0 4px 15px rgba(210, 57, 57, 0.3);
}

/* Modal Header */
.modal-header {
    padding: 3rem 3rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.modal-header h2 {
    margin: 0 0 0.5rem;
    font-size: 2rem;
    color: var(--tea-green-light);
    font-weight: 600;
}

.modal-header p {
    margin: 0;
    color: #666;
    font-size: 1.1rem;
    font-family: var(--font-story);
    font-style: italic;
}

/* Modal Body */
.modal-body {
    padding: 2rem 3rem 3rem;
}

/* Form Placeholder (temporary) */
.form-placeholder {
    min-height: 300px;
    border: 2px dashed rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.02);
}

/* Scrollbar styling for modal */
.modal-window::-webkit-scrollbar {
    width: 8px;
}

.modal-window::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.modal-window::-webkit-scrollbar-thumb {
    background: var(--cambs-digital);
    border-radius: 10px;
}

.modal-window::-webkit-scrollbar-thumb:hover {
    background: var(--vivid-sky-blue);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .modal-window {
        max-width: 100%;
        margin: 1rem;
        max-height: 85vh;
    }

    .modal-header {
        padding: 2.5rem 2rem 1.5rem;
    }

    .modal-header h2 {
        font-size: 1.5rem;
    }

    .modal-header p {
        font-size: 1rem;
    }

    .modal-body {
        padding: 1.5rem 2rem 2rem;
    }

    .modal-close {
        top: 1rem;
        right: 1rem;
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .modal-overlay {
        padding: 0.5rem;
    }

    .modal-window {
        border-radius: 15px;
    }

    .modal-header {
        padding: 2rem 1.5rem 1rem;
    }

    .modal-body {
        padding: 1rem 1.5rem 1.5rem;
    }
}

/* Animation classes */
@keyframes modalShake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    75% {
        transform: translateX(5px);
    }
}

.modal-window.shake {
    animation: modalShake 0.3s ease;
}

/* ========== CONTACT FORM (Add this section) ========== */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    font-family: var(--font-main);
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    background: white;
    transition: all 0.3s ease;
    resize: vertical;
    box-sizing: border-box;
}

.contact-form input:hover,
.contact-form textarea:hover {
    border-color: #ccc;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--cambs-digital);
    box-shadow: 0 0 0 3px rgba(210, 57, 57, 0.1);
    background: #fff;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
    font-size: 0.95rem;
}

.contact-form .form-submit {
    width: 100%;
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    margin-top: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form .form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(210, 57, 57, 0.3);
}

.form-success {
    text-align: center;
    padding: 2rem;
    background: #f0fdf4;
    border-radius: 10px;
    border: 2px solid #86efac;
}

.form-success p {
    color: #16a34a;
    font-size: 1.1rem;
    margin: 0;
}

/* Mobile form adjustments */
@media (max-width: 768px) {
    .contact-form {
        gap: 1rem;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }
}

/* ========== FOOTER WITH LOGO ========== */
.site-footer {
    background: #111;
    color: #fff;
    padding: 3rem 0 2rem; /* Increased top padding */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer Logo - Centered */
.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo img {
    max-width: 180px;
    height: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-logo img:hover {
    opacity: 1;
    cursor: pointer;
}

/* Keep your existing footer-content styles */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .site-footer {
        padding: 2rem 0 1.5rem;
    }
    
    .footer-logo {
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
    }
    
    .footer-logo img {
        max-width: 140px;
    }
    
    /* Stack footer content on mobile */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .footer-logo img {
        max-width: 120px;
    }
    
    .footer-logo {
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }
}

/* ---------- Buttons ---------- */
.cta-button {
    position: relative;
    background: linear-gradient(
        135deg,
        var(--cambs-digital) 50%,
        var(--tea-green) 100%
    );
    background-size: 200% 200%;
    color: #fff;
    padding: 12px 32px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    animation: gradientShift 4s ease infinite;
    overflow: hidden;
}

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

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 168, 220, 0.4);
    animation-duration: 2s; /* Speed up animation on hover */
}

/* Optional: Add a subtle shine effect */
.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

/* ====== CRO IMPACT SECTION ====== */
/* ====== CRO IMPACT SECTION ====== */
.cro-impact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--snow) 0%, #e9ecef 100%);
}

.cro-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin: 60px 0;
    flex-wrap: wrap;
}

.cro-scenario {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    padding: 40px 30px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.cro-scenario:hover {
    transform: translateY(-5px);
}

.cro-scenario.highlighted {
    border: 3px solid var(--picton-blue);
    box-shadow: 0 8px 30px rgba(0, 168, 220, 0.2);
}

.cro-label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6c757d;
    margin-bottom: 30px;
}

.cro-scenario.highlighted .cro-label {
    color: var(--picton-blue);
}

.cro-stats {
    margin-bottom: 30px;
}

.cro-stat-large {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.cro-stat-large .number {
    font-size: 48px;
    font-weight: 700;
    color: #212529;
    line-height: 1;
}

.cro-stat-large .label {
    font-size: 14px;
    color: #6c757d;
    margin-top: 8px;
}

.cro-conversion-badge {
    display: inline-flex;
    flex-direction: column;
    padding: 15px 30px;
    background: var(--snow);
    border-radius: 12px;
    margin: 10px 0;
}

.cro-conversion-badge.highlight {
    background: linear-gradient(135deg, var(--picton-blue) 0%, var(--vivid-sky-blue) 100%);
}

.cro-conversion-badge .percentage {
    font-size: 36px;
    font-weight: 700;
    color: #212529;
}

.cro-conversion-badge.highlight .percentage {
    color: white;
}

.cro-conversion-badge .label {
    font-size: 12px;
    color: #6c757d;
    margin-top: 4px;
}

.cro-conversion-badge.highlight .label {
    color: rgba(255, 255, 255, 0.9);
}

.cro-divider {
    height: 2px;
    background: linear-gradient(to right, transparent, #dee2e6, transparent);
    margin: 30px 0;
}

.cro-results {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.result-item {
    display: flex;
    flex-direction: column;
}

.result-number {
    font-size: 40px;
    font-weight: 700;
    color: #212529;
    line-height: 1;
}

.result-item.revenue .result-number {
    color: var(--picton-blue);
}

.result-item.revenue.highlight .result-number {
    font-size: 48px;
    background: linear-gradient(135deg, var(--picton-blue) 0%, var(--vivid-sky-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.result-label {
    font-size: 14px;
    color: #6c757d;
    margin-top: 8px;
}

.cro-arrow {
    font-size: 48px;
    color: var(--vivid-sky-blue);
    flex-shrink: 0;
}

.cro-arrow svg {
    stroke: var(--vivid-sky-blue);
    animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% { transform: translateX(0); opacity: 1; }
    50% { transform: translateX(10px); opacity: 0.7; }
}

.cro-impact-message {
    margin-top: 60px;
    text-align: center;
}

.impact-box {
    display: inline-block;
    padding: 50px 60px;
    background: white;
    border-radius: 16px;
    border-left: 6px solid var(--coral-pink);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    max-width: 700px;
}

.impact-box h3 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #212529;
}

.impact-box p {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 30px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cro-comparison {
        flex-direction: column;
        gap: 20px;
    }
    
    .cro-arrow {
        transform: rotate(90deg);
    }
    
    .cro-arrow svg {
        width: 48px;
        height: 48px;
    }
    
    .impact-box {
        padding: 30px 25px;
    }
    
    .impact-box h3 {
        font-size: 24px;
    }
}