:root {
    --primary-color: #FF5F00;
    --primary-hover: #CC4C00;
    --secondary-color: #000000;
    --accent-color: #FF5F00;
    --text-dark: #1F1F1F;
    --text-light: #F5F5F7;
    --bg-light: #F9F9F9;
    --bg-dark: #0A0A0A;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-500: #6B7280;
    --white: #FFFFFF;
    --font-main: 'Outfit', sans-serif;
    --transition: all 0.3s ease;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

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

/* Typography */
h1,
h2,
h3,
h4 {
    line-height: 1.2;
    font-weight: 700;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.text-highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.text-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(255, 95, 0, 0.2);
    z-index: -1;
    transform: skewX(-15deg);
}

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

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

.mb-5 {
    margin-bottom: 3rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    border: 2px solid transparent;
}

.btn--primary {
    background: var(--primary-color);
    color: var(--white);
    background: linear-gradient(135deg, #FF5F00 0%, #FF8C00 100%);
    box-shadow: 0 4px 15px rgba(255, 95, 0, 0.4);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 95, 0, 0.5);
}

.btn--outline {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    background: transparent;
}

.btn--outline:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.btn--full {
    width: 100%;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.btn--pulse {
    animation: pulse 2s infinite;
    background-color: #25D366;
    color: var(--white);
    border-color: #25D366;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn--pulse:hover {
    background-color: #128C7E;
    color: var(--white);
    border-color: #128C7E;
}

/* Header */
.header {
    background: var(--white);
    padding: 10px 0;
    position: sticky;
    /* Changed from fixed to sticky to respect preheader */
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    /* Soft shadow for reliable visibility */
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo img {
    height: 60px;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header__menu {
    display: flex;
    gap: 25px;
}

.header__menu a {
    font-weight: 500;
    font-size: 0.95rem;
}

.header__menu a:hover {
    color: var(--primary-color);
}

.header__toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: 60px;
    /* Reduced from 120px since header is no longer fixed overlay */
    padding-bottom: 60px;
    background: #000 url('../images/hero_bg.png') no-repeat center center/cover;
    color: var(--white);
    min-height: auto;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Fallback for bg if image fails */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9) 30%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.hero__container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero__title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero__subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero__social-proof {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 12px;
    backdrop-filter: blur(5px);
    width: fit-content;
}

.avatars {
    display: flex;
}

.avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--bg-dark);
    margin-left: -15px;
}

.avatars img:first-child {
    margin-left: 0;
}

.proof-text {
    font-size: 0.85rem;
}

.proof-count {
    font-weight: 700;
    display: block;
}

.stars {
    color: #FFD700;
    font-size: 0.9rem;
}

/* Hero Video Card */
.video-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #000;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
}

.video-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #FF0000;
    /* YouTube red */
    color: white;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-caption {
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.8);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.caption-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid var(--bg-dark);
}

/* Stats Section */
.stats {
    background: var(--bg-light);
    padding: 30px 0 60px 0;
}

