/* ==========================================
   SHAPEMAP - CUSTOM DESIGN SYSTEM (CSS)
   Visual: Clean Professional (Light Gray, Teal/Blue)
   ========================================== */

/* Typography & Root Variables */
:root {
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Theme Colors */
    --color-bg: #f8fafc;
    --color-bg-alt: #f8fafc; /* Standardized to match the main background color */
    --color-card-bg: #ffffff;
    
    --color-primary: #0d9488; /* Trust Green / Teal */
    --color-primary-hover: #0f766e;
    --color-secondary: #2563eb; /* Trust Blue */
    --color-secondary-hover: #1d4ed8;
    
    --color-text-main: #0f172a; /* Slate 900 */
    --color-text-muted: #475569; /* Slate 600 */
    --color-text-light: #94a3b8; /* Slate 400 */
    
    --color-border: rgba(15, 23, 42, 0.08);
    --color-border-glow: rgba(13, 148, 136, 0.2);
    
    /* Gradients */
    --gradient-accent: linear-gradient(135deg, #0d9488 0%, #2563eb 100%);
    --gradient-button: linear-gradient(135deg, #10b981 0%, #2563eb 100%);
    --gradient-text: linear-gradient(135deg, #0d9488 0%, #2563eb 100%);
    --gradient-glow: radial-gradient(circle, rgba(13, 148, 136, 0.08) 0%, rgba(13, 148, 136, 0.02) 60%, rgba(255,255,255,0) 100%);

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.03);
    --shadow-md: 0 8px 16px -4px rgba(15, 23, 42, 0.06), 0 2px 4px -2px rgba(15, 23, 42, 0.04);
    --shadow-lg: 0 20px 24px -4px rgba(15, 23, 42, 0.08), 0 8px 8px -4px rgba(15, 23, 42, 0.04);
    --shadow-neon: 0 0 20px rgba(16, 185, 129, 0.15);
    
    /* Layout & Spacing */
    --container-max-width: 1200px;
    --header-height: 80px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Resets */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-text-main);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.container {
    width: 90%;
    max-width: var(--container-max-width);
    margin: 0 auto;
}

/* Gradients & Text utilities */
.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Global Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    padding: 12px 28px;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-primary {
    background-color: var(--color-primary);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(13, 148, 136, 0.3);
}

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 148, 136, 0.4);
}

.btn-secondary {
    background-color: var(--color-bg-alt);
    color: var(--color-text-main);
    border: 1px solid var(--color-border);
}

.btn-secondary:hover {
    background-color: #e2e8f0;
    transform: translateY(-2px);
}

.btn-gradient {
    background: var(--gradient-button);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.25);
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
    filter: brightness(1.05);
}

.btn-large {
    font-size: 1.125rem;
    padding: 16px 36px;
    border-radius: var(--border-radius-md);
}

.btn-pulse {
    animation: premium-glow-pulse 3s infinite ease-in-out;
    position: relative;
    overflow: hidden;
}

.btn-pulse::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 30%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.35) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(25deg);
    animation: cta-shimmer 4s infinite linear;
}

@keyframes cta-shimmer {
    0% {
        left: -60%;
    }
    15% {
        left: 130%;
    }
    100% {
        left: 130%;
    }
}

.btn-pulse:hover {
    animation: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(13, 148, 136, 0.5);
}

@keyframes premium-glow-pulse {
    0% {
        box-shadow: 0 4px 14px rgba(13, 148, 136, 0.3), 0 0 0 0 rgba(13, 148, 136, 0.2);
    }
    50% {
        box-shadow: 0 4px 24px rgba(13, 148, 136, 0.6), 0 0 12px 6px rgba(13, 148, 136, 0.15);
    }
    100% {
        box-shadow: 0 4px 14px rgba(13, 148, 136, 0.3), 0 0 0 0 rgba(13, 148, 136, 0.2);
    }
}

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

.logo-img-footer {
    height: 160px;
    width: auto;
    max-width: 90%;
    display: block;
    object-fit: contain;
    margin: 0 auto;
}

.logo-footer {
    margin-bottom: -10px;
}

.logo-hero {
    margin-bottom: 0;
}

.logo-img-hero {
    height: 55px;
    width: auto;
    display: block;
    object-fit: contain;
    mix-blend-mode: multiply;
}

