/* ===== Features Page Styles ===== */

/* ===== HERO SECTION ===== */
.feat-hero {
    position: relative;
    padding: 160px 0 80px;
    background: var(--header-top-bg);
    overflow: hidden;
    text-align: center;
}

.feat-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20"><circle cx="10" cy="10" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.5;
    z-index: 0;
}

.feat-hero .container {
    position: relative;
    z-index: 2;
}

/* Hero Background Shapes */
.feat-hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.feat-hero-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}

.feat-hero-circle-1 {
    width: 500px;
    height: 500px;
    top: -150px;
    right: -100px;
    animation: floatSlow 8s ease-in-out infinite;
}

.feat-hero-circle-2 {
    width: 300px;
    height: 300px;
    bottom: -80px;
    left: -60px;
    animation: floatSlow 6s ease-in-out infinite reverse;
}

.feat-hero-circle-3 {
    width: 200px;
    height: 200px;
    top: 40%;
    left: 20%;
    animation: floatSlow 10s ease-in-out infinite;
}

@keyframes floatSlow {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

/* Hero Content */
.feat-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.feat-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.feat-hero-badge i {
    font-size: 16px;
}

.feat-hero-content h1 {
    font-family: "Manrope", sans-serif;
    font-size: 56px;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}

.feat-gradient-text {
    background: linear-gradient(135deg, #fff 0%, #ffe0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feat-hero-content > p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 650px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

/* Hero Buttons */
.feat-hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.feat-btn-primary {
    background: #fff !important;
    color: #d7942e !important;
    border: 2px solid #fff !important;
    padding: 14px 36px !important;
    font-weight: 700 !important;
    border-radius: 50px !important;
    font-size: 16px !important;
    transition: all 0.3s ease !important;
}

.feat-btn-primary:hover {
    background: transparent !important;
    color: #fff !important;
    border-color: #fff !important;
}

.feat-btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.5) !important;
    color: #fff !important;
    background: transparent !important;
    padding: 14px 36px !important;
    font-weight: 600 !important;
    border-radius: 50px !important;
    font-size: 16px !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.feat-btn-outline:hover {
    background: #fff !important;
    color: #d7942e !important;
    border-color: #fff !important;
}

/* Hero Stats */
.feat-hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.feat-hero-stat {
    text-align: center;
}

.feat-hero-stat strong {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    font-family: "Manrope", sans-serif;
}

.feat-hero-stat span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
}

.feat-hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.25);
}

/* Hero Image */
.feat-hero-image {
    margin-top: 50px;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
}

.feat-hero-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.35);
}

/* ===== SCROLLING TICKER ===== */
.feat-ticker {
    background: var(--bg-color);
    padding: 20px 0;
    overflow: hidden;
    border-bottom: 1px solid var(--card-border);
    border-top: 1px solid var(--card-border);
}

.feat-ticker-track {
    display: flex;
    width: 100%;
    overflow: hidden;
}

.feat-ticker-content {
    display: flex;
    gap: 0;
    animation: tickerScroll 30s linear infinite;
    white-space: nowrap;
}

.feat-ticker-content span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 32px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-secondary);
    white-space: nowrap;
}

.feat-ticker-content span i {
    color: #d7942e;
    font-size: 16px;
}

[data-theme="dark"] .feat-ticker-content span i {
    color: #e8b923;
}

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== FEATURE CATEGORY SECTIONS ===== */
.feat-category-section {
    padding: 100px 0;
}

.feat-category-section.feat-category-alt {
    background: var(--pricing-bg);
}

.feat-category-row {
    display: flex;
    align-items: center;
    gap: 70px;
}

.feat-category-row.reverse {
    flex-direction: row-reverse;
}

.feat-category-content {
    flex: 1;
}

.feat-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(215, 148, 46, 0.12), rgba(232, 185, 35, 0.08));
    color: #d7942e;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(215, 148, 46, 0.2);
}

[data-theme="dark"] .feat-category-badge {
    color: #e8b923;
    background: linear-gradient(135deg, rgba(232, 185, 35, 0.15), rgba(215, 148, 46, 0.08));
    border-color: rgba(232, 185, 35, 0.25);
}

.feat-category-content h2 {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-color);
    margin-bottom: 16px;
    font-family: "Manrope", sans-serif;
}

.feat-category-desc {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 28px;
}

.feat-category-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
}

.feat-category-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.feat-check-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d7942e, #e8b923);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.feat-check-icon i {
    color: #fff;
    font-size: 12px;
}

