/* outfit-300 - latin */
@font-face {
    font-display: swap;
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 300;
    src: url('assets/fonts/outfit-v15-latin-300.woff2') format('woff2');
}

/* outfit-regular - latin */
@font-face {
    font-display: swap;
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 400;
    src: url('assets/fonts/outfit-v15-latin-regular.woff2') format('woff2');
}

/* outfit-600 - latin */
@font-face {
    font-display: swap;
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 600;
    src: url('assets/fonts/outfit-v15-latin-600.woff2') format('woff2');
}

/* outfit-700 - latin */
@font-face {
    font-display: swap;
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 700;
    src: url('assets/fonts/outfit-v15-latin-700.woff2') format('woff2');
}

/* outfit-800 - latin */
@font-face {
    font-display: swap;
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 800;
    src: url('assets/fonts/outfit-v15-latin-800.woff2') format('woff2');
}

/* inter-300 - latin */
@font-face {
    font-display: swap;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300;
    src: url('assets/fonts/inter-v20-latin-300.woff2') format('woff2');
}

/* inter-regular - latin */
@font-face {
    font-display: swap;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    src: url('assets/fonts/inter-v20-latin-regular.woff2') format('woff2');
}

/* inter-500 - latin */
@font-face {
    font-display: swap;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    src: url('assets/fonts/inter-v20-latin-500.woff2') format('woff2');
}

/* inter-600 - latin */
@font-face {
    font-display: swap;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    src: url('assets/fonts/inter-v20-latin-600.woff2') format('woff2');
}

/* inter-700 - latin */
@font-face {
    font-display: swap;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    src: url('assets/fonts/inter-v20-latin-700.woff2') format('woff2');
}

:root {
    --bg-color: #ffffff;
    --text-color: #0c0c0c;
    --primary-red: #d90429;
    --secondary-red: #ef233c;
    --dark-grey: #2b2d42;
    --light-grey: #f8f9fa;
    --accent-grey: #8d99ae;
    --white: #ffffff;
    --black: #000000;

    --font-main: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 100px 0;
}

.text-red {
    color: var(--primary-red);
}

.text-underline {
    position: relative;
    display: inline-block;
}

.text-underline::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: var(--primary-red);
    opacity: 0.2;
    z-index: -1;
}

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

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

p {
    font-size: 1.125rem;
    color: #4a4a4a;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-red {
    background-color: var(--primary-red);
    color: var(--white);
}

.btn-red:hover {
    background-color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(217, 4, 41, 0.2);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    gap: 10px;
    font-size: 1rem;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: scale(1.02);
}

/* Navbar */
.navbar {
    height: 80px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-img {
    height: 40px;
    width: auto;
    display: block;
}

.logo-footer {
    filter: brightness(0) invert(1);
    height: 35px;
}

/* Hero */
.hero {
    padding-top: 180px;
    padding-bottom: 100px;
    background: radial-gradient(circle at top right, #fff5f5 0%, #ffffff 50%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-image .image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 30px 30px 0px var(--primary-red);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(100%);
    transition: var(--transition);
}

.hero-image:hover img {
    filter: grayscale(0%);
}

/* Pain Points List */
.pain-points-list {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (max-width: 768px) {
    .pain-points-list {
        grid-template-columns: 1fr;
    }
}

.pain-item {
    display: flex;
    align-items: center;
    /* Centered vertically for better symmetry when content length differs */
    gap: 1.5rem;
    padding: 2.5rem;
    background: var(--light-grey);
    border-radius: 12px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.pain-item:hover {
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateY(-5px);
    border-color: rgba(217, 4, 41, 0.1);
}

.pain-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(217, 4, 41, 0.05);
    color: var(--primary-red);
    border-radius: 16px;
    flex-shrink: 0;
    transition: var(--transition);
}

.pain-item:hover .pain-icon {
    background: var(--primary-red);
    color: var(--white);
    transform: rotate(5deg) scale(1.1);
}

.pain-icon i {
    width: 28px;
    height: 28px;
}

.pain-item p {
    font-size: 1.2rem;
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 0;
}

.problem-footer {
    margin-top: 5rem;
}

.problem-question {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--dark-grey);
}


/* Solution Section */
.section-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.25rem;
}

.journey-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.journey-step {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.journey-step:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-red);
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-red);
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 1.5rem;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.step-content p {
    font-size: 1rem;
    color: #bbb !important;
}


/* Solution Section */
.alternate-bg {
    background-color: var(--black);
    color: var(--white);
}

.alternate-bg p {
    color: #ccc;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.25rem;
}

/* Conversion Section */
.conversion-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
}

.conversion-grid.top-aligned {
    align-items: start;
}

.conversion-card {
    padding: 3.5rem;
    border-radius: 12px;
}


.checker-card {
    background: var(--white);
    border: 1px solid #eee;
    box-shadow: var(--shadow);
}

.direct-card {
    background: var(--light-grey);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.whatsapp-container {
    margin-top: 2rem;
}


.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"] {
    width: 100%;
    padding: 0.85rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    transition: var(--transition);
}

input:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(217, 4, 41, 0.1);
}

.slider-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

input[type="range"] {
    flex-grow: 1;
    accent-color: var(--primary-red);
}

#ai-value {
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--primary-red);
    min-width: 25px;
}

.form-divider {
    margin: 2rem 0;
    border: none;
    border-top: 1px solid #eee;
}

.form-checkbox {
    display: flex;
    gap: 10px;
    margin-bottom: 2rem;
    font-size: 0.85rem;
}

.form-checkbox input {
    margin-top: 3px;
}

/* Footer */
.footer {
    background: #000;
    color: white;
    border-top: 5px solid var(--primary-red);
}

.footer-info {
    max-width: 700px;
    margin-bottom: 4rem;
}

.footer-info p {
    color: #999;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 3rem;
    border-top: 1px solid #222;
}

.copyright {
    font-size: 0.85rem;
    color: #666;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

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

.hero-text {
    animation: fadeInUp 1s ease-out forwards;
}

.hero-image {
    animation: fadeInRight 1s ease-out 0.3s forwards;
    opacity: 0;
}

.pain-item,
.journey-step {
    opacity: 0;
    transform: translateY(20px);
}

.pain-item.visible,
.journey-step.visible {
    animation: fadeInUp 0.8s ease-out forwards;
}

@media (max-width: 992px) {

    .hero-grid,
    .conversion-grid {
        grid-template-columns: 1fr;
    }

    .hero-image {
        order: -1;
    }

    .hero {
        padding-top: 120px;
    }
}

/* Footer Links & Copyright */
.footer-links {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: var(--white);
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.2);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    z-index: 9999;
    display: none;
    /* Hidden by default */
    border-left: 5px solid var(--primary-red);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content p {
    font-size: 0.9rem;
    color: var(--text-color);
    margin: 0;
}

.cookie-buttons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
}

.btn-small {
    padding: 0.6rem 1.5rem;
    font-size: 0.8rem;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--accent-grey);
    color: var(--text-color);
}

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

.cookie-link {
    font-size: 0.85rem;
    color: var(--accent-grey);
    text-decoration: none;
}

.cookie-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

/* Legal Pages */
.legal-content {
    margin-top: 3rem;
    max-width: 800px;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-grey);
}

.legal-content h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-content a {
    color: var(--primary-red);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}