.recovery-hero {
    background-color: #f8f9fa;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container-or {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 50px;
}

/* Left Section Styling */
.content-left {
    flex: 1;
}

.tagline {
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    color: #333;
    margin-bottom: 10px;
}

.content-left h1 {
    color: #cc0000; /* Primary Red */
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.description {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Buttons */
.button-group {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.btn {
    padding: 12px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: 0.3s;
}

.btn img{
    margin-right: 5px;
}

.btn-red {
    background-color: #bb0000;
    color: white;
    border: 1px solid #bb0000;
    display: flex;
    align-items: center;
}

.btn-red:hover {
    background-color: #990000;
    color: white;
}

.btn-outline {
    background-color: #f0f2f5;
    color: #333;
    border: 1px solid #ddd;
}

.btn-outline:hover {
    background-color: #e2e6ea;
}

/* Trust Markers */
.trust-markers {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: #777;
}

/* Right Section Styling */
.content-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image-wrapper {
    padding: 40px;
    border-radius: 8px;
}

.image-wrapper img {
    height: auto;
    display: block;
    width: 30rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container-or {
        max-width: 970px;
    }
    .image-wrapper {
        padding: 0;
    }
}
@media (max-width: 768px) {
    .container-or {
        flex-direction: column;
        text-align: center;
        padding: 0 2rem;
    }
    .button-group {
        justify-content: center;
    }
    .trust-markers {
        justify-content: center;
        flex-wrap: wrap;
    }
    .image-wrapper{
        display: none;
    }
}
@media (max-width: 500px) {
    .content-right{
        display: none;
    }
}



/* trusted by */
.trusted-by {
    background-color: #fcfcfc; /* Very light gray background */
    padding: 60px 20px;
    border-bottom: 1px solid #e0e0e0; /* Subtle bottom border */
    text-align: center;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}

.trusted-title {
    font-size: 14px;
    color: #6a8095; /* Muted blue-gray text */
    letter-spacing: 1.5px;
    margin-bottom: 30px;
    font-weight: 600;
}

.logo-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px; /* Space between logos */
    flex-wrap: wrap;
}

.brand {
    font-weight: 700;
    font-size: 22px;
    color: #a0a0a0; /* Grayscale/silver look */
    letter-spacing: 1px;
    transition: color 0.3s ease;
    cursor: default;
}

/* Hover effect for a bit of interactivity */
.brand:hover {
    color: #555;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .logo-grid {
        gap: 30px;
    }
    .trusted-by{
        padding:2rem;
    }
    
    .brand {
        font-size: 18px;
    }
}


/* video-sectioncontainer */
/* Scoped to this section only */
.video-section-container {
    position: relative;
    padding: 60px 20px;
    background-color: #ffffff;
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
    text-align: center;
}

.video-section-container .video-content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.video-section-container .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.video-section-container .section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

.video-section-container .video-embed-container {
    position: relative;
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    /* Standard 16:9 Aspect Ratio */
    aspect-ratio: 16 / 9;
}

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

/* Responsive Adjustments */
@media (max-width: 768px) {
    .video-section-container .section-title { font-size: 1.8rem; }
    .video-section-container { padding: 40px 15px; }
}




/* features-section */
.features-section {
    padding: 80px 20px;
    background-color: #fff;
}

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

.header-feat {
    text-align: center;
    margin-bottom: 50px;
}

.header-feat h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.header-feat p {
    color: #666;
    font-size: 16px;
}

/* Grid Layout */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns on desktop */
    gap: 25px;
}

/* Card Styling */
.feature-card {
    border: 1px solid #eef0f2;
    border-radius: 12px;
    padding: 30px 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.icon-box {
    width: 45px;
    height: 45px;
    background-color: #fdf2f2; /* Light red tint */
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.icon {
    font-size: 18px;
    color: #cc0000;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.3;
}

.feature-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for tablets */
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr; /* 1 column for mobile */
    }
    .header-feat h2 {
        font-size: 26px;
    }
}



/* tech-specs */

.tech-specs {
    padding: 80px 20px;
    background-color: #fcfcfc;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.section-header p {
    color: #666;
    font-size: 15px;
}

/* Specs Card Styling */
.specs-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 10px 40px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.spec-row {
    display: flex;
    padding: 25px 0;
    border-bottom: 1px solid #eee;
    align-items: flex-start;
}

.spec-row:last-child {
    border-bottom: none;
}

/* Label (Red Text) */
.spec-label {
    flex: 0 0 250px; /* Fixed width for labels */
    color: #cc0000;
    font-weight: 700;
    font-size: 15px;
}

