/* ========================================
   MARKSY - Improved Home Page Styles
   Clean, User-Friendly, Easy to Read
   ======================================== */

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    background: linear-gradient(135deg, #00293b 0%, #003d52 50%, #001f2d 100%);
    padding: 80px 0 60px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 166, 156, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(64, 224, 208, 0.1) 0%, transparent 50%);
}

.hero__content {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
}

.hero__badge svg {
    width: 16px;
    height: 16px;
    color: #40e0d0;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero h1 span {
    color: #40e0d0;
}

.hero__subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    line-height: 1.6;
}

/* Search Box */
.search-box {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin-bottom: 32px;
}

.search-box__main {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0;
}

.search-box__input-group {
    flex: 1;
    display: flex;
    align-items: center;
    background: #f5f7f7;
    border: 2px solid #e0e7e7;
    border-radius: 12px;
    padding: 0 16px;
    transition: border-color 0.2s;
}

.search-box__input-group:focus-within {
    border-color: #008080;
    background: #fff;
}

.search-box__icon {
    width: 20px;
    height: 20px;
    color: #94a3a3;
    flex-shrink: 0;
}

.search-box__input {
    flex: 1;
    padding: 14px 12px;
    border: none;
    background: transparent;
    font-size: 1rem;
    color: #00293b;
}

.search-box__input::placeholder {
    color: #94a3a3;
}

.search-box__input:focus {
    outline: none;
}

.search-box__btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #c65102 0%, #a04000 100%);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.search-box__btn:hover {
    background: linear-gradient(135deg, #e06302 0%, #c65102 100%);
    transform: translateY(-1px);
}

.search-box__btn svg {
    width: 18px;
    height: 18px;
}

/* Advanced Search Link - Next to Button */
.search-box__advanced-link {
    font-size: 0.8125rem;
    color: #6b7a7a;
    text-decoration: underline;
    text-underline-offset: 2px;
    white-space: nowrap;
    flex-shrink: 0;
    padding: 8px 0;
}

.search-box__advanced-link:hover {
    color: #008080;
}

@media (max-width: 700px) {
    .search-box__main {
        flex-wrap: wrap;
    }
    
    .search-box__input-group {
        width: 100%;
        order: 1;
        margin-bottom: 12px;
    }
    
    .search-box__btn {
        flex: 1;
        justify-content: center;
        order: 2;
    }
    
    .search-box__advanced-link {
        order: 3;
        width: 100%;
        text-align: center;
        margin-top: 8px;
    }
}

/* Advanced Search Panel - Hidden (only shown on advanced search page) */
.search-box__advanced-panel {
    display: none;
}

.advanced-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

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

.advanced-field label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #4a5656;
    margin-bottom: 6px;
}

.advanced-field input,
.advanced-field select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e0e7e7;
    border-radius: 8px;
    font-size: 0.9375rem;
    color: #00293b;
}

.advanced-field input:focus,
.advanced-field select:focus {
    outline: none;
    border-color: #008080;
}

.field-help {
    display: block;
    font-size: 0.75rem;
    color: #94a3a3;
    margin-top: 4px;
}

.field-help a {
    color: #008080;
    text-decoration: underline;
}

.advanced-link {
    display: inline-block;
    font-size: 0.875rem;
    color: #008080;
    font-weight: 500;
}

.advanced-link:hover {
    text-decoration: underline;
}

/* Search Examples */
.search-box__examples {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 0.875rem;
}

.search-box__examples span {
    color: #6b7a7a;
}

.search-box__examples a {
    padding: 4px 12px;
    background: #f0f4f4;
    border-radius: 6px;
    color: #4a5656;
    transition: all 0.2s;
}

.search-box__examples a:hover {
    background: #008080;
    color: #fff;
}

/* Trust Items */
.hero__trust {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.trust-item svg {
    width: 16px;
    height: 16px;
    color: #40e0d0;
}

@media (max-width: 600px) {
    .hero__trust {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}

/* ========================================
   SECTION HEADERS
   ======================================== */

.section-header {
    margin-bottom: 48px;
}

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

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #008080;
    margin-bottom: 8px;
}

.section-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    color: #00293b;
    margin-bottom: 12px;
}

