/* ==========================================================================
   AgenWebsite Shipping Landing Page
   Static template styles — SEO/AEO optimized version
   ========================================================================== */

/* ---------- Variables ---------- */
.shipping-landing {
    --sl-primary: #ff6600;
    --sl-primary-hover: #e55b00;
    --sl-dark: #1a1a2e;
    --sl-text: #333;
    --sl-text-light: #666;
    --sl-gray-bg: #f8fafe;
    --sl-white: #fff;
    --sl-border: #e8e8e8;
    --sl-radius: 10px;
    --sl-radius-lg: 16px;
    --sl-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    --sl-shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
}

.shipping-landing * {
    box-sizing: border-box;
}

/* ---------- Utility: Container override ---------- */
.shipping-landing .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---------- Section Header (reusable) ---------- */
.sl-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.sl-section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--sl-text);
    margin-bottom: 16px;
}

.sl-section-header p {
    font-size: 16px;
    color: var(--sl-text-light);
    line-height: 1.7;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.sl-btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    border: 2px solid transparent;
    line-height: 1.4;
}

.sl-btn--primary {
    background: var(--sl-primary);
    color: #fff;
    border-color: var(--sl-primary);
}

.sl-btn--primary:hover {
    background: var(--sl-primary-hover);
    border-color: var(--sl-primary-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 102, 0, 0.3);
}

.sl-btn--outline {
    background: transparent;
    color: var(--sl-text);
    border-color: var(--sl-border);
}

.sl-btn--outline:hover {
    border-color: var(--sl-primary);
    color: var(--sl-primary);
    transform: translateY(-2px);
}

.sl-btn--block {
    display: block;
    width: 100%;
}

/* ==========================================================================
   Section 1: Hero
   ========================================================================== */
.sl-hero {
    position: relative;
    background: var(--sl-dark);
    color: #fff;
    padding: 80px 0 60px;
    overflow: hidden;
}

.sl-hero__bg-pattern {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.sl-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.sl-hero__title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
}

.sl-hero__rotating-text {
    color: var(--sl-primary);
    transition: opacity 0.4s ease;
    display: block;
}

.sl-hero__desc {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 30px;
}

.sl-hero__cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.sl-hero__cta .sl-btn--outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

.sl-hero__cta .sl-btn--outline:hover {
    border-color: var(--sl-primary);
    color: var(--sl-primary);
}

/* Screenshot frame */
.sl-screenshot {
    background: var(--sl-white);
    border-radius: var(--sl-radius);
    border: 1px solid var(--sl-border);
    overflow: hidden;
    box-shadow: var(--sl-shadow-lg);
}

.sl-screenshot__dots {
    display: flex;
    gap: 6px;
    padding: 12px 16px;
    background: #f5f5f5;
    border-bottom: 1px solid var(--sl-border);
}

.sl-screenshot__dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
}

.sl-screenshot__dots span:first-child { background: #ff5f57; }
.sl-screenshot__dots span:nth-child(2) { background: #ffbd2e; }
.sl-screenshot__dots span:nth-child(3) { background: #28c840; }

.sl-screenshot img {
    display: block;
    width: 100%;
    height: auto;
}

.sl-hero__image .sl-screenshot {
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   Section 2: Stats Bar
   ========================================================================== */
.sl-stats {
    background: var(--sl-primary);
    padding: 40px 0;
}

.sl-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.sl-stat__number {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 6px;
}

.sl-stat__label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

/* ==========================================================================
   Section 3: Courier Logos
   ========================================================================== */
.sl-couriers {
    padding: 60px 0;
    background: var(--sl-white);
}

.sl-couriers__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.sl-label {
    display: inline-block;
    color: var(--sl-primary);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
}

.sl-couriers__text h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--sl-text);
    line-height: 1.25;
    margin-bottom: 16px;
}

.sl-couriers__desc {
    font-size: 15px;
    color: var(--sl-text-light);
    line-height: 1.7;
}

.sl-logo-carousel {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.sl-logo-carousel__item {
    flex: 0 0 auto;
}

.sl-logo-carousel__item img {
    height: 48px;
    width: auto;
    filter: grayscale(0);
    transition: filter 0.3s;
}

.sl-logo-carousel__item img:hover {
    filter: grayscale(0) brightness(1.05);
}

/* ==========================================================================
   Section 4: How It Works
   ========================================================================== */
.sl-how-it-works {
    padding: 80px 0;
    background: var(--sl-gray-bg);
}

.sl-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.sl-step {
    flex: 1;
    max-width: 320px;
    text-align: center;
    padding: 0 20px;
}

.sl-step__number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--sl-primary);
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 16px rgba(255, 102, 0, 0.25);
}

.sl-step__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--sl-text);
    margin-bottom: 12px;
}