.stats__container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.stat-number {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.stat-desc {
    font-size: 0.9rem;
    color: var(--gray-500);
}

/* Methodology */
.methodology__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Methodology Composition */
.composition-container {
    position: relative;
    height: 500px;
    width: 100%;
}

.comp-card {
    position: absolute;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    z-index: 1;
}

.comp-card:hover {
    transform: translateY(-5px);
    z-index: 10;
}

/* Person Cards */
.person-card {
    width: 240px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.person-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 10px;
}

.person-details {
    background: white;
    width: 90%;
    padding: 10px;
    text-align: center;
    border-radius: 10px;
    margin-top: -30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.person-details h5 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.person-details p {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.person-card--top {
    top: 0;
    left: 20%;
}

.person-card--bottom {
    bottom: 0;
    right: 0;
    background: #FFBD00;
    /* Yellow background for one card */
}

.person-card--bottom .person-details {
    background: white;
}

/* Stats Cards */
.stat-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    border-radius: 15px;
    min-width: 200px;
    background: white;
}

.stat-card--top {
    top: 40px;
    right: 0;
    z-index: 5;
}

.stat-card--bottom {
    bottom: 80px;
    left: 0;
    z-index: 5;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
}

.stat-info {
    font-size: 0.75rem;
    color: var(--gray-500);
    line-height: 1.2;
}

.stat-label {
    display: block;
    margin-bottom: 5px;
}

/* Micro Charts */
.mini-chart-bar {
    display: flex;
    gap: 3px;
    align-items: flex-end;
    height: 20px;
}

.mini-chart-bar span {
    width: 4px;
    background: var(--gray-200);
    border-radius: 2px;
}

.mini-chart-bar span:nth-child(1) {
    height: 40%;
}

.mini-chart-bar span:nth-child(2) {
    height: 70%;
}

.mini-chart-bar span:nth-child(3) {
    height: 100%;
    background: var(--primary-color);
}

.mini-chart-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid var(--gray-200);
    border-top-color: #FFBD00;
    transform: rotate(45deg);
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .composition-container {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .comp-card {
        position: static;
        width: 100%;
        max-width: 320px;
        transform: none;
    }
}

/* Value Props */
.value-props__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.prop-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.prop-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.prop-icon {
    width: 60px;
    height: 60px;
    background: var(--gray-100);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Products */
.products__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.product-card:hover {
    box-shadow: var(--shadow-hover);
}

.product-image {
    height: 250px;
    background: #2a0a4e;
    /* Deep purple placeholder */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.image-machine {
    background: #1a1a1a;
}

.product-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
}

.badge {
    background: var(--accent-color);
    color: white;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.product-content {
    padding: 30px;
}

.product-tagline {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.product-desc {
    color: var(--gray-500);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    background: var(--gray-100);
    padding: 10px;
    border-radius: 10px;
}

.score {
    font-weight: 700;
    font-size: 1.2rem;
}

.reviews {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* Audience */
.audience__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.audience-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: var(--transition);
}

.audience-card:hover {
    box-shadow: var(--shadow-hover);
    transform: scale(1.02);
}

.audience-icon {
    width: 50px;
    height: 50px;
    background: rgba(98, 0, 234, 0.1);
    color: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin: 0 auto 20px;
}

/* Testimonials */
.testimonials .icon-header {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: transparent;
}

.video-thumbnail {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.video-thumbnail img {
    width: 100%;
    transition: transform 0.3s ease;
}

.video-thumbnail:hover img {
    transform: scale(1.05);
}

.play-btn-small {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: #FF0000;
    color: white;
    border-radius: 50%;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.quote {
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.author strong {
    display: block;
    font-size: 0.9rem;
}

.author span {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* Companies */
.companies-carousel {
    /* Converted to carousel as requested */
    overflow: hidden;
    position: relative;
    width: 100%;
}

.companies-carousel::before,
.companies-carousel::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.companies-carousel::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-light), transparent);
}

.companies-carousel::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-light), transparent);
}

.companies-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: scroll 40s linear infinite;
    align-items: center;
}

.companies-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 20px));
        /* Move half way plus half the gap */
    }
}

.company-logo-fluid {
    height: 80px;
    /* Fixed height for uniformity in row */
    width: auto;
    /* Maintain aspect ratio */
    max-width: none;
    /* Allow them to take necessary space */
    border-radius: 8px;
    filter: grayscale(100%);
    transition: var(--transition);
    opacity: 0.9;
    flex-shrink: 0;
    /* Don't squash them */
}

.company-logo-fluid:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Blog */
.badge-sub {
    background: var(--gray-100);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    letter-spacing: 1px;
    font-weight: 700;
}

.blog__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.blog-image {
    height: 200px;
    background: #333;
    /* Placeholder */
    position: relative;
}

.blog-content {
    padding: 20px;
}

.blog-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.blog-content .date {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* Social CTA */
.social-cta {
    background: #FF5F00;
    /* Neon Orange */
    color: white;
    padding: 100px 0;
}

.social-cta__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge-purple {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
}

.social-cta h2 {
    font-size: 2.2rem;
    color: white;
}

.insta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.insta-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    height: 200px;
    /* Placeholder height */
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
}

