/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
    width: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #111827;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

/* Typography */
h1 {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    min-height: 48px;
}

.btn-primary {
    background: #2563EB;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    background: #1D4ED8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #374151;
    border: 2px solid #374151;
}

/* Light sections need darker secondary buttons */
.pricing .btn-secondary,
.problem-solution .btn-secondary,
.features .btn-secondary,
.tech-specs .btn-secondary {
    color: #374151;
    border: 2px solid #374151;
}

.pricing .btn-secondary:hover,
.problem-solution .btn-secondary:hover,
.features .btn-secondary:hover,
.tech-specs .btn-secondary:hover {
    background: rgba(55, 65, 81, 0.1);
    border-color: #111827;
    color: #111827;
}

.btn-secondary:hover {
    background: rgba(55, 65, 81, 0.1);
    border-color: #111827;
    color: #111827;
}

/* Dark sections (hero, etc.) need white secondary buttons */
.hero .btn-secondary,
.hero .btn-secondary,
.final-cta .btn-secondary {
    color: #ffffff;
    border: 2px solid #9CA3AF;
}

.how-it-works .btn-secondary,
.cta-form .btn-secondary {
    color: #374151;
    border: 2px solid #374151;
}

.hero .btn-secondary:hover,
.hero .btn-secondary:hover,
.final-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    color: #ffffff;
}

.how-it-works .btn-secondary:hover,
.cta-form .btn-secondary:hover {
    background: rgba(55, 65, 81, 0.1);
    border-color: #111827;
    color: #111827;
}

.btn-full {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #E5E7EB;
    z-index: 1000;
    padding: 1rem 0;
}

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

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

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2563EB;
}

/* Force hide any mobile menu buttons */
.mobile-menu-btn,
button[class*="mobile"],
button[class*="menu"],
.hamburger,
.menu-toggle,
[class*="hamburger"],
[class*="menu-icon"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Hero Section */
.hero {
    background: #111827;
    color: #ffffff;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.eyebrow {
    background: #2563EB;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.hero h1 {
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.hero p {
    color: #D1D5DB;
    margin-bottom: 2rem;
}

.feature-list {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    color: #D1D5DB;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563EB;
    font-weight: bold;
    font-size: 18px;
}

.cta-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.trust-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero-visual .video-wrapper {
    width: 100%;
    max-width: 500px;
}

.hero-image-placeholder {
    position: relative;
    width: 300px;
    height: 300px;
    background: #2563EB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.voice-waves {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wave {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.wave-1 { width: 100px; height: 100px; animation-delay: 0s; }
.wave-2 { width: 150px; height: 150px; animation-delay: 0.5s; }
.wave-3 { width: 200px; height: 200px; animation-delay: 1s; }

@keyframes pulse {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(1.2); opacity: 0; }
}

.phone-icon {
    font-size: 60px;
    z-index: 10;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.problem-solution {
    background: #F3F4F6;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.problem-list {
    list-style: none;
    margin-bottom: 2rem;
}

.problem-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    color: #374151;
}

.problem-list li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #EF4444;
    font-weight: bold;
}

.solution-list {
    list-style: none;
}

.solution-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    color: #374151;
}

.solution-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563EB;
    font-weight: bold;
}

blockquote {
    font-style: italic;
    font-size: 20px;
    color: #6B7280;
    border-left: 4px solid #2563EB;
    padding-left: 1.5rem;
    margin-top: 2rem;
}

/* Video Section */
.video-section {
    background: #FFFFFF;
    padding: 4rem 0;
}

.video-section h2 {
    text-align: center;
    color: #111827;
    margin-bottom: 2rem;
}