.sl-step__desc {
    font-size: 14px;
    color: var(--sl-text-light);
    line-height: 1.7;
}

.sl-step__connector {
    display: flex;
    align-items: center;
    padding-top: 20px;
    color: var(--sl-primary);
    font-size: 20px;
    flex-shrink: 0;
}

/* ==========================================================================
   Icon Grid Sections
   ========================================================================== */
.sl-icon-grid {
    padding: 80px 0;
}

.sl-icon-grid--light {
    background: var(--sl-gray-bg);
}

.sl-icon-grid__row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.sl-icon-box {
    text-align: center;
}

.sl-icon-box__icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--sl-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--sl-primary);
    transition: all 0.3s ease;
}

.sl-icon-box:hover .sl-icon-box__icon {
    background: var(--sl-primary);
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(255, 102, 0, 0.25);
}

.sl-icon-box__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--sl-primary);
    margin-bottom: 12px;
}

.sl-icon-box p {
    font-size: 14px;
    color: var(--sl-text-light);
    line-height: 1.7;
}

/* ==========================================================================
   Feature Sections (alternating image + content)
   ========================================================================== */
.sl-feature {
    padding: 80px 0;
}

.sl-feature--white {
    background: var(--sl-white);
}

.sl-feature--gray {
    background: var(--sl-gray-bg);
}

.sl-feature__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sl-feature__grid--reverse {
    direction: rtl;
}

.sl-feature__grid--reverse > * {
    direction: ltr;
}

.sl-feature__content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--sl-text);
    margin-bottom: 16px;
}

.sl-feature__intro {
    font-size: 15px;
    color: var(--sl-text-light);
    line-height: 1.7;
    margin-bottom: 28px;
}

.sl-feature__subgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.sl-feature__subgrid--3x2 {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.sl-subfeature__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--sl-primary);
    margin-bottom: 8px;
}

.sl-subfeature p {
    font-size: 14px;
    color: var(--sl-text-light);
    line-height: 1.6;
    margin: 0;
}

/* Screenshot images in feature sections */
.sl-feature__image .sl-screenshot {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sl-feature__image .sl-screenshot:hover {
    transform: translateY(-4px);
    box-shadow: var(--sl-shadow-lg);
}

/* ==========================================================================
   Pricing Section
   ========================================================================== */
.sl-pricing {
    padding: 80px 0;
    background: var(--sl-white);
}

.sl-pricing__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.sl-pricing__header h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--sl-text);
    margin-bottom: 16px;
}

.sl-pricing__header p {
    font-size: 16px;
    color: var(--sl-text-light);
    line-height: 1.7;
}

/* Pricing Cards Layout (uses existing .pricing-card from style.css) */
.sl-pricing__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
}

.sl-pricing__cards .single-pricing-table {
    margin: 0;
    width: 100%;
}

.sl-pricing__cards .pricing-card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.sl-pricing__cards .pricing-card .pricing-buttons {
    margin-top: auto;
}

/* Excluded feature styling in Lite card */
.pricing-feature--excluded {
    opacity: 0.45;
    text-decoration: line-through;
}

.pricing-feature--excluded .fa-times {
    color: #ccc;
}

/* Pricing cards — prevent overlap from featured card scale */
.sl-pricing__cards {
    position: relative;
    z-index: 1;
}