/* Section Common Headers */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-primary);
    background-color: rgba(13, 148, 136, 0.08);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
    border: 1px solid rgba(13, 148, 136, 0.15);
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-desc {
    color: var(--color-text-muted);
    font-size: 1.125rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 40px 0 10px 0;
    background-color: var(--color-bg);
}

.hero-bg-glow {
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background: var(--gradient-glow);
    z-index: 1;
    pointer-events: none;
}

.hero-container-stacked {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    gap: 20px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #ffffff;
    color: var(--color-text-muted);
    border: 1px solid var(--color-border);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.badge::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #10b981;
    box-shadow: 0 0 8px #10b981;
}

.hero-title {
    font-size: 3.25rem;
    line-height: 1.15;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
    max-width: 750px;
}

.hero-cta-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    width: 100%;
}

.hero-cta-wrapper .btn {
    width: 100%;
    max-width: 340px;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.cta-micro-proof {
    font-size: 0.85rem;
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-micro-proof i {
    color: var(--color-primary);
}

/* VSL (Video Sales Letter) Container */
.vsl-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.vsl-wrapper {
    width: 100%;
    max-width: 340px;
    position: relative;
}

.vsl-wrapper::before {
    content: '';
    position: absolute;
    top: 5%;
    left: 5%;
    width: 90%;
    height: 90%;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.22) 0%, rgba(37, 99, 235, 0.06) 50%, transparent 100%);
    z-index: 0;
    pointer-events: none;
    animation: vsl-glow-pulse 4s infinite ease-in-out;
    filter: blur(25px);
}

.vsl-mockup {
    background-color: var(--color-card-bg);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg), var(--shadow-neon);
    overflow: hidden;
    position: relative;
    z-index: 2;
    transition: var(--transition-smooth);
}

@keyframes vsl-glow-pulse {
    0%, 100% {
        transform: scale(0.95);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.vsl-header {
    background-color: #f1f5f9;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--color-border);
}

.vsl-dots {
    display: flex;
    gap: 6px;
}

.vsl-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-text-light);
}

.vsl-title {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.vsl-title i {
    color: #ef4444; /* Red dot for live/play */
}

.vsl-video-container {
    position: relative;
    /* Aspect ratio for 9:16 vertical video */
    aspect-ratio: 9 / 16;
    background-color: #000000;
    overflow: hidden; /* Hide scaled iframe black bars and branding overlays */
}

.vsl-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.vsl-video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
    background-color: #000000;
}

.vsl-cta-below {
    margin-top: 24px;
    width: 100%;
    max-width: 340px;
}

.vsl-cta-below .btn {
    width: 100%;
    padding: 15px 20px;
    border-radius: var(--border-radius-md);
}

/* Testimonials Section */
.testimonials-section {
    padding: 30px 0 50px 0;
    background-color: #0f172a;
    position: relative;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
}

.slider-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 10px 10px;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
}

.slider-container::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome/Safari */
}

.testimonial-card {
    flex: 0 0 290px;
    background-color: var(--color-card-bg);
    border-radius: var(--border-radius-md);
    padding: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 230px;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.card-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 4px;
    align-self: flex-start;
    margin-bottom: 12px;
}

.benefit-tag {
    background-color: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.problem-tag {
    background-color: rgba(37, 99, 235, 0.1);
    color: #1d4ed8;
}

.testimonial-text {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    font-style: italic;
    margin-bottom: 16px;
    line-height: 1.6;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 16px;
    margin-bottom: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.25rem;
    border: 2px solid var(--color-border);
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.author-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
}

.author-info span {
    font-size: 0.75rem;
    color: var(--color-text-light);
}

.slider-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-main);
    font-size: 1.1rem;
    transition: var(--transition-smooth);
    flex-shrink: 0;
    z-index: 10;
}

.slider-arrow:hover {
    background-color: var(--color-primary);
    color: #ffffff;
    border-color: var(--color-primary);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--color-text-light);
    cursor: pointer;
    transition: var(--transition-smooth);
    opacity: 0.5;
}

.dot.active {
    background-color: var(--color-primary);
    opacity: 1;
    width: 24px;
    border-radius: 10px;
}

/* Benefits Section */
.benefits-section {
    padding: 60px 0;
    background-color: var(--color-bg);
}

