@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500&display=swap');

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

h1, h2, h3, .main-heading, .section-title, .how-title, .dashboard-features-title, .testimonials-title, .partners-title, .step-title, .cta-title {
    font-family: "Marcellus", serif;
    font-weight: 400;
}

button,
.header-cta-button,
.submit-button,
.step-button,
.cta-submit-btn,
.mobile-sticky-cta,
.whatsapp-button {
    font-family: "Nunito Sans", sans-serif;
}

.reveal-up {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
    will-change: opacity, transform;
}

.reveal-up.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

.cta-right.reveal-up,
.cta-submit-btn.reveal-up {
    opacity: 1;
    transform: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: none;
    padding: 20px 0;
    position: relative;
    z-index: 10;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    display: block;
    width: 172px;
    height: auto;
}

.header-cta-button {
    background: #d97706;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.header-cta-button:hover {
    background: #b45309;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3);
}

/* Trusted Partners Carousel */
.trusted-partners {
    position: relative;
    z-index: 10;
    padding: 30px 0;
    background: none;
}

.partners-label {
    text-align: center;
    font-size: 13px;
    color: #666;
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.partners-carousel {
    overflow: hidden;
    position: relative;
}

.partners-mobile-carousel {
    display: none;
}

.partners-track {
    display: flex;
    gap: 60px;
    animation: scroll 30s linear infinite;
}

.partner-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.partner-item:hover {
    opacity: 1;
}

.partner-item img {
    height: 35px;
    object-fit: contain;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partners-carousel:hover .partners-track {
    animation-play-state: paused;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 60px 0;
    background: url('hero.png') no-repeat right bottom;
    background-size: cover;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0.95) 10%,
        rgba(255, 255, 255, 0.85) 20%,
        rgba(255, 255, 255, 0.7) 30%,
        rgba(255, 255, 255, 0.5) 40%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 70%
    );
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 2;
}

/* Left Side Content */
.hero-left {
    padding-right: 40px;
}

.subtitle {
    color: #d97706;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border-radius: 20px;
    border: 1px solid #d97706;
    background-color: rgba(217, 119, 6, 0.1);
    padding: 8px 16px;
    display: inline-block;
}

.main-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 64px;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.5px;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.highlight {
    color: #d97706;
}

.description {
    font-size: 22px;
    color: #555;
    margin-bottom: 40px;
    line-height: 28px;
}

/* Trust Badges */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 36px;
    margin-bottom: 40px;
    overflow: visible;
}

.badge {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #ffffff;
    border: 1px solid #EEE7DF;
    border-radius: 18px;
    padding: 18px 20px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.04);
    transition: all .3s ease;
}

.badge:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.07);
}

.badge i {
    width: 42px;
    height: 42px;
    min-width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #FFF6EA;
    color: #D78318;
    font-size: 18px;
}

.badge strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    color: #171717;
    margin-bottom: 4px;
}

.badge span {
    display: block;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #6B7280;
}

/* Social Proof */
.social-proof {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatars {
    display: flex;
}

.avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid white;
    margin-left: -10px;
}

.avatars img:first-child {
    margin-left: 0;
}

.social-proof p {
    font-size: 14px;
    color: #555;
}

/* Right Side Form */
.hero-right {
    display: flex;
    justify-content: center;
}

.form-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    width: 100%;
    max-width: 500px;
}

.form-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.3;
}

.highlight-orange {
    color: #d97706;
}

.form-subtitle {
    color: #666;
    margin-bottom: 20px;
    font-size: 14px;
}

/* Form Styles */
.signup-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.input-wrapper {
    position: relative;
}

.input-wrapper input,
.input-wrapper select {
    width: 100%;
    padding: 12px 45px 12px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s;
    background: #f9fafb;
}

.input-wrapper input:focus,
.input-wrapper select:focus {
    outline: none;
    border-color: #d97706;
    background: white;
}

.input-wrapper i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #d97706;
    font-size: 16px;
}