.video-wrapper {
    position: relative; /* already present, keep */
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000000;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

/* Make Video.js behave like the iframe inside .video-wrapper */
.video-wrapper .video-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
}
/* Base watermark */
.video-watermark {
    position: absolute;
    z-index: 3;
    pointer-events: none;
    opacity: 0.9;
  
    /* sizing – tweak as you like */
    max-width: clamp(64px, 14vw, 180px);
    max-height: 10%;
    aspect-ratio: auto;
  
    /* configurable offsets (defaults) */
    --wm-offset-x: 10px;
    --wm-offset-y: 26px;
  }
  
  /* Corners use the variables */
  .video-watermark.pos-br { right: var(--wm-offset-x); bottom: var(--wm-offset-y); }
  .video-watermark.pos-bl { left:  var(--wm-offset-x); bottom: var(--wm-offset-y); }
  .video-watermark.pos-tr { right: var(--wm-offset-x); top:    var(--wm-offset-y); }
  .video-watermark.pos-tl { left:  var(--wm-offset-x); top:    var(--wm-offset-y); }

/* How It Works */
.how-it-works {
    background: #F8FAFC;
    color: #111827;
}

.how-it-works h2 {
    text-align: center;
    color: #111827;
    margin-bottom: 3rem;
}

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

.step {
    text-align: center;
    padding: 2rem;
    background: #FFFFFF;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: #2563EB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    margin: 0 auto 1rem;
}

.step h3 {
    color: #111827;
    margin-bottom: 1rem;
    font-weight: 600;
}

.step p {
    color: #6B7280;
    line-height: 1.6;
}

.note {
    text-align: center;
    margin-top: 2rem;
    font-style: italic;
    color: #D1D5DB;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: #ffffff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 1rem;
}

.card h3 {
    color: #111827;
    margin-bottom: 1rem;
}

.card p {
    color: #6B7280;
    font-size: 16px;
}