.benefits-video-hero {
    position: relative;
    width: 100%;
    max-width: 330px;
    aspect-ratio: 9 / 16;
    margin: 30px auto 40px auto; /* Positive margin bottom to prevent overlap on desktop */
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.desktop-only-header {
    display: block;
}

.mobile-only-header-container {
    display: none;
}

.video-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-hero-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 1;
}

.video-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(248, 250, 252, 0) 0%, 
        rgba(248, 250, 252, 0) 65%, 
        rgba(248, 250, 252, 0.7) 82%, 
        rgba(248, 250, 252, 1) 100%
    );
    z-index: 2;
    pointer-events: none;
}

.section-header-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 0 20px 10px 20px;
    transform: translateZ(0);
}

.benefits-section-header {
    margin-bottom: 0 !important;
}

.benefits-video-hero .benefits-section-header h2 {
    font-size: 2.35rem;
    margin: 0;
    filter: drop-shadow(0 2px 6px rgba(255, 255, 255, 0.95));
    position: relative;
    z-index: 15;
}

.benefits-video-hero .benefits-section-header h2 .gradient-text {
    position: relative;
    z-index: 16;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-image-placeholder,
.benefit-image-container {
    width: 100%;
    height: 200px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.benefit-image-placeholder {
    border: 2px dashed var(--color-border);
    background-color: var(--color-bg-alt);
    gap: 12px;
    color: var(--color-text-light);
}

.benefit-image-container {
    background-color: transparent;
}

.benefit-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.benefit-item:hover .benefit-image-placeholder {
    background-color: rgba(13, 148, 136, 0.03);
    border-color: rgba(13, 148, 136, 0.3);
}

.placeholder-icon {
    font-size: 2.5rem;
    color: var(--color-primary);
}

.placeholder-label {
    font-size: 0.8rem;
    font-family: var(--font-heading);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.benefit-content h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.benefit-content p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Scroll Animation classes */
.scroll-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-animate.show {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 993px) {
    .benefits-grid .benefit-item:nth-child(1) { transition-delay: 0.05s; }
    .benefits-grid .benefit-item:nth-child(2) { transition-delay: 0.2s; }
    .benefits-grid .benefit-item:nth-child(3) { transition-delay: 0.35s; }
    .benefits-grid .benefit-item:nth-child(4) { transition-delay: 0.5s; }
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background-color: #0f172a;
    position: relative;
    overflow: hidden;
}

.features-section .section-header h2 {
    color: #ffffff;
}

.features-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: var(--gradient-glow);
    pointer-events: none;
    z-index: 1;
}

.features-section .container {
    position: relative;
    z-index: 2;
}

/* INTERACTIVE FEATURES SLIDER COMPONENT */
.features-slider-component {
    position: relative;
    max-width: 480px; /* Squares card width */
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.features-slider-container {
    position: relative;
    width: 100%;
    transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-slide-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #f1f5f9; /* Light gray card */
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(37, 99, 235, 0.2);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.3);
    padding: 36px 40px;
    opacity: 0;
    pointer-events: none;
    transform: translateX(50px) scale(0.95);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    z-index: 1;
    box-sizing: border-box;
}

.feature-slide-card.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0) scale(1);
    z-index: 2;
}

.feature-slide-card.prev {
    opacity: 0;
    transform: translateX(-50px) scale(0.95);
    z-index: 1;
}

/* Card Header Area */
.feature-card-header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    gap: 18px;
}

/* Floating Gradient Icon - No square wrapper box! */
.feature-card-icon {
    font-size: 2.85rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    filter: drop-shadow(0 2px 4px rgba(13, 148, 136, 0.15));
    transition: var(--transition-smooth);
}

.feature-slide-card:hover .feature-card-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(13, 148, 136, 0.35));
}

.feature-slide-card.active .feature-card-icon {
    filter: drop-shadow(0 4px 10px rgba(13, 148, 136, 0.4));
    transform: scale(1.05);
}

.feature-slide-card h3 {
    font-size: 1.45rem;
    margin: 0;
    color: #0f172a; /* Navy text */
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
}

/* Content Area - Always Visible */
.feature-card-content {
    width: 100%;
}