.section-header p {
    font-size: 1.0625rem;
    color: #6b7a7a;
    max-width: 600px;
}

.section-header--center p {
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   HOW IT WORKS
   ======================================== */

.how-it-works {
    padding: 80px 0;
    background: #f8fafa;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

@media (max-width: 900px) {
    .steps {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }
}

.step {
    position: relative;
}

.step__number {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #008080 0%, #006666 100%);
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.step__connector {
    display: none;
}

@media (min-width: 901px) {
    .step__connector {
        display: block;
        position: absolute;
        top: 24px;
        left: 72px;
        right: -32px;
        height: 2px;
        background: linear-gradient(90deg, #008080, #e0e7e7);
    }
    
    .step:last-child .step__connector {
        display: none;
    }
}

.step__content {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0, 41, 59, 0.08);
}

.step__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 128, 128, 0.08);
    border-radius: 12px;
    margin-bottom: 16px;
}

.step__icon svg {
    width: 28px;
    height: 28px;
    color: #008080;
}

.step__content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #00293b;
    margin-bottom: 12px;
}

.step__content > p {
    font-size: 0.9375rem;
    color: #6b7a7a;
    line-height: 1.6;
    margin-bottom: 20px;
}

.step__checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.step__checklist li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.875rem;
    color: #4a5656;
    margin-bottom: 8px;
}

.step__checklist svg {
    width: 16px;
    height: 16px;
    color: #10b981;
    flex-shrink: 0;
    margin-top: 2px;
    stroke-width: 3;
    fill: none;
    stroke: currentColor;
}

.step__time {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #f0f4f4;
    border-radius: 8px;
    font-size: 0.8125rem;
    color: #6b7a7a;
}

.step__time svg {
    width: 16px;
    height: 16px;
    color: #008080;
}

.step__time strong {
    color: #00293b;
}

/* CTA */
.how-it-works__cta {
    text-align: center;
}

.cta-note {
    font-size: 0.875rem;
    color: #6b7a7a;
    margin-top: 12px;
}

/* ========================================
   PRICING SECTION
   ======================================== */

.pricing {
    padding: 80px 0;
    background: #fff;
}

/* Quick Summary Cards - Clickable */
.pricing-summary {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}