.feat-category-list li strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 4px;
}

.feat-category-list li p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.feat-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #d7942e;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.feat-learn-more:hover {
    color: #b3771e;
    gap: 12px;
}

[data-theme="dark"] .feat-learn-more {
    color: #e8b923;
}

[data-theme="dark"] .feat-learn-more:hover {
    color: #d7942e;
}

/* Category Image */
.feat-category-image {
    flex: 1;
    position: relative;
}

.feat-category-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}

[data-theme="dark"] .feat-category-image img {
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.35);
}

.feat-category-image:hover img {
    transform: translateY(-6px);
}

/* ===== FEATURES GRID SECTION ===== */
.feat-grid-section {
    padding: 100px 0;
    background: #ffffff;
}

[data-theme="dark"] .feat-grid-section {
    background: var(--features-dark-bg);
}

.feat-grid-title {
    text-align: center;
    margin-bottom: 60px;
}

.feat-grid-title h6 {
    font-size: 14px;
    font-weight: 700;
    color: #d7942e;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

[data-theme="dark"] .feat-grid-title h6 {
    color: #e8b923;
}

.feat-grid-title h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-color);
    margin-bottom: 16px;
}

[data-theme="dark"] .feat-grid-title h2 {
    color: #ffffff;
}

.feat-grid-title p {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

[data-theme="dark"] .feat-grid-title p {
    color: #d1d1d1;
}

/* Grid */
.feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.feat-grid-card {
    background: var(--pricing-card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 36px 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feat-grid-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #d7942e, #e8b923);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feat-grid-card:hover::before {
    transform: scaleX(1);
}

.feat-grid-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px var(--card-hover-shadow);
}

.feat-grid-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(215, 148, 46, 0.12), rgba(232, 185, 35, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #d7942e;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

[data-theme="dark"] .feat-grid-icon {
    color: #e8b923;
    background: linear-gradient(135deg, rgba(232, 185, 35, 0.15), rgba(215, 148, 46, 0.08));
}

.feat-grid-card:hover .feat-grid-icon {
    background: linear-gradient(135deg, #d7942e, #e8b923);
    color: #fff;
    transform: scale(1.08);
}

.feat-grid-card h4 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-color);
}

[data-theme="dark"] .feat-grid-card h4 {
    color: #ffffff;
}

.feat-grid-card > p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

[data-theme="dark"] .feat-grid-card > p {
    color: #d1d1d1;
}

.feat-grid-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #d7942e;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.feat-grid-link:hover {
    gap: 10px;
    color: #b3771e;
}

[data-theme="dark"] .feat-grid-link {
    color: #e8b923;
}

[data-theme="dark"] .feat-grid-link:hover {
    color: #d7942e;
}

/* ===== WHY SECTION ===== */
.feat-why-section {
    padding: 100px 0;
    background: var(--pricing-bg);
}

.feat-why-row {
    display: flex;
    align-items: center;
    gap: 70px;
}

.feat-why-image {
    flex: 1;
}

.feat-why-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.12);
}

[data-theme="dark"] .feat-why-image img {
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.4);
}

.feat-why-content {
    flex: 1;
}

.feat-why-content h2 {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-color);
    margin-bottom: 16px;
    font-family: "Manrope", sans-serif;
}

.feat-why-content > p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.feat-why-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feat-why-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feat-why-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(215, 148, 46, 0.12), rgba(232, 185, 35, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #d7942e;
    transition: all 0.3s ease;
}

[data-theme="dark"] .feat-why-icon {
    color: #e8b923;
    background: linear-gradient(135deg, rgba(232, 185, 35, 0.15), rgba(215, 148, 46, 0.08));
}

.feat-why-item:hover .feat-why-icon {
    background: linear-gradient(135deg, #d7942e, #e8b923);
    color: #fff;
}

.feat-why-item h5 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-color);
}

.feat-why-item p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ===== STATS SECTION ===== */
.feat-stats-section {
    padding: 80px 0;
    background: #ffffff;
}

[data-theme="dark"] .feat-stats-section {
    background: var(--features-dark-bg);
}

.feat-stats-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feat-stat-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--pricing-card-bg);
    border-radius: 16px;
    border: 1px solid var(--card-border);
    transition: all 0.3s ease;
}

.feat-stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px var(--card-hover-shadow);
    border-color: #d7942e;
}