.feature-card-inner {
    border-top: 1px solid rgba(15, 23, 42, 0.04);
    padding-top: 20px;
    margin-top: 16px;
    width: 100%;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.feature-list li {
    font-size: 0.875rem;
    color: #475569; /* Darker gray for readability on light gray */
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.45;
    text-align: left;
}

.feature-list li i {
    color: #10b981; /* Green checkmark */
    font-size: 0.85rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Slider Controls */
.features-slider-component .nav-arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background-color: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #94a3b8;
    box-shadow: var(--shadow-md);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.features-slider-component .feat-prev {
    left: -64px;
}

.features-slider-component .feat-next {
    right: -64px;
}

.features-slider-component .nav-arrow-btn:hover {
    background-color: var(--color-primary);
    color: #ffffff;
    border-color: var(--color-primary);
    transform: translateY(-50%) scale(1.05);
}

.features-slider-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.feat-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.feat-dot.active {
    background-color: var(--color-primary);
    width: 20px;
    border-radius: 10px;
}


/* Pricing Section */
.pricing-section {
    padding: 60px 0;
    background-color: var(--color-bg);
    position: relative;
    overflow: hidden;
}

#preco .section-header h2 {
    font-size: 2.15rem;
}

.pricing-glow-1 {
    position: absolute;
    top: 20%;
    left: -10%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, rgba(255,255,255,0) 70%);
    pointer-events: none;
}

.pricing-glow-2 {
    position: absolute;
    bottom: 20%;
    right: -10%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.05) 0%, rgba(255,255,255,0) 70%);
    pointer-events: none;
}

.pricing-card-container {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.pricing-card {
    background: linear-gradient(180deg, #0f172a 0%, #0b0f19 100%);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.4), 0 0 25px rgba(13, 148, 136, 0.05);
    border: 1.5px solid rgba(13, 148, 136, 0.25);
    overflow: visible;
    position: relative;
    transition: var(--transition-smooth);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-accent);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 18px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.4);
    z-index: 10;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.6), 0 0 35px rgba(13, 148, 136, 0.25);
    border-color: rgba(13, 148, 136, 0.5);
}

.pricing-header {
    padding: 36px 30px 20px 30px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    position: relative;
    background: radial-gradient(circle at top, rgba(13, 148, 136, 0.12) 0%, transparent 70%);
}

.pricing-header h3 {
    font-size: 1.6rem;
    margin-bottom: 16px;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.price-wrapper {
    display: flex;
    justify-content: center;
    align-items: baseline;
    font-family: var(--font-heading);
    color: #ffffff;
    text-shadow: 0 0 25px rgba(13, 148, 136, 0.25);
}

.currency {
    font-size: 1.5rem;
    font-weight: 700;
    align-self: flex-start;
    margin-top: 4px;
}

.amount {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
}

.cents {
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 4px;
}

.period {
    font-size: 0.95rem;
    color: #94a3b8;
    font-weight: 500;
}

.price-disclaimer {
    font-size: 0.72rem;
    color: #64748b;
    margin-top: 12px;
    line-height: 1.4;
}

.pricing-body {
    padding: 20px 30px;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.pricing-features li {
    font-size: 0.95rem;
    color: #e2e8f0;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: #10b981;
    font-size: 1.05rem;
    filter: drop-shadow(0 0 4px rgba(16, 185, 129, 0.4));
}

.pricing-footer {
    padding: 0 30px 24px 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pricing-footer .btn {
    padding: 16px 20px;
    border-radius: var(--border-radius-md);
    box-shadow: 0 4px 14px rgba(13, 148, 136, 0.25);
    background: var(--gradient-accent);
}

.pricing-footer .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(13, 148, 136, 0.4);
}

.guarantee-simple {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    text-align: left;
}

.guarantee-icon-simple {
    font-size: 1rem;
    color: var(--color-primary);
    margin-top: 2px;
    flex-shrink: 0;
}

.guarantee-text-simple {
    font-size: 0.8rem;
    color: #94a3b8;
    line-height: 1.4;
}

.guarantee-text-simple strong {
    color: #ffffff;
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background-color: var(--color-bg-alt);
}

.faq-accordion-container {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--color-card-bg);
    border-radius: var(--border-radius-md);
    border: 1px solid var(--color-border);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: var(--color-border-glow);
}

.faq-item.active {
    border-color: rgba(13, 148, 136, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, rgba(13, 148, 136, 0.03) 100%);
    box-shadow: 0 10px 20px -5px rgba(13, 148, 136, 0.05);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-main);
    text-align: left;
    transition: var(--transition-smooth);
}

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