@media (max-width: 900px) {
    .pricing-summary {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .pricing-summary {
        grid-template-columns: 1fr;
    }
}

.pricing-summary__item {
    display: flex;
    flex-direction: column;
    background: #f8fafa;
    border: 2px solid #e0e7e7;
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
    transition: all 0.2s;
    text-decoration: none;
    position: relative;
    cursor: pointer;
}

.pricing-summary__item:hover {
    border-color: #008080;
    box-shadow: 0 8px 24px rgba(0, 128, 128, 0.15);
    transform: translateY(-2px);
}

.pricing-summary__item--popular {
    border-color: #008080;
    background: rgba(0, 128, 128, 0.04);
}

.pricing-summary__item--premium {
    background: linear-gradient(135deg, #00293b 0%, #003d52 100%);
    border-color: #00293b;
    color: #fff;
}

.pricing-summary__item--premium:hover {
    border-color: #40e0d0;
}

.summary-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 12px;
    background: #008080;
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 20px;
    white-space: nowrap;
}

.pricing-summary__item--premium .summary-badge {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #00293b;
}

.summary-price {
    font-size: 2rem;
    font-weight: 800;
    color: #00293b;
}

.pricing-summary__item--premium .summary-price {
    color: #40e0d0;
}

.summary-name {
    font-size: 1rem;
    font-weight: 600;
    color: #00293b;
    margin: 4px 0;
}

.pricing-summary__item--premium .summary-name {
    color: #fff;
}

.summary-desc {
    font-size: 0.8125rem;
    color: #6b7a7a;
    margin-bottom: 12px;
}

.pricing-summary__item--premium .summary-desc {
    color: rgba(255, 255, 255, 0.7);
}

.summary-link {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #008080;
    margin-top: auto;
}

.pricing-summary__item:hover .summary-link {
    text-decoration: underline;
}

.pricing-summary__item--premium .summary-link {
    color: #40e0d0;
}

/* Pricing Table */
.pricing-table-container {
    overflow-x: auto;
    margin-bottom: 40px;
    border-radius: 16px;
    border: 1px solid #e0e7e7;
}

.pricing-table {
    width: 100%;
    min-width: 800px;
    border-collapse: collapse;
    font-size: 0.9375rem;
}

.pricing-table th,
.pricing-table td {
    padding: 16px 20px;
    text-align: center;
    border-bottom: 1px solid #e0e7e7;
}

.pricing-table th {
    background: #f8fafa;
    font-weight: 600;
}

.pricing-table th.feature-column {
    text-align: left;
    width: 35%;
}

.plan-header {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.plan-name {
    font-size: 1rem;
    font-weight: 700;
    color: #00293b;
}

.plan-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: #008080;
}

.plan-badge {
    display: inline-block;
    padding: 3px 10px;
    background: #008080;
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 20px;
    margin-bottom: 8px;
}

.plan-popular {
    background: rgba(0, 128, 128, 0.04);
}

.plan-premium {
    background: linear-gradient(180deg, #00293b 0%, #003d52 100%);
}

.plan-premium .plan-name {
    color: #fff;
}

.plan-premium .plan-price {
    color: #40e0d0;
}

.plan-premium .plan-badge {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #00293b;
}

/* Category Rows */
.category-row td {
    background: #f0f4f4;
    font-weight: 700;
    text-align: left !important;
    font-size: 0.875rem;
    color: #00293b;
    padding: 12px 20px;
}

.category-icon {
    margin-right: 8px;
}

.category-help {
    font-weight: 400;
    font-size: 0.8125rem;
    color: #6b7a7a;
    margin-left: 8px;
}

/* Feature Cells */
.feature-cell {
    text-align: left !important;
}

.feature-name {
    display: block;
    font-weight: 600;
    color: #00293b;
    margin-bottom: 2px;
}

.feature-desc {
    display: block;
    font-size: 0.8125rem;
    color: #6b7a7a;
    line-height: 1.4;
}

/* Check/X Icons */
.check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #dcfce7;
    color: #10b981;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.875rem;
}

.x {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #fee2e2;
    color: #ef4444;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.875rem;
}

.plan-premium .check {
    background: rgba(16, 185, 129, 0.2);
}

.plan-premium .x {
    background: rgba(239, 68, 68, 0.2);
}

/* CTA Row */
.cta-row td {
    padding: 24px 20px;
    background: #f8fafa;
}

.cta-row .plan-popular {
    background: rgba(0, 128, 128, 0.08);
}

.cta-row .plan-premium {
    background: #001f2d;
}

/* Pricing Notes */
.pricing-notes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (max-width: 700px) {
    .pricing-notes {
        grid-template-columns: 1fr;
    }
}

.pricing-note {
    background: #f8fafa;
    border-radius: 12px;
    padding: 24px;
}

.pricing-note h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #00293b;
    margin-bottom: 8px;
}

.pricing-note p {
    font-size: 0.9375rem;
    color: #4a5656;
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   DUAL SECTION (Company Search + Stats)
   ======================================== */

.dual-section {
    padding: 80px 0;
    background: #f8fafa;
}

.dual-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

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

.dual-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 41, 59, 0.08);
}

.dual-card--dark {
    background: linear-gradient(135deg, #00293b 0%, #003d52 100%);
    color: #fff;
}

.dual-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 128, 128, 0.1);
    border-radius: 12px;
    margin-bottom: 20px;
}

.dual-card__icon svg {
    width: 28px;
    height: 28px;
    color: #008080;
}

.dual-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: #00293b;
    margin-bottom: 12px;
}

.dual-card--dark h3 {
    color: #fff;
}