/* Custom Select Dropdown */
.custom-select {
    position: relative;
    width: 100%;
}

.select-selected {
    padding: 12px 45px 12px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 14px;
    background: #f9fafb;
    cursor: pointer;
    transition: all 0.3s;
    color: #666;
}

.custom-select.active .select-selected {
    border-color: #d97706;
    background: white;
}

.select-arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #d97706;
    font-size: 14px;
    pointer-events: none;
    transition: transform 0.3s;
}

.custom-select.active .select-arrow {
    transform: translateY(-50%) rotate(180deg);
}

.select-items {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 99;
    display: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.custom-select.active .select-items {
    display: block;
}

.select-items div {
    padding: 12px 15px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 14px;
    color: #333;
}

.select-items div:hover {
    background: #fef3c7;
    color: #d97706;
}

.select-items div.selected {
    background: #fef3c7;
    color: #d97706;
    font-weight: 600;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* Buttons */
.submit-button {
    background: #d97706;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 5px;
}

.submit-button:hover {
    background: #b45309;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(217, 119, 6, 0.3);
}

.divider {
    display: none;
}

.whatsapp-button {
    display: none;
}

.form-footer {
    text-align: center;
    color: #666;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 8px;
}

.form-footer i {
    color: #d97706;
}

/* Background Image - Removed as hero section now has background */
.hero-bg-image {
    display: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-left {
        padding-right: 0;
        text-align: center;
    }

    .main-heading {
        font-size: 42px;
    }

    .trust-badges {
        flex-wrap: wrap;
    }

    .social-proof {
        justify-content: center;
    }

    .hero-bg-image {
        width: 100%;
        opacity: 0.08;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .main-heading {
        font-size: 36px;
    }

    .form-card {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .trust-badges {
        flex-direction: column;
    }
    
    .badge {
        flex: 1 1 100%;
    }

    .form-title {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .main-heading {
        font-size: 28px;
    }

    .description {
        font-size: 16px;
    }

    .badge {
        padding: 12px;
    }

    .badge i {
        font-size: 24px;
    }
}


/* Why Homeowners Compare Section */
.why-compare {
    padding: 80px 0;
    background: white;
    margin-top: 50px;
}

.section-title {
    text-align: center;
    font-size: 30px;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 60px;
}

.reasons-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

.reason-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 180px;
    flex: 0 1 auto;
}

.reason-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reason-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.reason-title {
    font-size: 20px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.reason-desc {
    font-size: 17px;
    color: #666;
    line-height: 1.5;
}

/* Responsive for Why Compare Section */
@media (max-width: 1024px) {
    .reasons-grid {
        gap: 30px;
    }
    
    .reason-card {
        max-width: 160px;
    }
}

@media (max-width: 768px) {
    .why-compare {
        padding: 60px 0;
        margin-top: 40px;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .reasons-grid {
        gap: 30px;
    }
    
    .reason-card {
        max-width: 140px;
    }
    
    .reason-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .reason-title {
        font-size: 14px;
    }
    
    .reason-desc {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .reasons-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .reason-card {
        max-width: 200px;
    }
}


/* How InteriorKart Helps Section */
.how-it-works {
    padding: 90px 0 80px;
    background: white;
    margin-top: 50px;
}

.how-title {
    text-align: center;
    font-size: 30px;
    font-weight: 300;
    color: #111827;
    margin-bottom: 18px;
}

.how-subtitle {
    text-align: center;
    font-size: 15px;
    color: #374151;
    margin-bottom: 62px;
}

.steps-container {
    display: grid;
    grid-template-columns: 1fr 120px 1fr 120px 1fr;
    align-items: start;
    gap: 0;
}

.step-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 360px;
    margin: 0 auto;
}

.step-visual {
    width: 158px;
    height: 158px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.step-visual img {
    width: 88px;
    height: 88px;
    object-fit: contain;
}

.step-card-featured .step-visual img {
    width: 118px;
    height: 118px;
}

.step-number {
    font-size: 22px;
    color: #b98a45;
    margin-bottom: 10px;
}

.step-title {
    font-size: 25px;
    font-weight: 300;
    color: #111827;
    line-height: 1.2;
    margin-bottom: 18px;
}

.step-desc {
    font-size: 16px;
    color: #111827;
    line-height: 1.6;
    max-width: 320px;
}

.step-highlight {
    margin-top: 18px;
    font-size: 17px;
    line-height: 1.35;
    color: #111827;
    font-weight: 400;
    max-width: 310px;
}

.step-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 32px;
    min-width: 180px;
    padding: 14px 28px;
    border: 1px solid #c79a56;
    border-radius: 6px;
    color: #b98a45;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    background: #fff;
}

.step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 70px;
    min-height: 24px;
}

.connector-line {
    position: absolute;
    left: -112px;
    right: -112px;
    top: 69px;
    height: 2px;
    background-image: repeating-linear-gradient(
        to right,
        #b98a45 0 6px,
        transparent 6px 10px
    );
}

.connector-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #b98a45;
    position: absolute;
    left: 50%;
    top: 59px;
    transform: translateX(-50%);
    z-index: 1;
}

@media (max-width: 1200px) {
    .steps-container {
        grid-template-columns: 1fr 80px 1fr 80px 1fr;
    }

    .step-card {
        max-width: 280px;
    }

    .step-title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .how-it-works {
        padding: 60px 0;
        margin-top: 40px;
    }

    .how-title {
        font-size: 28px;
    }

    .how-subtitle {
        font-size: 15px;
        margin-bottom: 40px;
    }

    .steps-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .step-card {
        max-width: 300px;
    }

    .step-connector {
        display: none;
    }

    .step-title {
        font-size: 20px;
    }

    .step-desc {
        font-size: 16px;
    }
}


/* Dashboard Features Section */
.dashboard-features-section {
    padding: 80px 0;
    background: white;
    margin-top: 50px;
}

.dashboard-features-header {
    text-align: center;
    margin-bottom: 60px;
}

.dashboard-features-title {
    font-size: 30px;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.dashboard-features-subtitle {
    font-size: 15px;
    color: #666;
}

.dashboard-features-content {
    display: grid;
    grid-template-columns: 70% 30%;
    gap: 60px;
    align-items: center;
}

.dashboard-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 0;
    box-shadow: none;
}

.dashboard-features-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: #fef3c7;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d97706;
    font-size: 20px;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 20px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.feature-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
    .dashboard-features-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .dashboard-image {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .dashboard-features-section {
        padding: 60px 0;
    }
    
    .dashboard-features-header {
        margin-bottom: 40px;
    }
    
    .dashboard-features-title {
        font-size: 28px;
    }
    
    .dashboard-features-subtitle {
        font-size: 16px;
    }
    
    .dashboard-features-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .dashboard-image {
        max-width: 100%;
    }
    
    .dashboard-features-list {
        gap: 20px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 18px;
    }
    
    .feature-title {
        font-size: 20px;
    }
    
    .feature-desc {
        font-size: 16px;
    }
}


/* Tab Content Styles */
.tab-heading {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.tab-subheading {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

/* Comparison Table */
.comparison-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.comparison-row {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    border-bottom: 1px solid #e5e7eb;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row.header {
    background: #f8f9fa;
    font-weight: 700;
}

.comparison-cell {
    padding: 20px;
    text-align: center;
    border-right: 1px solid #e5e7eb;
}

.comparison-cell:first-child {
    text-align: left;
}

.comparison-cell:last-child {
    border-right: none;
}

.comparison-cell.best {
    background: #fef3c7;
    color: #d97706;
    font-weight: 600;
}

/* Quotes Grid */
.quotes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.quote-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.quote-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.quote-header h4 {
    font-size: 18px;
    color: #1a1a1a;
}

.quote-status {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.quote-status.received {
    background: #d1fae5;
    color: #065f46;
}

.quote-status.pending {
    background: #fef3c7;
    color: #92400e;
}

.quote-amount {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.quote-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.quote-detail {
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
}

.quote-actions {
    display: flex;
    gap: 10px;
}

.btn-secondary, .btn-primary {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    flex: 1;
}

.btn-secondary {
    background: #f8f9fa;
    color: #1a1a1a;
}

.btn-primary {
    background: #d97706;
    color: white;
}

.btn-secondary:disabled, .btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Discussions List */
.discussions-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.discussion-item {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    gap: 15px;
    position: relative;
}

.discussion-avatar {
    font-size: 48px;
    color: #d97706;
}

.discussion-content {
    flex: 1;
}

.discussion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.discussion-header h4 {
    font-size: 16px;
    color: #1a1a1a;
}

.discussion-time {
    font-size: 12px;
    color: #999;
}

.discussion-message {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.btn-reply {
    background: #f8f9fa;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    color: #d97706;
}

.unread-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #d97706;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

/* Recommendations */
.recommendation-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-bottom: 20px;
}

.recommendation-card.featured {
    border: 3px solid #d97706;
    position: relative;
}

.recommendation-badge {
    position: absolute;
    top: -12px;
    left: 30px;
    background: #d97706;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.recommendation-score {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin: 15px 0;
}

.recommendation-score .score {
    font-size: 48px;
    font-weight: 700;
    color: #d97706;
}

.recommendation-score .score-label {
    font-size: 14px;
    color: #666;
}

.recommendation-reasons {
    margin: 20px 0;
}

.reason-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 15px;
    color: #333;
}

.reason-item i {
    color: #10b981;
    font-size: 18px;
}

.recommendations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.btn-primary-large, .btn-secondary-large {
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border: none;
}

.btn-primary-large {
    background: #d97706;
    color: white;
}

.btn-secondary-large {
    background: #f8f9fa;
    color: #1a1a1a;
}

/* Documents Grid */
.documents-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.document-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 15px;
}

.document-card.upload {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    border: 2px dashed #d97706;
    background: #fef3c7;
}

.document-icon {
    font-size: 40px;
    color: #d97706;
}

.upload-icon {
    font-size: 48px;
    color: #d97706;
    margin-bottom: 10px;
}

.document-info {
    flex: 1;
}

.document-info h4 {
    font-size: 16px;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.document-info p {
    font-size: 13px;
    color: #666;
    margin-bottom: 5px;
}

.document-size {
    font-size: 12px;
    color: #999;
}

.document-actions {
    display: flex;
    gap: 8px;
}

.icon-btn {
    background: #f8f9fa;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    cursor: pointer;
    color: #666;
    font-size: 14px;
}

.icon-btn:hover {
    background: #e5e7eb;
    color: #1a1a1a;
}

.btn-upload {
    background: #d97706;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

/* Preferences Form */
.preferences-form {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.preference-section {
    margin-bottom: 30px;
}

.preference-section h4 {
    font-size: 18px;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.style-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.style-btn {
    padding: 10px 20px;
    border: 2px solid #e5e7eb;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    color: #666;
}

.style-btn.active {
    border-color: #d97706;
    background: #fef3c7;
    color: #d97706;
    font-weight: 600;
}

.color-options {
    display: flex;
    gap: 15px;
}

.color-box {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    cursor: pointer;
    border: 3px solid transparent;
}

.color-box.active {
    border-color: #d97706;
}

.budget-slider {
    padding: 20px 0;
}

.slider {
    width: 100%;
    height: 6px;
    border-radius: 5px;
    background: #e5e7eb;
    outline: none;
}

.budget-value {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: #d97706;
    margin-top: 15px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    cursor: pointer;
}

.feature-checkbox input {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.btn-save-preferences {
    width: 100%;
    padding: 15px;
    background: #d97706;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
}

/* Support Options */
.support-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.support-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    text-align: center;
}

.support-icon {
    font-size: 48px;
    color: #d97706;
    margin-bottom: 15px;
}

.support-card h4 {
    font-size: 18px;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.support-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.support-link {
    color: #d97706;
    font-weight: 600;
    text-decoration: none;
}

/* FAQ Section */
.faq-section {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.faq-section h4 {
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.faq-item {
    padding: 20px 0;
    border-bottom: 1px solid #e5e7eb;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.faq-answer {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Responsive for new content */
@media (max-width: 768px) {
    .comparison-row {
        grid-template-columns: 1fr;
    }
    
    .comparison-cell {
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
    }
    
    .quotes-grid,
    .recommendations-grid,
    .documents-grid,
    .support-options {
        grid-template-columns: 1fr;
    }
}


/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: white;
    margin-top: 50px;
}

.testimonials-title {
    text-align: center;
    font-size: 30px;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 60px;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.testimonial-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    display: flex;
    flex-direction: row;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-image {
    width: 150px;
    min-width: 150px;
    height: 100%;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    padding: 20px 22px 64px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.testimonial-text {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
    flex: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
    padding-right: 150px;
}

.testimonial-author strong {
    font-size: 17px;
    color: #1a1a1a;
    margin-bottom: 3px;
}

.testimonial-author span {
    font-size: 15px;
    color: #666;
}

.testimonial-savings {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 132px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.savings-label {
    font-size: 15px;
    color: #666;
    margin-bottom: 2px;
}

.savings-amount {
    font-size: 22px;
    font-weight: 400;
    color: #d97706;
    line-height: 1.15;
    white-space: nowrap;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.testimonial-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.testimonial-nav {
    display: none;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #6b7280;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

.testimonial-nav:disabled {
    opacity: 0.35;
    cursor: default;
}

.mobile-sticky-cta {
    display: none;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e5e7eb;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: #d97706;
    width: 30px;
    border-radius: 5px;
}

/* Responsive for Testimonials */
@media (max-width: 1024px) {
    .testimonials-slider {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .testimonial-card:last-child {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 28px 0 18px;
        margin-top: 12px;
    }
    
    .testimonials-title {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 14px;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 12px;
    }
    
    .testimonial-card {
        flex-direction: row;
        border-radius: 0;
        box-shadow: none;
        align-items: flex-start;
    }

    .testimonial-card {
        display: none;
    }

    .testimonial-card.is-active {
        display: flex;
    }
    
    .testimonial-card:last-child {
        max-width: 100%;
    }
    
    .testimonial-image {
        width: 82px;
        min-width: 82px;
        height: 104px;
        border-radius: 8px;
        overflow: hidden;
    }

    .testimonial-content {
        padding: 4px 0 0 14px;
    }

    .testimonial-text {
        font-size: 16px;
        line-height: 1.55;
        margin-bottom: 10px;
    }

    .testimonial-author {
        margin-bottom: 0;
    }

    .testimonial-author strong {
        font-size: 17px;
        margin-bottom: 4px;
    }

    .testimonial-author span {
        font-size: 15px;
    }

    .testimonial-savings {
        position: static;
        margin-top: 8px;
        align-items: flex-end;
    }

    .savings-label {
        font-size: 15px;
    }

    .savings-amount {
        font-size: 22px;
        line-height: 1.2;
    }

    .testimonial-pagination {
        gap: 12px;
        margin-top: 2px;
    }

    .testimonial-nav {
        display: inline-flex;
        width: 22px;
        height: 22px;
        font-size: 20px;
    }

    .slider-dots {
        gap: 10px;
        margin-top: 0;
    }

    .dot {
        width: 7px;
        height: 7px;
        background: #d1d5db;
    }

    .dot.active {
        width: 7px;
        border-radius: 50%;
        background: #111827;
    }

    .mobile-sticky-cta {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: calc(12px + env(safe-area-inset-bottom, 0px));
        z-index: 999;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 50px;
        padding: 13px 18px;
        border: 0;
        border-radius: 12px;
        background: #d97706;
        color: #fff;
        font-size: 14px;
        font-weight: 700;
        line-height: 1.2;
        box-shadow: 0 10px 24px rgba(217, 119, 6, 0.28);
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .mobile-sticky-cta:hover,
    .mobile-sticky-cta:focus,
    .mobile-sticky-cta:active {
        background: #d97706;
        color: #fff;
        transform: none;
        box-shadow: 0 10px 24px rgba(217, 119, 6, 0.28);
    }

    .mobile-sticky-cta.is-hidden {
        opacity: 0;
        pointer-events: none;
        transform: translateY(12px);
    }
}


/* Partners & CTA Section */
.partners-cta-section {
    padding: 80px 0;
    background: #f8f9fa;
    margin-top: 50px;
}

/* Partner Brands */
.partners-section {
    margin-bottom: 60px;
}

.partners-title {
    text-align: center;
    font-size: 30px;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 40px;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.partner-logo {
    opacity: 0.7;
    transition: opacity 0.3s;
}

.partner-logo:hover {
    opacity: 1;
}

.partner-logo img {
    height: 40px;
    object-fit: contain;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
    border-radius: 20px;
    padding: 50px;
    display: grid;
    grid-template-columns: 380px 1fr 400px;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.cta-left {
    display: flex;
    align-items: center;
    justify-content: center;
}

.laptop-mockup img {
    width: 380px;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.cta-center {
    color: white;
}

.cta-title {
    font-size: 30px;
    font-weight: 300;
    margin-bottom: 25px;
    line-height: 36px;
}

.cta-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #e5e7eb;
}

.cta-features i {
    color: #10b981;
    font-size: 16px;
}

.cta-right {
    background: white;
    padding: 25px;
    border-radius: 15px;
}

.cta-form-group {
    margin-bottom: 15px;
}

.cta-form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.cta-form-group input {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    background: #f9fafb;
}

.cta-form-group input:focus {
    outline: none;
    border-color: #d97706;
    background: white;
}

/* CTA Custom Select */
.cta-custom-select {
    position: relative;
    width: 100%;
}

.cta-select-selected {
    padding: 10px 35px 10px 12px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 13px;
    background: #f9fafb;
    cursor: pointer;
    transition: all 0.3s;
    color: #666;
}

.cta-custom-select.active .cta-select-selected {
    border-color: #d97706;
    background: white;
}

.cta-select-arrow {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #d97706;
    font-size: 12px;
    pointer-events: none;
    transition: transform 0.3s;
}

.cta-custom-select.active .cta-select-arrow {
    transform: translateY(-50%) rotate(180deg);
}

.cta-select-items {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    max-height: 180px;
    overflow-y: auto;
    z-index: 99;
    display: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.cta-custom-select.active .cta-select-items {
    display: block;
}

.cta-select-items div {
    padding: 10px 12px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 13px;
    color: #333;
}

.cta-select-items div:hover {
    background: #fef3c7;
    color: #d97706;
}

.cta-select-items div.selected {
    background: #fef3c7;
    color: #d97706;
    font-weight: 600;
}

.cta-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.cta-submit-btn {
    width: 100%;
    padding: 12px;
    background: #d97706;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 10px;
}

.cta-submit-btn:hover {
    background: #b45309;
}

.cta-whatsapp {
    text-align: center;
}

.cta-whatsapp span {
    display: block;
    font-size: 12px;
    color: #999;
    margin-bottom: 8px;
}

.cta-whatsapp-btn {
    width: 100%;
    padding: 10px;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cta-whatsapp-btn:hover {
    background: #1da851;
}

/* Trust Badges Bottom */
.trust-badges-bottom {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.trust-badge-item i {
    font-size: 32px;
    color: #d97706;
}

.trust-badge-item strong {
    display: block;
    font-size: 13px;
    color: #1a1a1a;
    margin-bottom: 3px;
}

.trust-badge-item span {
    font-size: 11px;
    color: #666;
}

/* Responsive */
@media (max-width: 1200px) {
    .cta-banner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cta-left {
        display: none;
    }
    
    .cta-right {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .partners-cta-section {
        padding: 10px 0 0;
        margin-top: 12px;
        background: #fff;
    }

    .partners-section {
        display: none;
    }
    
    .partners-title {
        font-size: 28px;
    }
    
    .partners-logos {
        gap: 20px;
    }
    
    .partner-logo img {
        height: 30px;
    }
    
    .cta-banner {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 18px 14px 16px;
        border-radius: 0;
        margin-bottom: 0;
        text-align: center;
        background: linear-gradient(180deg, #12263a 0%, #0d2234 100%);
    }
    
    .cta-title {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 0;
        color: #fff;
    }

    .cta-left,
    .cta-features,
    .cta-form-group,
    .cta-form-row,
    .cta-whatsapp,
    .cta-select-items,
    .cta-form-group label {
        display: none;
    }

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

    .cta-right {
        background: transparent;
        padding: 0;
        border-radius: 0;
        max-width: none;
        margin: 0;
    }

    .cta-form {
        margin: 0;
    }
    
    .trust-badges-bottom {
        display: none;
    }

    .cta-submit-btn {
        margin: 4px 0 0;
        padding: 13px 16px;
        font-size: 15px;
        border-radius: 8px;
        box-shadow: 0 6px 18px rgba(217, 119, 6, 0.35);
    }
}

@media (max-width: 768px) {
    body {
        background: #fff;
    }

    .container {
        padding: 0 14px;
    }

    .header {
        padding: 12px 0 8px;
    }

    .navbar {
        align-items: flex-start;
        position: relative;
    }

    .navbar::after {
        content: "\2630";
        font-size: 18px;
        line-height: 1;
        color: #222;
        margin-top: 4px;
    }

    .logo-image {
        width: 120px;
    }

    .header-cta-button {
        display: none;
    }

    .trusted-partners {
        padding: 8px 0 14px;
    }

    .partners-label {
        font-size: 9px;
        letter-spacing: 0.5px;
        margin-bottom: 10px;
        color: #8b7355;
        text-transform: none;
    }

    .partners-carousel {
        display: none;
    }

    .partners-mobile-carousel {
        display: block;
        overflow: hidden;
    }

    .partners-mobile-track {
        display: flex;
        width: max-content;
        gap: 8px;
        transition: transform 0.35s ease;
        touch-action: pan-y;
    }

    .partners-mobile-track .partner-item {
        display: flex;
        flex: 0 0 calc((100vw - 52px) / 2);
        opacity: 1;
        min-height: 64px;
        border: none;
        border-radius: 8px;
        background: #fff;
        box-shadow: none;
        padding: 8px 10px;
        align-items: center;
        justify-content: center;
    }

    .partners-mobile-track .partner-item img {
        height: 34px;
        max-width: 100%;
        width: auto;
        object-fit: contain;
    }

    .partners-mobile-dots {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 14px;
    }

    .partners-mobile-dots .dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #d1d5db;
    }

    .partners-mobile-dots .dot.active {
        width: 30px;
        border-radius: 5px;
        background: #d97706;
    }

    .hero {
        min-height: auto;
        padding: 10px 0 24px;
        background-size: 0;
        background-position: right top;
    }

    .hero::before {
        background: linear-gradient(
            180deg,
            rgba(255,255,255,1) 0%,
            rgba(255,255,255,0.98) 40%,
            rgba(255,255,255,0.95) 100%
        );
    }

    .hero-content {
        gap: 24px;
    }

    .hero-left {
        text-align: left;
        padding-right: 0;
    }

    .subtitle {
        font-size: 11px;
        letter-spacing: 0.5px;
        padding: 8px 12px;
        margin-bottom: 18px;
        border-radius: 18px;
    }

    .main-heading {
        font-size: 42px;
        line-height: 1.15;
        letter-spacing: -0.5px;
        margin-bottom: 14px;
        max-width: 100%;
    }

    .description {
        font-size: 16px;
        line-height: 1.4;
        margin-bottom: 22px;
        max-width: 100%;
    }

    .trust-badges {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-bottom: 22px;
        overflow: visible;
    }

    .badge {
        min-width: 0;
        white-space: normal;
        padding: 14px 12px;
        gap: 10px;
        border-radius: 8px;
        box-shadow: 0 4px 14px rgba(0,0,0,0.06);
        border: 1px solid #f1f1f1;
    }

    .badge i {
        font-size: 18px;
    }

    .badge strong {
        font-size: 15px;
        line-height: 1.3;
    }

    .badge span {
        font-size: 13px;
        line-height: 1.5;
    }

    .social-proof {
        justify-content: flex-start;
        gap: 12px;
        margin-top: 2px;
    }

    .avatars img {
        width: 34px;
        height: 34px;
        border-width: 2px;
        margin-left: -10px;
    }

    .avatars img:first-child {
        margin-left: 0;
    }

    .social-proof p {
        font-size: 12px;
        line-height: 1.45;
        max-width: 190px;
    }

    .hero-right {
        justify-content: stretch;
    }

    .form-card {
        max-width: none;
        padding: 14px 12px 12px;
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }

    .form-title {
        font-size: 28px;
        line-height: 1.25;
        text-align: center;
        margin-bottom: 2px;
    }

    .form-subtitle {
        font-size: 15px;
        text-align: center;
        margin-bottom: 10px;
    }

    .form-group {
        margin-bottom: 8px;
    }

    .form-group label {
        font-size: 14px;
        margin-bottom: 4px;
    }

    .input-wrapper input,
    .select-selected,
    .cta-select-selected,
    .cta-form-group input {
        padding: 10px 34px 10px 10px;
        font-size: 10px;
        border-radius: 8px;
    }

    .input-wrapper i,
    .select-arrow,
    .cta-select-arrow {
        right: 10px;
        font-size: 11px;
    }

    .submit-button,
    .cta-submit-btn {
        padding: 11px 12px;
        font-size: 11px;
        border-radius: 8px;
    }

    .divider {
        margin: 8px 0;
    }

    .whatsapp-button {
        padding: 10px 12px;
        font-size: 11px;
        border-radius: 8px;
    }

    .form-footer {
        font-size: 9px;
        margin-top: 8px;
    }

    .why-compare {
        padding: 24px 0 8px;
        margin-top: 0;
    }

    .section-title,
    .how-title,
    .dashboard-features-title,
    .testimonials-title,
    .partners-title {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 18px;
    }

    .section-title {
        text-align: center;
        max-width: 250px;
        margin: 0 auto 22px;
        font-size: 28px;
        line-height: 1.2;
    }

    .reasons-grid {
        gap: 20px;
    }

    .reason-card {
        width: 100%;
        max-width: 264px;
        padding: 0;
        display: grid;
        grid-template-columns: 42px 1fr;
        grid-template-areas:
            "icon title"
            "icon desc";
        gap: 14px;
        align-items: start;
        text-align: left;
        margin: 0 auto;
        box-shadow: none;
        background: transparent;
    }

    .reason-icon {
        grid-area: icon;
        width: 42px;
        height: 42px;
        padding: 0;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

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

    .reason-title {
        grid-area: title;
        font-size: 15px;
        line-height: 1.35;
        margin-bottom: 4px;
    }

    .reason-desc {
        grid-area: desc;
        font-size: 14px;
        line-height: 1.6;
        max-width: 186px;
    }

    .trust-badges {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 28px;
    }

    .badge {
        padding: 16px;
    }

    .view-how-btn {
        display: none;
    }
}