/* Everpro Compact Bottom Banner */
.sl-pricing__everpro {
    margin-top: 40px;
    background: #f0f7fb;
    border: 2px solid #d4e8f2;
    border-radius: 16px;
    padding: 28px 32px;
    position: relative;
    z-index: 0;
}

.sl-pricing__everpro-badge {
    position: absolute;
    top: -1px;
    right: 32px;
    background: #015C80;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 0 0 8px 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sl-pricing__everpro-inner {
    display: flex;
    align-items: center;
    gap: 40px;
}

.sl-pricing__everpro-left {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex: 1.2;
    min-width: 0;
}

.sl-pricing__everpro-logo {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: #015C80;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
}

.sl-pricing__everpro-info {
    min-width: 0;
}

.sl-pricing__everpro-title {
    font-size: 20px;
    font-weight: 700;
    color: #015C80;
    margin: 0 0 4px;
}

.sl-pricing__everpro-price {
    margin-bottom: 8px;
}

.sl-pricing__everpro-amount {
    font-size: 22px;
    font-weight: 800;
    color: #ff6600;
}

.sl-pricing__everpro-period {
    font-size: 14px;
    color: #6b7280;
    margin-left: 4px;
}

.sl-pricing__everpro-desc {
    font-size: 13px;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

.sl-pricing__everpro-right {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
}

.sl-pricing__everpro-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 20px;
}

.sl-pricing__everpro-highlights li {
    font-size: 13px;
    color: #1f2937;
    white-space: nowrap;
}

.sl-pricing__everpro-highlights .fa-circle-check {
    color: #22c55e;
    margin-right: 6px;
}

.sl-pricing__everpro-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.sl-pricing__everpro-cta .pricing-coupon {
    margin: 0;
}

.sl-pricing__everpro-cta .pricing-coupon-inner {
    background: #fff;
    border: 1px dashed #015C80;
    padding: 6px 14px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.sl-pricing__everpro-cta .coupon-label {
    font-size: 11px;
    color: #6b7280;
}

.sl-pricing__everpro-cta .coupon-code {
    font-size: 14px;
    font-weight: 800;
    color: #015C80;
    letter-spacing: 1px;
}

.sl-pricing__everpro-cta .coupon-description {
    font-size: 11px;
    color: #6b7280;
}

.sl-pricing__everpro-cta .pricing-cta {
    background: #015C80;
    color: #fff;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s;
}

.sl-pricing__everpro-cta .pricing-cta:hover {
    background: #014a66;
}

/* ==========================================================================
   Feature Comparison Table
   ========================================================================== */
.sl-comparison {
    padding: 80px 0;
    background: var(--sl-gray-bg);
}

.sl-comparison__table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.sl-comparison__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.sl-comparison__table thead th {
    padding: 18px 16px;
    text-align: center;
    font-weight: 700;
    font-size: 15px;
    color: var(--sl-text);
    background: #f8f9fa;
    border-bottom: 2px solid #e9ecef;
}

.sl-comparison__table thead th.sl-comparison__feature-col {
    text-align: left;
    width: 30%;
}

.sl-comparison__table thead th.sl-comparison__plan-col--featured {
    background: #ff6600;
    color: #fff;
}

.sl-comparison__group-row td {
    padding: 12px 16px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--sl-primary, #ff6600);
    background: #fff8f3;
    border-top: 1px solid #e9ecef;
}

.sl-comparison__table tbody tr:not(.sl-comparison__group-row) td {
    padding: 12px 16px;
    border-top: 1px solid #f0f0f0;
    text-align: center;
    vertical-align: middle;
}

.sl-comparison__feature-name {
    text-align: left !important;
    color: var(--sl-text);
    font-weight: 500;
}

.sl-comparison__cell--featured {
    background: #fff7f0;
}

.sl-comparison__check {
    color: #22c55e;
    font-size: 16px;
}

.sl-comparison__cross {
    color: #d1d5db;
    font-size: 16px;
}

.sl-comparison__text {
    font-size: 13px;
    color: var(--sl-text);
    font-weight: 600;
}

.sl-comparison__table tfoot td {
    padding: 20px 16px;
    text-align: center;
    border-top: 2px solid #e9ecef;
    background: #f8f9fa;
}

.sl-comparison__cta {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    color: var(--sl-primary, #ff6600);
    border: 2px solid var(--sl-primary, #ff6600);
    transition: all 0.2s;
}

.sl-comparison__cta:hover {
    background: var(--sl-primary, #ff6600);
    color: #fff;
}

.sl-comparison__cta--featured {
    background: #ff6600;
    color: #fff;
    border-color: #ff6600;
}

.sl-comparison__cta--featured:hover {
    background: #e55a00;
    border-color: #e55a00;
}

/* Mobile comparison — hidden on desktop */
.sl-comparison__mobile {
    display: none;
}

.sl-comparison__mobile-tabs {
    display: flex;
    gap: 0;
    border-radius: 10px;
    overflow: hidden;
    background: #e9ecef;
    margin-bottom: 20px;
}

.sl-comparison__mobile-tab {
    flex: 1;
    padding: 12px 8px;
    border: none;
    background: transparent;
    font-size: 13px;
    font-weight: 600;
    color: var(--sl-text-light);
    cursor: pointer;
    transition: all 0.2s;
}

.sl-comparison__mobile-tab--active {
    background: #ff6600;
    color: #fff;
}

.sl-comparison__mobile-panel {
    display: none;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.sl-comparison__mobile-panel--active {
    display: block;
}

.sl-comparison__mobile-plan-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: #f8f9fa;
    border-bottom: 2px solid #e9ecef;
}

.sl-comparison__mobile-plan-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--sl-text);
}

.sl-comparison__mobile-plan-price {
    font-size: 16px;
    font-weight: 800;
    color: #ff6600;
}

.sl-comparison__mobile-group {
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--sl-primary, #ff6600);
    background: #fff8f3;
    border-top: 1px solid #e9ecef;
}

.sl-comparison__mobile-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    border-top: 1px solid #f0f0f0;
}

.sl-comparison__mobile-feature {
    font-size: 14px;
    color: var(--sl-text);
}

.sl-comparison__mobile-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--sl-text);
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.sl-faq {
    padding: 80px 0;
    background: var(--sl-gray-bg);
}