.dual-card > p {
    font-size: 0.9375rem;
    color: #6b7a7a;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Company Form */
.company-form {
    display: flex;
    gap: 0;
    margin-bottom: 20px;
}

.company-form input {
    flex: 1;
    padding: 14px 16px;
    border: 2px solid #e0e7e7;
    border-right: none;
    border-radius: 10px 0 0 10px;
    font-size: 0.9375rem;
}

.company-form input:focus {
    outline: none;
    border-color: #008080;
}

.company-form button {
    padding: 14px 24px;
    background: #008080;
    border: none;
    border-radius: 0 10px 10px 0;
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.company-form button:hover {
    background: #006666;
}

.company-examples span {
    font-size: 0.8125rem;
    color: #6b7a7a;
}

.company-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.company-tags a {
    padding: 6px 14px;
    background: #f0f4f4;
    border-radius: 6px;
    font-size: 0.8125rem;
    color: #4a5656;
    transition: all 0.2s;
}

.company-tags a:hover {
    background: #008080;
    color: #fff;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 28px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #40e0d0;
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    margin: 4px 0;
}

.stat-desc {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.btn--outline-white {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s;
}

.btn--outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   SERVICES SECTION - CAROUSEL
   ======================================== */

.services {
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
}

/* Carousel Wrapper */
.services-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.services-carousel {
    flex: 1;
    overflow: hidden;
    padding: 16px 0;
}

.services-track {
    display: flex;
    gap: 24px;
    transition: transform 0.4s ease;
}

/* Carousel Buttons */
.carousel-btn {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 2px solid #e0e7e7;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 10;
}

.carousel-btn:hover {
    border-color: #008080;
    background: #008080;
    color: #fff;
}

.carousel-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.carousel-btn:disabled:hover {
    background: #fff;
    border-color: #e0e7e7;
    color: inherit;
}

.carousel-btn svg {
    width: 20px;
    height: 20px;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 32px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    background: #e0e7e7;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
}

.carousel-dot:hover {
    background: #c5d0d0;
}

.carousel-dot.active {
    background: #008080;
    width: 24px;
    border-radius: 5px;
}

/* Service Cards */
.service-card {
    flex: 0 0 calc(25% - 18px);
    min-width: 280px;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 2px solid #e0e7e7;
    border-radius: 16px;
    padding: 32px 24px 24px;
    transition: all 0.2s;
    position: relative;
    text-decoration: none;
}

.service-card:hover {
    border-color: #008080;
    box-shadow: 0 8px 30px rgba(0, 128, 128, 0.12);
    transform: translateY(-4px);
}

/* Badge - Fixed overflow */
.service-card__badge {
    position: absolute;
    top: -12px;
    left: 20px;
    padding: 6px 14px;
    background: #008080;
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 20px;
    z-index: 1;
}

.service-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #008080 0%, #006666 100%);
    border-radius: 12px;
    margin-bottom: 20px;
}

.service-card__icon svg {
    width: 28px;
    height: 28px;
    color: #fff;
}

.service-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #00293b;
    margin-bottom: 10px;
}

.service-card > p {
    font-size: 0.875rem;
    color: #6b7a7a;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.service-card__meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 16px;
    border-top: 1px solid #e0e7e7;
    margin-bottom: 12px;
}

.service-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: #008080;
}

.service-time {
    font-size: 0.8125rem;
    color: #6b7a7a;
}

.service-card__link {
    font-size: 0.875rem;
    font-weight: 600;
    color: #008080;
}

.service-card:hover .service-card__link {
    text-decoration: underline;
}

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

/* Responsive */
@media (max-width: 1200px) {
    .service-card {
        flex: 0 0 calc(33.333% - 16px);
    }
}