.faq-icon {
    font-size: 1rem;
    color: var(--color-text-light);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 30px 24px 30px;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 200px; /* Large enough for the text content */
}

/* Footer Section */
.main-footer {
    background-color: var(--color-text-main);
    color: #ffffff;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-centered-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0px;
    text-align: center;
}

.footer-copyright {
    color: #64748b;
    font-size: 0.85rem;
    margin: 0;
}

/* WhatsApp Floating Button */
.whatsapp-float-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: var(--transition-smooth);
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background-color: var(--color-text-main);
    color: #ffffff;
    font-size: 0.8rem;
    font-family: var(--font-heading);
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-md);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background-color: var(--color-text-main);
}

.whatsapp-float-btn:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ==========================================
   Responsive Media Queries
   ========================================== */

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .hero-subtitle {
        margin: 0 auto 0 auto;
    }
    
    .hero-cta-wrapper {
        align-items: center;
        width: 100%;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    .features-section,
    .pricing-section,
    .faq-section {
        padding: 40px 0;
    }

    .benefits-section {
        padding: 0 0 40px 0;
    }

    .benefits-video-hero {
        max-width: 310px;
        margin-top: 20px;
        margin-bottom: -25px;
    }

    .benefits-video-hero .benefits-section-header h2 {
        font-size: 1.65rem;
    }

    .desktop-only-header {
        display: none;
    }

    .mobile-only-header-container {
        display: block;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-section {
        padding: 24px 0 10px 0;
    }

    .hero-container-stacked {
        gap: 16px;
    }

    .hero-title {
        font-size: 1.85rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .benefit-item {
        text-align: center;
        align-items: center;
    }

    .benefit-image-placeholder,
    .benefit-image-container {
        height: 250px;
    }
    
    .slider-arrow {
        display: none; /* Hide navigation arrows on mobile, let touch scroll handle it */
    }
    
    .features-slider-component {
        max-width: 100%;
        padding: 0;
    }
    
    .features-slider-container {
        width: calc(100% - 90px);
        margin: 0 auto;
    }
    
    .features-slider-component .nav-arrow-btn {
        display: flex; /* Show navigation arrows on mobile */
        width: 38px;
        height: 38px;
        font-size: 0.85rem;
    }
    
    .features-slider-component .feat-prev {
        left: 8px;
    }
    
    .features-slider-component .feat-next {
        right: 8px;
    }
    
    .whatsapp-float-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }
    
    .whatsapp-tooltip {
        display: none; /* Disable tooltip on mobile */
    }

    .logo-img-footer {
        height: 110px;
    }

    .logo-footer {
        margin-bottom: -6px;
    }

    .main-footer {
        padding: 10px 0;
    }

    #preco .section-header h2 {
        font-size: 1.65rem;
    }
}

@media (max-width: 520px) {
    .features-slider-component {
        max-width: 100%;
        padding: 0;
        box-sizing: border-box;
    }
    .features-slider-container {
        width: calc(100% - 76px);
        margin: 0 auto;
    }
    .features-slider-component .nav-arrow-btn {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    .features-slider-component .feat-prev {
        left: 4px;
    }
    .features-slider-component .feat-next {
        right: 4px;
    }
    .feature-slide-card {
        padding: 24px 20px;
    }
    .feature-card-header {
        gap: 12px;
    }
    .feature-card-icon {
        font-size: 2.25rem;
    }
    .feature-slide-card h3 {
        font-size: 1.15rem;
    }
}

/* Language Switcher Floating Widget */
.language-switcher {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 1000;
}
.language-switcher .lang-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(15, 23, 42, 0.1);
    cursor: pointer;
    transition: all 0.2s ease;
    overflow: hidden;
}
.language-switcher .lang-btn img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
}
.language-switcher .lang-btn:hover {
    transform: translateY(-2px);
    background: rgba(15, 23, 42, 0.15);
    border-color: rgba(15, 23, 42, 0.25);
}
.language-switcher .lang-btn.active {
    background: rgba(15, 23, 42, 0.2);
    border-color: #0d9488;
    box-shadow: 0 0 10px rgba(13, 148, 136, 0.3);
}