.sl-faq__list {
    max-width: 800px;
    margin: 0 auto;
}

.sl-faq__item {
    background: var(--sl-white);
    border: 1px solid var(--sl-border);
    border-radius: var(--sl-radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.sl-faq__item:hover {
    box-shadow: var(--sl-shadow);
}

.sl-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--sl-text);
    line-height: 1.4;
    gap: 16px;
}

.sl-faq__question:hover {
    color: var(--sl-primary);
}

.sl-faq__icon {
    font-size: 14px;
    color: var(--sl-text-light);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.sl-faq__item--open .sl-faq__icon {
    transform: rotate(180deg);
    color: var(--sl-primary);
}

.sl-faq__answer {
    padding: 0 24px 20px;
}

.sl-faq__answer p {
    font-size: 15px;
    color: var(--sl-text-light);
    line-height: 1.8;
    margin: 0;
}

/* ==========================================================================
   SEO Bottom Article
   ========================================================================== */
.sl-seo-article {
    padding: 60px 0 80px;
    background: var(--sl-white);
    border-top: 1px solid #f0f0f0;
}

.sl-seo-article__content {
    max-width: 900px;
}

.sl-seo-article__content h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--sl-text);
    margin-bottom: 16px;
}

.sl-seo-article__content h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--sl-text);
    margin: 32px 0 12px;
}