/* Value (Description) */
.spec-value {
    flex: 1;
    color: #333;
    font-size: 15px;
    line-height: 1.5;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .spec-row {
        flex-direction: column;
        padding: 20px 0;
    }
    
    .spec-label {
        flex: 0 0 auto;
        margin-bottom: 8px;
    }

    .specs-card {
        padding: 10px 20px;
    }
}



/* how-it-works */
.how-it-works { max-width: 1000px; margin: 50px auto; padding: 20px; text-align: center; }

/* Display Card */
.display-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  padding: 40px;
  margin-bottom: 50px;
  min-height: 300px;
}

.image-placeholder img {
  max-width: 100%;
  border: 1px solid #eee;
  border-radius: 4px;
}

/* Steps Buttons */
.steps-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.step-item {
  flex: 1;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.step-number {
  width: 50px;
  height: 50px;
  background: #333;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-weight: bold;
  font-size: 1.2rem;
}

.step-item h3 { font-size: 1.1rem; margin-bottom: 10px; }
.step-item p { font-size: 0.9rem; color: #666; line-height: 1.4; }

/* Active States */
.step-item.active .step-number { background: #d32f2f; }
.step-item.active h3 { color: #d32f2f   ; }


/* comparison-section */
.comparison-section {
    background-color: #000; /* Dark background as seen in image */
    padding: 80px 20px;
    color: #fff;
    text-align: center;
}

.comparison-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: 700;
}

.table-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
}

.version-table {
    width: 100%;
    border-collapse: collapse;
    color: #333;
    text-align: left;
}

.version-table th {
    background-color: #cc0000; /* Red Header */
    color: #fff;
    padding: 15px 25px;
    font-weight: 600;
    border-right: 1px solid rgba(255,255,255,0.2);
}

.version-table td {
    padding: 15px 25px;
    border-bottom: 1px solid #eee;
    border-right: 1px solid #eee;
    font-size: 14px;
    color: #000;
}

.version-table td:last-child, .version-table th:last-child {
    border-right: none;
}

.version-col {
    text-align: center;
    width: 20%;
}

.check {
    color: #28a745;
    font-weight: bold;
    font-size: 18px;
}

/* Highlighted Dark Row */
.highlight-row {
    background-color: #222;
    color: #fff;
    font-weight: 600;
}
.highlight-row td{ color:#fff}

/* Action Bar Styling */
.action-bar {
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    color: #333;
}

.guarantee {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.badge {
    background: #e10b0b;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.guarantee-text strong {
    font-size: 14px;
    display: block;
}

.guarantee-text p {
    font-size: 12px;
    color: #666;
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
}

.btn-green {
    background-color: #cc0000;
    color: #fff;
}
.btn-green:hover{
    background-color: #6e0f0f;
    color: #fff;
}

.btn-buy {
    border: 1px solid #cc0000;
    color: #333;
    display: flex;
    align-items: center;
}

.btn-buy:hover {
    background: #ec8f8f;
}

/* Responsive */
@media (max-width: 768px) {
    .action-bar {
        flex-direction: column;
        gap: 20px;
    }
}


/* Scoped container to prevent style bleeding */
.features-section-root {
    position: relative;
    padding: 80px 5%;
    background-color: #f8fafc;
    font-family: 'Segoe UI', system-ui, sans-serif;
    color: #333;
}

.features-section-root .header-group {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.features-section-root .header-group h1 {
    font-size: 2.5rem;
    font-weight: 800;
}

.features-section-root .header-group h1 span {
    color: #e11d48;
}

.features-section-root .main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Column Headings with Red Left Bar */
.features-section-root .column-heading {
    position: relative;
    padding-left: 15px;
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.features-section-root .column-heading::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 30px;
    background-color: #e11d48;
}

/* Solution Cards (Left) */
.features-section-root .solution-card {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    border-left: 4px solid #e11d48;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.features-section-root .card-icon {
    font-size: 2rem;
    margin-right: 20px;
}

.features-section-root .card-text h3 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
}

/* Formats Grid (Right) */
.features-section-root .formats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.features-section-root .format-card {
    background: #fff;
    padding: 30px 20px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.features-section-root .format-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

/* Safety Banner */
.features-section-root .safety-banner {
    background-color: #ecfdf5;
    border: 1px solid #a7f3d0;
    padding: 20px;
    border-radius: 10px;
    color: #065f46;
}

.features-section-root .banner-title {
    font-weight: 700;
    margin-bottom: 8px;
}

/* Responsive Tablet/Mobile */
@media (max-width: 992px) {
    .features-section-root .main-grid {
        grid-template-columns: 1fr;
    }
}



/* pricing-sections */
.pricing-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
    text-align: center;
}

.pricing-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.pricing-header p {
    color: #666;
    margin-bottom: 50px;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

/* Base Card Styling */
.pricing-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    /* padding: 40px 25px; */
    flex: 1;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    align-items: center;
}

.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 5px;
}

.subtitle {
    font-size: 13px;
    color: #888;
    margin-bottom: 30px;
}

.price {
    font-size: 42px;
    font-weight: 700;
    color: #cc0000;
    margin-bottom: 30px;
}

.features {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
    text-align: left;
        margin-left: 1rem;
}

.features li {
    font-size: 14px;
    color: #444;
    margin-bottom: 12px;
    line-height: 1.4;
}

/* Buttons */
.btn-outline, .btn-solid {
    display: block;
    padding: 12px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
    margin: 0.5rem 1rem;
}

.btn-outline {
    border: 1px solid #e0e0e0;
    color: #333;
}

.btn-outline:hover {
    background: #f8f8f8;
}

.btn-solid {
    background: #bb0000;
    color: #fff;
    box-shadow: 0 4px 10px rgba(187, 0, 0, 0.3);
    
}

/* Highlighted (Business) Plan */
.highlighted {
    border: 2px solid #cc0000;
    transform: scale(1.05);
    z-index: 2;
    padding-top: 0;
    overflow: hidden;
}

.popular-tag {
    background: #cc0000;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 0;
    margin-bottom: 30px;
}

/* Dark Top Borders (Corporate/Enterprise) */
.border-top-dark {
    border-top: 4px solid #000;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pricing-grid {
        flex-wrap: wrap;
    }
    .pricing-card {
        flex: 0 0 45%;
    }
}

@media (max-width: 600px) {
    .pricing-card {
        flex: 0 0 100%;
    }
}



/* TESTIMONIALS SECTION  */
/* Testimonials Section Scoped CSS */
.testimonials-section {
    padding: 80px 20px;
    background-color: #ffffff;
    
    color: #333;
}

.testimonials-section .inner-container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-section .section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.testimonials-section .section-header p {
    font-size: 16px;
    color: #666;
}

/* Grid Layout */
.testimonials-section .testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* Card Styling */
.testimonials-section .testimonial-card {
    flex: 1 1 220px; /* Responsive sizing */
    max-width: 280px;
    min-height: 320px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    color: #000;
}
.testimonial-card:hover {
    background-color: #262626; /* Dark charcoal */
    border: none;
    color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.testimonials-section .quote {
    font-size: 14px;
    font-style: italic;
    line-height: 1.6;

    margin-bottom: 20px;
}

.testimonials-section .author {
    font-size: 15px;
    font-weight: 700;
    
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .testimonials-section .testimonial-card {
        flex: 1 1 100%;
        max-width: 100%;
        min-height: auto;
    }
}

/* trust-logos-section */
/* Scoped Section Styling */
.trust-logos-section {
    padding: 60px 20px;
    background-color: #ffffff;
}

.trust-logos-section .inner-container {
    max-width: 1100px;
    margin: 0 auto;
}

.trust-logos-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.trust-logos-section .section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.trust-logos-section .section-header p {
    font-size: 15px;
    color: #666;
}

/* Logo Grid Layout */
.trust-logos-section .logo-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px 60px; /* Vertical and Horizontal spacing */
}

.trust-logos-section .logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-logos-section .logo-item img {
    max-height: 35px; /* Keeps logos consistent in height */
    width: auto;
    max-width: 150px;
    filter: grayscale(100%); /* Matches the subtle look in image */
    opacity: 0.6;
    transition: all 0.3s ease;
}

/* Interaction */
.trust-logos-section .logo-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .trust-logos-section .logo-grid {
        gap: 30px;
    }
    
    .trust-logos-section .logo-item {
        flex: 0 0 40%; /* Two logos per row on mobile */
    }

    .trust-logos-section .section-header h2 {
        font-size: 26px;
    }
}



/* payements section  */

.payment-section {
  padding: 40px 20px;
  text-align: center;
  color: #666;
  background-color: #fff;
}

.payment-title {
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.payment-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px; /* Space between logos */
  margin-bottom: 25px;
}

.payment-logos img {
  height: 30px; /* Adjust height based on your specific logo assets */
  width: auto;
  opacity: 0.9;
}

.payment-footer {
  font-size: 13px;
  color: #888;
}

.payment-footer strong {
  font-weight: 600;
}