@media (max-width: 900px) {
    .service-card {
        flex: 0 0 calc(50% - 12px);
    }
    
    .carousel-btn {
        display: none;
    }
    
    .services-carousel-wrapper {
        gap: 0;
    }
    
    .services-carousel {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .services-carousel::-webkit-scrollbar {
        display: none;
    }
    
    .service-card {
        scroll-snap-align: start;
    }
}

@media (max-width: 600px) {
    .service-card {
        flex: 0 0 calc(100% - 48px);
        min-width: 260px;
    }
}

/* ========================================
   GUARANTEE SECTION
   ======================================== */

.guarantee {
    padding: 80px 0;
    background: linear-gradient(135deg, #00293b 0%, #003d52 100%);
}

.guarantee__inner {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .guarantee__inner {
        flex-direction: column;
        text-align: center;
    }
}

.guarantee__icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(64, 224, 208, 0.15);
    border-radius: 50%;
    flex-shrink: 0;
}

.guarantee__icon svg {
    width: 40px;
    height: 40px;
    color: #40e0d0;
}

.guarantee__content {
    flex: 1;
}

.guarantee__content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.guarantee__content > p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

.guarantee__features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 32px;
}

@media (max-width: 900px) {
    .guarantee__features {
        justify-content: center;
    }
}

.guarantee__feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
}

.guarantee__feature svg {
    width: 18px;
    height: 18px;
    color: #40e0d0;
    stroke-width: 3;
}

.guarantee__cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.btn--white {
    background: #fff;
    color: #00293b;
    padding: 16px 32px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.2s;
}

.btn--white:hover {
    background: #f0f4f4;
}

.guarantee__phone {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.guarantee__phone a {
    color: #40e0d0;
    font-weight: 600;
}

/* ========================================
   TESTIMONIALS
   ======================================== */

.testimonials {
    padding: 80px 0;
    background: #f8fafa;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

.testimonial {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0, 41, 59, 0.06);
}

.testimonial__rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.testimonial__rating span:first-child {
    color: #FFB800;
    font-size: 1.125rem;
    letter-spacing: 2px;
}

.rating-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: #4a5656;
}

.testimonial__text {
    font-size: 0.9375rem;
    color: #4a5656;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial__author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #008080 0%, #006666 100%);
    border-radius: 50%;
    font-size: 0.875rem;
    font-weight: 700;
    color: #fff;
}

.author-name {
    display: block;
    font-weight: 600;
    color: #00293b;
}

.author-title {
    display: block;
    font-size: 0.8125rem;
    color: #6b7a7a;
}

.testimonial__verified {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: #10b981;
}

.testimonial__verified svg {
    width: 14px;
    height: 14px;
    stroke-width: 3;
}

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

.rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.rating-stars {
    color: #FFB800;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.rating-score {
    font-size: 1.5rem;
    font-weight: 800;
    color: #00293b;
}

.rating-count {
    font-size: 0.875rem;
    color: #6b7a7a;
}

/* ========================================
   FAQ SECTION
   ======================================== */

.faq {
    padding: 80px 0;
    background: #fff;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.faq-item {
    background: #f8fafa;
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: #00293b;
    text-align: left;
    cursor: pointer;
    transition: color 0.2s;
}

.faq-question:hover {
    color: #008080;
}

.faq-question svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #008080;
    transition: transform 0.2s;
}

.faq-item.active .faq-question svg {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 24px 24px;
}

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

.faq-answer p {
    font-size: 0.9375rem;
    color: #4a5656;
    line-height: 1.7;
    margin-bottom: 12px;
}

.faq-answer ul {
    margin: 12px 0;
    padding-left: 20px;
}

.faq-answer li {
    font-size: 0.9375rem;
    color: #4a5656;
    line-height: 1.7;
    margin-bottom: 6px;
}

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

/* ========================================
   FINAL CTA
   ======================================== */

.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #008080 0%, #006666 100%);
}

.final-cta__inner {
    text-align: center;
    color: #fff;
}

.final-cta h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    margin-bottom: 12px;
}

.final-cta > p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.final-cta__buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.final-cta .btn--white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.final-cta .btn--white svg {
    width: 18px;
    height: 18px;
}

.final-cta .btn--outline-white {
    padding: 16px 32px;
    font-size: 1rem;
}

.final-cta__note {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.final-cta__note a {
    color: #fff;
    font-weight: 600;
}

/* ========================================
   CONTAINER NARROW
   ======================================== */

.container--narrow {
    max-width: 800px;
}