.sl-seo-article__content p {
    font-size: 15px;
    color: var(--sl-text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.sl-seo-article--collapsed {
    max-height: 200px;
    overflow: hidden;
    position: relative;
}

.sl-seo-article--collapsed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(transparent, var(--sl-white));
    pointer-events: none;
}

.sl-seo-article__more {
    color: var(--sl-primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
}

.sl-seo-article__more:hover {
    text-decoration: underline;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

/* Tablet */
@media (max-width: 991px) {
    .sl-hero__grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .sl-hero__title {
        font-size: 32px;
    }

    .sl-hero__cta {
        justify-content: center;
    }

    .sl-hero__image {
        display: none;
    }

    .sl-stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .sl-couriers__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .sl-steps {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .sl-step {
        max-width: 400px;
    }

    .sl-step__connector {
        transform: rotate(90deg);
        padding: 0;
    }

    .sl-icon-grid__row {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .sl-feature__grid,
    .sl-feature__grid--reverse {
        grid-template-columns: 1fr;
        gap: 40px;
        direction: ltr;
    }

    .sl-feature__grid--reverse > .sl-feature__content {
        order: 1;
    }

    .sl-feature__grid--reverse > .sl-feature__image {
        order: 2;
    }

    .sl-pricing__cards {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .sl-pricing__cards .pricing-card.featured {
        transform: none;
    }

    .sl-pricing__cards .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    .sl-pricing__everpro-inner {
        flex-direction: column;
        gap: 24px;
    }

    .sl-pricing__everpro-left {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .sl-pricing__everpro-right {
        align-items: center;
        width: 100%;
    }

    .sl-pricing__everpro-highlights {
        grid-template-columns: 1fr 1fr;
        justify-items: center;
        width: 100%;
    }

    .sl-pricing__everpro-cta {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    .sl-pricing__everpro-cta .pricing-cta {
        width: 100%;
        text-align: center;
        max-width: 300px;
    }

    /* Comparison table — hide desktop, show mobile */
    .sl-comparison__table-wrap {
        display: none;
    }

    .sl-comparison__mobile {
        display: block;
    }
}

/* Mobile */
@media (max-width: 575px) {
    .sl-hero {
        padding: 50px 0 40px;
    }

    .sl-hero__title {
        font-size: 26px;
    }

    .sl-hero__desc {
        font-size: 15px;
    }

    .sl-btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .sl-stats {
        padding: 30px 0;
    }

    .sl-stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .sl-stat__number {
        font-size: 28px;
    }

    .sl-stat__label {
        font-size: 12px;
    }

    .sl-couriers__text h2 {
        font-size: 26px;
    }

    .sl-logo-carousel__item img {
        height: 36px;
    }

    .sl-section-header h2 {
        font-size: 24px;
    }

    .sl-step__number {
        width: 52px;
        height: 52px;
        font-size: 22px;
    }

    .sl-step__title {
        font-size: 17px;
    }

    .sl-icon-grid {
        padding: 50px 0;
    }

    .sl-icon-grid__row {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .sl-icon-box__icon {
        width: 64px;
        height: 64px;
        font-size: 22px;
    }

    .sl-icon-box__title {
        font-size: 15px;
    }

    .sl-feature {
        padding: 50px 0;
    }

    .sl-feature__content h2 {
        font-size: 24px;
    }

    .sl-feature__subgrid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .sl-pricing {
        padding: 50px 0;
    }

    .sl-pricing__header h2 {
        font-size: 24px;
    }

    .sl-pricing-card {
        padding: 28px 20px;
    }

    .sl-pricing-card__price {
        font-size: 32px;
    }

    .sl-pricing__everpro {
        padding: 24px 20px;
    }

    .sl-pricing__everpro-badge {
        right: 20px;
        font-size: 11px;
        padding: 5px 12px;
    }

    .sl-pricing__everpro-logo {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .sl-pricing__everpro-title {
        font-size: 18px;
    }

    .sl-pricing__everpro-amount {
        font-size: 20px;
    }

    .sl-pricing__everpro-highlights {
        grid-template-columns: 1fr;
    }

    .sl-pricing__everpro-highlights li {
        white-space: normal;
    }

    .sl-comparison {
        padding: 50px 0;
    }

    .sl-comparison__mobile-tab {
        font-size: 12px;
        padding: 10px 6px;
    }

    .sl-faq {
        padding: 50px 0;
    }

    .sl-faq__question {
        padding: 16px 20px;
        font-size: 15px;
    }

    .sl-faq__answer {
        padding: 0 20px 16px;
    }

    .sl-seo-article__content h2 {
        font-size: 22px;
    }

    .sl-seo-article__content h3 {
        font-size: 18px;
    }
}