@media (max-width: 768px) {
    .language-switcher {
        top: 15px;
        right: 15px;
    }
    .language-switcher .lang-btn {
        width: 28px;
        height: 28px;
    }
    .language-switcher .lang-btn img {
        width: 16px;
        height: 16px;
    }
}

.roi-calculator-container {
    width: 100%;
    max-width: 580px;
    margin: 40px auto 20px auto;
    padding: 0 16px;
}

.roi-card {
    background: var(--color-card-bg);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 24px;
    padding: 32px 24px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
    text-align: center;
}

.roi-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    display: inline-block;
    width: 100%;
}

.roi-sliders {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 36px;
    text-align: left;
}

.roi-field-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.roi-field-label {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-text-main);
    text-align: center;
    width: 100%;
}

.roi-value-display {
    text-align: center;
    margin: 6px 0;
}

#qty-val, #price-val {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: -0.01em;
    display: inline-block;
    transition: all 0.2s ease;
}

/* Custom range input styling */
.roi-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: rgba(15, 23, 42, 0.12);
    outline: none;
    margin: 8px 0;
    transition: background 0.15s ease;
}

.roi-slider::-webkit-slider-runnable-track {
    width: 100%;
    height: 6px;
    cursor: pointer;
    background: transparent;
    border-radius: 3px;
}

.roi-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--color-primary);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(13, 148, 136, 0.35);
    transition: transform 0.1s ease, background-color 0.1s ease;
    margin-top: -8px; /* Alignment fix for Webkit */
}

.roi-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    background: var(--color-primary-hover);
}

.roi-slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border: none;
    border-radius: 50%;
    background: var(--color-primary);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(13, 148, 136, 0.35);
    transition: transform 0.1s ease, background-color 0.1s ease;
}

.roi-slider::-moz-range-thumb:hover {
    transform: scale(1.15);
    background: var(--color-primary-hover);
}

.roi-slider-ticks {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--color-text-light);
    padding: 0 2px;
}

.roi-result-card {
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.04) 0%, rgba(37, 99, 235, 0.04) 100%);
    border: 1.5px solid rgba(13, 148, 136, 0.12);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 8px 20px rgba(13, 148, 136, 0.03);
}

.roi-result-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-bottom: 20px;
}

.roi-result-label {
    font-size: 0.95rem;
    color: var(--color-text-main);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.roi-result-value {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: -0.02em;
    transition: color 0.25s ease;
    text-shadow: 0 2px 10px rgba(13, 148, 136, 0.08);
}

.roi-divider {
    height: 1px;
    background: rgba(15, 23, 42, 0.06);
    margin: 0 -24px 20px -24px;
}

.roi-result-footer {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.roi-footer-hint {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.roi-metric-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.roi-footer-cost {
    font-size: 0.9rem;
    color: var(--color-text-main);
}

.roi-footer-cost strong {
    color: var(--color-primary);
}

.roi-footer-comparison {
    font-size: 0.85rem;
    font-weight: 600;
    color: #10b981;
    margin-top: 4px;
}

/* Mobile-first adjustments */
@media (max-width: 480px) {
    .roi-card {
        padding: 24px 16px;
        border-radius: 20px;
    }
    
    .roi-title {
        font-size: 1.7rem;
        margin-bottom: 20px;
    }

    .roi-sliders {
        gap: 20px;
        margin-bottom: 28px;
    }

    #qty-val, #price-val {
        font-size: 1.5rem;
    }

    .roi-result-card {
        padding: 16px;
        border-radius: 16px;
    }

    .roi-result-value {
        font-size: 2.6rem;
    }
    
    .roi-footer-cost {
        font-size: 0.85rem;
    }
    
    .roi-footer-comparison {
        font-size: 0.8rem;
    }

    .counter-header-wrapper {
        margin-top: 28px;
        margin-bottom: 8px;
    }
    
    .counter-number-container {
        font-size: 2.6rem;
    }
    
    .counter-label {
        font-size: 0.8rem;
    }
}

.counter-header-wrapper {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.counter-number-container {
    font-family: var(--font-heading);
    font-size: 3.4rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.counter-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}