.feat-stat-card h3 {
    font-size: 48px;
    font-weight: 800;
    color: #d7942e;
    margin-bottom: 8px;
    font-family: "Manrope", sans-serif;
}

[data-theme="dark"] .feat-stat-card h3 {
    color: #e8b923;
}

.feat-stat-card p {
    font-size: 15px;
    color: var(--text-secondary);
    font-weight: 500;
    margin: 0;
}

[data-theme="dark"] .feat-stat-card p {
    color: #d1d1d1;
}

/* ===== CTA SECTION ===== */
.feat-cta {
    padding: 100px 0;
    background: var(--cta-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feat-cta::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    z-index: 0;
}

.feat-cta::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    z-index: 0;
}

.feat-cta-wrapper {
    position: relative;
    z-index: 1;
}

.feat-cta h2 {
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    font-family: "Manrope", sans-serif;
}

.feat-cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 550px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.feat-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.feat-btn-cta-primary {
    background: #fff !important;
    color: #d7942e !important;
    border: 2px solid #fff !important;
    padding: 14px 40px !important;
    font-weight: 700 !important;
    border-radius: 50px !important;
    font-size: 16px !important;
    transition: all 0.3s ease !important;
}

.feat-btn-cta-primary:hover {
    background: transparent !important;
    color: #fff !important;
    border-color: #fff !important;
    transform: scale(1.05) !important;
}

.feat-btn-cta-outline {
    border: 2px solid rgba(255, 255, 255, 0.5) !important;
    color: #fff !important;
    background: transparent !important;
    padding: 14px 40px !important;
    font-weight: 600 !important;
    border-radius: 50px !important;
    font-size: 16px !important;
    transition: all 0.3s ease !important;
}

.feat-btn-cta-outline:hover {
    background: #fff !important;
    color: #d7942e !important;
    border-color: #fff !important;
    transform: scale(1.05) !important;
}

.feat-cta-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}

.feat-cta-trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 500;
}

.feat-cta-trust span i {
    color: #fff;
    font-size: 16px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1199px) {
    .feat-hero-content h1 {
        font-size: 48px;
    }

    .feat-category-content h2 {
        font-size: 32px;
    }

    .feat-category-row,
    .feat-category-row.reverse {
        gap: 50px;
    }
}

@media (max-width: 991px) {
    .feat-hero {
        padding: 130px 0 60px;
    }

    .feat-hero-content h1 {
        font-size: 40px;
    }

    .feat-category-section {
        padding: 70px 0;
    }

    .feat-category-row,
    .feat-category-row.reverse {
        flex-direction: column;
        gap: 40px;
    }

    .feat-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feat-why-row {
        flex-direction: column;
        gap: 40px;
    }

    .feat-stats-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .feat-grid-section,
    .feat-why-section {
        padding: 70px 0;
    }
}

@media (max-width: 767px) {
    .feat-hero {
        padding: 110px 0 50px;
    }

    .feat-hero-content h1 {
        font-size: 34px;
    }

    .feat-hero-content > p {
        font-size: 16px;
    }

    .feat-hero-stats {
        gap: 20px;
    }

    .feat-hero-stat strong {
        font-size: 24px;
    }

    .feat-category-section {
        padding: 60px 0;
    }

    .feat-category-content h2 {
        font-size: 28px;
    }

    .feat-grid {
        grid-template-columns: 1fr;
    }

    .feat-grid-title h2 {
        font-size: 28px;
    }

    .feat-why-content h2 {
        font-size: 28px;
    }

    .feat-stats-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .feat-stat-card h3 {
        font-size: 36px;
    }

    .feat-cta h2 {
        font-size: 30px;
    }

    .feat-grid-section,
    .feat-why-section,
    .feat-stats-section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .feat-hero {
        padding: 100px 0 40px;
    }

    .feat-hero-content h1 {
        font-size: 28px;
    }

    .feat-hero-badge {
        font-size: 12px;
        padding: 8px 18px;
    }

    .feat-category-content h2 {
        font-size: 24px;
    }

    .feat-grid-title h2 {
        font-size: 24px;
    }

    .feat-why-content h2 {
        font-size: 24px;
    }

    .feat-cta h2 {
        font-size: 26px;
    }

    .feat-cta-trust {
        flex-direction: column;
        gap: 12px;
    }

    .feat-hero-stat-divider {
        display: none;
    }

    .feat-hero-stats {
        flex-direction: column;
        gap: 16px;
    }
}