/* Specific styling for the mosaic look if possible with placeholder divs */
.insta-item:nth-child(2) {
    margin-top: 30px;
}

.insta-item:nth-child(3) {
    margin-top: -30px;
}

/* Footer */
.footer {
    background: var(--gray-100);
    padding: 60px 0 20px;
}

.footer__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.footer-logo {
    height: 50px;
}

.footer__links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer__links a {
    color: var(--text-dark);
    font-weight: 500;
}

.footer__social {
    display: flex;
    gap: 20px;
}

.footer__social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.footer__social a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer__bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
    width: 100%;
    text-align: center;
    font-size: 0.8rem;
    color: var(--gray-500);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Responsive */
@media (max-width: 900px) {
    .h1 {
        font-size: 2.5rem;
    }

    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__social-proof {
        margin: 0 auto 2rem;
    }

    .header__nav .header__menu,
    .header__nav .btn {
        display: none;
    }

    .header__toggle {
        display: block;
    }

    .methodology__container {
        grid-template-columns: 1fr;
    }

    .card-stack {
        display: none;
    }

    /* Hide complex stack on mobile for simplicity */
    .stats__container {
        grid-template-columns: 1fr 1fr;
    }

    .social-cta__container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .insta-grid {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .stats__container {
        grid-template-columns: 1fr;
    }
}

/* Orbit Visuals for Methodology - Enhanced */
.orbit-visual {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.orbit-center {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF5F00 0%, #FF8C00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    z-index: 10;
    box-shadow: 0 0 30px rgba(255, 95, 0, 0.4);
    position: relative;
    animation: pulse-center 3s infinite ease-in-out;
}

.orbit-center::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: expand-ring 2s infinite;
}

.orbit-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 95, 0, 0.3);
    /* More visible */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.ring-1 {
    width: 250px;
    height: 250px;
    border-style: solid;
    opacity: 0.8;
    animation: spin-slow 20s linear infinite;
}

.ring-2 {
    width: 450px;
    height: 450px;
    border-style: dashed;
    border-width: 1px;
    opacity: 0.5;
    animation: spin-reverse 30s linear infinite;
}

.orbit-item {
    position: absolute;
    width: 220px;
    background: white;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    /* Premium shadow */
    z-index: 5;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    animation: float-card 6s ease-in-out infinite;
}

.orbit-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 95, 0, 0.15);
    border-color: rgba(255, 95, 0, 0.1);
    z-index: 20;
}