/* Features */
.features {
    background: #F3F4F6;
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.feature-item {
    background: #ffffff;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 1rem;
}

.feature-item h3 {
    color: #111827;
    margin-bottom: 1rem;
}

.feature-item p {
    color: #6B7280;
    font-size: 16px;
}

/* Social Proof */
.social-proof {
    background: #111827;
    color: #ffffff;
}

.social-proof h2 {
    text-align: center;
    color: #ffffff;
    margin-bottom: 3rem;
}

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

.testimonial {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.quote {
    font-size: 20px;
    font-style: italic;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.quote::before {
    content: '"';
    font-size: 30px;
    color: #2563EB;
}

.quote::after {
    content: '"';
    font-size: 30px;
    color: #2563EB;
}

.author-name {
    font-weight: 600;
    color: #ffffff;
}

.author-role {
    color: #9CA3AF;
    font-size: 14px;
}

/* Pricing */
.pricing {
    background: #F3F4F6;
}

.pricing h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.pricing-column {
    background: #ffffff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.pricing-column h3 {
    color: #111827;
    margin-bottom: 1rem;
}

.price {
    font-size: 36px;
    font-weight: 800;
    color: #2563EB;
    margin-bottom: 1.5rem;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 1.5rem;
}

.pricing-features li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    color: #374151;
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563EB;
    font-weight: bold;
}

.pricing-note,
.pricing-footnote {
    font-size: 14px;
    color: #6B7280;
    font-style: italic;
}

.pricing-callout {
    background: #2563EB;
    color: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 2rem;
}

.pricing .cta-group {
    justify-content: center;
}

/* Form */
.cta-form {
    background: #FFFFFF;
    color: #111827;
    border-top: 1px solid #E5E7EB;
    border-bottom: 1px solid #E5E7EB;
}

.cta-form h2 {
    text-align: center;
    color: #111827;
    margin-bottom: 1rem;
}

.cta-form > .container > p {
    text-align: center;
    color: #6B7280;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: 18px;
    line-height: 1.6;
}

.lead-form {
    background: #F9FAFB;
    padding: 3rem;
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid #E5E7EB;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #374151;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #D1D5DB;
    border-radius: 6px;
    background: #FFFFFF;
    color: #111827;
    font-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563EB;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    background: #FFFFFF;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9CA3AF;
}

.form-group textarea {
    height: 100px;
    resize: vertical;
}

.phone-input-group {
    display: flex;
    gap: 0.5rem;
}

.country-code-select {
    width: 100px;
    padding: 12px 8px;
    border: 2px solid #D1D5DB;
    border-radius: 6px;
    background: #FFFFFF;
    color: #111827;
    font-size: 16px;
    cursor: pointer;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.country-code-select:focus {
    outline: none;
    border-color: #2563EB;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.phone-input-group input[type="tel"] {
    flex: 1;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.privacy-note {
    text-align: center;
    font-size: 14px;
    color: #6B7280;
    margin-top: 1rem;
}

/* Form Success Message */
.form-success-message {
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
    color: #FFFFFF;
    padding: 3rem 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.3);
    animation: slideInUp 0.5s ease-out;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #FFFFFF;
    color: #2563EB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    animation: scaleIn 0.6s ease-out 0.2s both;
}

.form-success-message h3 {
    color: #FFFFFF;
    font-size: 28px;
    margin-bottom: 1rem;
}

.form-success-message p {
    color: #EFF6FF;
    font-size: 18px;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.form-success-message strong {
    color: #FFFFFF;
    font-weight: 600;
}

.success-next-steps {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    padding: 2rem;
    margin-top: 2rem;
    text-align: left;
}

.success-next-steps h4 {
    color: #FFFFFF;
    font-size: 20px;
    margin-bottom: 1rem;
    text-align: center;
}

.success-next-steps ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.success-next-steps li {
    color: #EFF6FF;
    font-size: 16px;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.success-next-steps li:last-child {
    border-bottom: none;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Tech Specs */
.tech-specs {
    background: #F3F4F6;
}

.tech-specs h3 {
    color: #111827;
    margin-bottom: 1.5rem;
}

.tech-specs ul {
    list-style: none;
}

.tech-specs li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    color: #374151;
}

.tech-specs li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2563EB;
    font-weight: bold;
    font-size: 20px;
}

/* FAQ */
.faq h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    font-weight: 600;
    color: #111827;
    cursor: pointer;
    border: none;
    border-bottom: 1px solid #E5E7EB;
    position: relative;
    background: transparent;
    text-align: left;
    font-size: inherit;
    font-family: inherit;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #F3F4F6;
}

.faq-question:focus {
    outline: 2px solid #2563EB;
    outline-offset: -2px;
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #2563EB;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    padding: 0 2rem 1.5rem;
    color: #6B7280;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Final CTA - Completely Rebuilt */
.final-cta {
    background: #F9FAFB;
    color: #111827;
    padding: 100px 0;
    text-align: center;
}

.final-cta h2 {
    color: #111827;
    margin-bottom: 1.5rem;
    font-size: 36px;
    font-weight: 700;
}

.final-cta > .container > p {
    color: #6B7280;
    margin-bottom: 3rem;
    font-size: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.final-cta .cta-group {
    justify-content: center;
    margin-top: 2rem;
}

/* Final CTA styles handled above */

/* Footer - Completely Rebuilt */
.footer {
    background: #FFFFFF;
    color: #111827;
    padding: 3rem 0 2rem;
    border-top: 1px solid #E5E7EB;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 2rem;
    align-items: start;
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 40px;
    /* Removed filter to show original logo colors */
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-links a {
    color: #6B7280;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #2563EB;
}

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

.footer-contact a {
    color: #6B7280;
    text-decoration: none;
}

.footer-contact a:hover {
    color: #2563EB;
}

.footer-bottom {
    border-top: 1px solid #E5E7EB;
    padding-top: 2rem;
    text-align: center;
}

.copyright {
    color: #6B7280;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    h1 {
        font-size: 32px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .two-col {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-columns {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-contact {
        text-align: center;
    }
    
    .nav-links {
        display: none;
    }
    
    .cta-group {
        flex-direction: column;
        align-items: center;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials {
        grid-template-columns: 1fr;
    }
}

/* Smooth scroll offset for fixed header */
html {
    scroll-padding-top: 80px;
}

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* CTA Benefits Section */
.cta-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.benefit {
    text-align: center;
    padding: 2rem;
    background: #FFFFFF;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 1rem;
    display: block;
}

.benefit h3 {
    color: #111827;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.benefit p {
    color: #6B7280;
    font-size: 16px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .cta-benefits {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit {
        padding: 1rem;
    }
}

/* Cache control */
.no-cache {
    cache-control: no-cache, no-store, must-revalidate;
    pragma: no-cache;
    expires: 0;
}