.item-1 {
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.item-2 {
    top: 20px;
    right: 0;
    animation-delay: 1.5s;
}

.item-3 {
    bottom: 20px;
    left: 0;
    animation-delay: 3s;
}

.item-4 {
    bottom: 0;
    right: 0;
    animation-delay: 4.5s;
}

.orbit-icon {
    width: 40px;
    height: 40px;
    background: #FFF0E6;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.orbit-item:hover .orbit-icon {
    transform: rotateY(180deg);
    background: var(--primary-color);
    color: white;
}

.orbit-item h5 {
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 8px;
    line-height: 1.2;
    color: var(--text-dark);
}

.orbit-item p {
    font-size: 0.8rem;
    color: var(--gray-500);
    line-height: 1.4;
    margin: 0;
}

/* Animations */
@keyframes spin-slow {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes spin-reverse {
    0% {
        transform: translate(-50%, -50%) rotate(360deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
}

@keyframes float-card {

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

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

@keyframes pulse-center {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 30px rgba(255, 95, 0, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 50px rgba(255, 95, 0, 0.6);
    }
}

@keyframes expand-ring {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@media (max-width: 991px) {
    .orbit-visual {
        flex-direction: column;
        height: auto;
        gap: 20px;
        padding: 40px 0;
    }

    .orbit-ring,
    .orbit-center {
        display: none;
    }

    .orbit-item {
        position: static;
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 20px;
        animation: none;
        /* Disable complex animation on mobile */
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    }

    .orbit-icon {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .orbit-item div {
        flex: 1;
    }
}

.btn--black-pulse {
    background: #000000;
    color: #FFFFFF;
    border: 2px solid #000000;
    margin-top: 1.5rem;
    padding: 15px 40px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    animation: blackPulse 2s infinite;
}

.btn--black-pulse:hover {
    background: #222;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

@keyframes blackPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 0, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

/* Hero Image Visual */
.hero-visual {
    position: relative;
    /* User requested to NOT limit with a frame, so we remove overflow: hidden and border-radius */
    overflow: visible;
    background: transparent;
    transition: transform 0.3s ease;
    /* Ensure z-index is high enough so the enlarged pulsating image isn't covered by other elements */
    z-index: 10;
}

.hero-visual:hover {
    transform: scale(1.02);
}

.hero-main-image {
    width: 100%;
    height: auto;
    display: block;
    /* Changed from cover to contain or just removes object-fit to ensure full image is shown */
    object-fit: contain;
    /* Make it slightly bigger by default */
    transform: scale(1.15);
    /* Add heartbeat animation */
    animation: image-pulse 3s infinite ease-in-out;
    /* Optional: drop shadow on the image itself since container shadow is gone */
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

@keyframes image-pulse {
    0% {
        transform: scale(1.15);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1.15);
    }
}

/* iPhone Screenshot Testimonials */
.iphone-screenshot-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.iphone-screenshot {
    width: 100%;
    max-width: 280px;
    /* Narrow width like a phone */
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border: 8px solid #000;
    /* Phone bezel look */
    transition: transform 0.3s ease;
}

.iphone-screenshot:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .iphone-screenshot {
        max-width: 240px;
    }
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    justify-items: center;
}

/* Pricing Plans */
.products__grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    /* Wider default for pricing */
    gap: 30px;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-200);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    height: 100%;
    /* Ensure equal height */
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.pricing-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px dashed var(--gray-200);
}

.pricing-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 5px;
}

.pricing-subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.pricing-ideal {
    font-size: 0.85rem;
    color: var(--gray-500);
    font-style: italic;
    background: var(--bg-light);
    padding: 10px;
    border-radius: 8px;
}

.pricing-features {
    flex-grow: 1;
    /* Pushes button to bottom */
    margin-bottom: 30px;
}

.feature-list li {
    font-size: 0.9rem;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color: var(--text-dark);
}

.feature-list li::before {
    content: '\f00c';
    /* FontAwesome Check */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    /* Changed from absolute to inline for flow, but abosulte is better for alignment */
    left: 0;
    top: 2px;
}

.pricing-price {
    text-align: center;
    margin-top: auto;
}

.price-amount {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark);
}

.price-period {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-bottom: 20px;
}

.pricing-card.premium {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    z-index: 5;
    box-shadow: 0 20px 60px rgba(255, 95, 0, 0.15);
}

.pricing-card.premium .pricing-header {
    background: linear-gradient(135deg, #FF5F00 0%, #FF8C00 100%);
    margin: -30px -30px 25px -30px;
    padding: 30px;
    color: white;
}

.pricing-card.premium .pricing-title,
.pricing-card.premium .pricing-subtitle,
.pricing-card.premium .pricing-ideal {
    color: white !important;
    background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 991px) {
    .pricing-card.premium {
        transform: none;
    }
}

/* Carousel Enhancements */
.companies-carousel {
    padding: 30px 0;
    overflow: hidden;
    position: relative;
    /* Increase height/space for larger logos */
}

.companies-track {
    display: flex;
    gap: 60px;
    /* More space between logos */
    animation: scroll 30s linear infinite;
    width: max-content;
}

.company-logo-fluid {
    height: 120px;
    /* Increased from default */
    object-fit: contain;
    /* Ensure they are shown in full color */
    filter: none;
    opacity: 1;
    transition: transform 0.3s ease;
}

.company-logo-fluid:hover {
    transform: scale(1.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* Assumes duplicated content for infinite loop */
}

@media (max-width: 768px) {
    .company-logo-fluid {
        height: 60px;
    }
}

/* Questions CTA */
.questions-cta {
    background: white;
    /* Clean white bg */
    text-align: center;
}

.questions__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.questions__title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.questions__subtitle {
    font-size: 1.2rem;
    color: var(--gray-500);
    margin-bottom: 25px;
}

.wp-pulse {
    width: 250px;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(37, 211, 102, 0.4));
    animation: wpPulse 2s infinite ease-in-out;
}

.btn--whatsapp-large {
    background-color: #25D366;
    color: white;
    font-size: 1.2rem;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
    border: none;
    cursor: pointer;
}

.btn--whatsapp-large i {
    font-size: 1.5rem;
}

.btn--whatsapp-large:hover {
    transform: translateY(-5px) scale(1.05);
    background-color: #128C7E;
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
}

@keyframes wpPulse {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 0 rgba(37, 211, 102, 0.4));
    }

    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 20px rgba(37, 211, 102, 0.6));
    }

    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 0 rgba(37, 211, 102, 0.4));
    }
}

@media (min-width: 900px) {
    .questions__container {
        flex-direction: row;
        justify-content: space-around;
        text-align: left;
    }

    .questions__image {
        order: 2;
    }

    .questions__content {
        order: 1;
        max-width: 50%;
    }
}

/* Sequential Pulse Animations */
.sequential-anim {
    animation: sequentialPulse 4s infinite ease-in-out;
}

@keyframes sequentialPulse {

    0%,
    25% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 95, 0, 0);
    }

    12.5% {
        transform: scale(1.2);
        box-shadow: 0 0 15px rgba(255, 95, 0, 0.5);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 95, 0, 0);
    }
}

/* Delay for orbit/methodology icons */
.orbit-item.item-1 .sequential-anim {
    animation-delay: 0s;
}

.orbit-item.item-2 .sequential-anim {
    animation-delay: 1s;
}

.orbit-item.item-3 .sequential-anim {
    animation-delay: 2s;
}

.orbit-item.item-4 .sequential-anim {
    animation-delay: 3s;
}

/* Delay for audience grid icons */
.audience-card:nth-child(1) .sequential-anim {
    animation-delay: 0s;
}

.audience-card:nth-child(2) .sequential-anim {
    animation-delay: 1s;
}

.audience-card:nth-child(3) .sequential-anim {
    animation-delay: 2s;
}

.audience-card:nth-child(4) .sequential-anim {
    animation-delay: 3s;
}

.bg-light {
    background-color: #f8f9fa;
    /* Ensure it is a noticeable light gray */
}

/* Ensure white backgrounds are explicitly white if sections rely on default */
section:not(.bg-light) {
    background-color: white;
}

/* Preheader Banner */
.preheader-banner {
    background-color: #0c0c0c;
    /* Very dark/black */
    color: #ffffff;
    text-align: center;
    padding: 10px 15px;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1001;
    /* Above header */
}

.preheader-banner strong {
    font-weight: 800;
    color: #ffffff;
    /* Or maybe a highlight color, but image shows white */
}
/* FAQ Page Styles */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.faq-item:hover {
    box-shadow: 0 8px 15px rgba(0,0,0,0.05);
}

.faq-trigger {
    width: 100%;
    text-align: left;
    padding: 20px;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-trigger:hover {
    color: var(--primary-color);
}

.faq-trigger i {
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    background-color: #fcfcfc;
}

.faq-content p {
    padding: 0 20px 20px 20px;
    margin: 0;
    color: var(--text-base);
    line-height: 1.6;
}

/* Active State */
.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 8px 15px rgba(255, 95, 0, 0.1);
}

.faq-item.active .faq-trigger {
    color: var(--primary-color);
    background-color: rgba(255, 95, 0, 0.03);
}

.faq-item.active .faq-trigger i {
    transform: rotate(180deg);
}

.faq-item.active .faq-content {
    max-height: 500px; /* Arbitrary large height for text */
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 800;
}
