/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary-orange: #f46828;
    --text-black: #000000;
    --text-gray: #494949;
    --text-light-gray: #8e8e8e;
    --text-medium-gray: #6d6d6d;
    --bg-white: #ffffff;
    --bg-light: #f8f8f8;
    --bg-cream: #faf9f9;
    --bg-feature: #fcfcfc;
    --border-gray: #d2d2d2;
    --comparison-without: #b6b6b6;
    --comparison-with: #f46828;
    /* Typography */
    --font-family: 'Outfit', sans-serif;
    /* Spacing */
    --container-max-width: 1440px;
    --container-padding: 80px;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-light);
    color: var(--text-black);
    overflow-x: hidden;
    position: relative;
}

ol, ul {
    padding: 0px;
}

/* Initial state */
section {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

    /* When visible */
    section.fade-up-active {
        opacity: 1;
        transform: translateY(0);
    }

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Background Blur Decorations */
.blur-decoration {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.10);
    pointer-events: none;
    z-index: 0;
}

.blur-1 {
    width: 79px;
    height: 130px;
    border-radius: 536px;
    top: 1227px;
    left: 0;
}

.blur-2 {
    width: 79px;
    height: 130px;
    border-radius: 536px;
    top: 1255px;
    left: 0;
}

.blur-3 {
    width: 135px;
    height: 130px;
    border-radius: 536px;
    top: 1261px;
    right: 6px;
}

.blur-4 {
    width: 133px;
    height: 146px;
    filter: blur(220.4px);
    background-color: #f46828;
    top: 1271px;
    right: 0;
}

.blur-5 {
    width: 95px;
    height: 143px;
    border-radius: 325px;
    top: 2033px;
    right: 0;
}

.blur-6 {
    width: 118px;
    height: 134px;
    border-radius: 325px;
    top: 2151px;
    left: 0;
}

.blur-7 {
    width: 134px;
    height: 134px;
    border-radius: 325px;
    top: 2183px;
    left: 3px;
}

.blur-8 {
    width: 117px;
    height: 130px;
    border-radius: 536px;
    top: 3295px;
    left: 0;
}

.blur-9 {
    width: 135px;
    height: 130px;
    border-radius: 536px;
    top: 3327px;
    right: 13px;
}

/* Button Styles */
.btn {
    padding: 14px 15px;
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 600;
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: var(--primary-orange);
    color: var(--bg-white);
}

    /*.btn-primary:hover {
        background-color: #d85620;
        transform: scale(1.05);
    }*/

.btn-outline {
    background-color: transparent;
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
}

    .btn-outline:hover {
        background-color: var(--primary-orange);
        color: var(--bg-white);
    }

.btn-outline-orange {
    background-color: transparent;
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
}

.btn-outline-black {
    background-color: transparent;
    color: black;
    border: 2px solid black;
}


    .btn-outline-black:hover {
        color: white;
        background-color: black;
        border: 2px solid black;
    }


.btn-outline-orange:hover {
    background-color: var(--primary-orange);
    color: var(--bg-white);
}

/* Header Styles */
.header {
    background-color: var(--bg-cream);
    padding: 24px 0;
    position: relative;
    z-index: 100;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.navbar-logo img {
    height: 49px;
    width: 131px;
    object-fit: cover;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 16px 26px;
    border: 1px solid var(--border-gray);
    border-radius: 8px;
}

.nav-link {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

    .nav-link.active {
        color: var(--bg-white);
        font-weight: 500;
        background-color: var(--primary-orange);
        padding: 8px 16px;
        border-radius: 8px;
    }


.navbar-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    border-radius: 16px;
    background-color: var(--bg-white);
    position: relative;
    cursor: pointer;
}

.selected-language {
    display: flex;
    align-items: center;
    gap: 8px;
}

.language-selector img:first-child {
    width: 30px;
    height: 24px;
    border-radius: 4px;
}

.language-selector span {
    font-size: 12px;
    font-weight: 400;
    color: #333333;
    line-height: 15px;
}

.language-selector .chevron {
    width: 11px;
}

.language-dropdown {
    position: absolute;
    top: 110%;
    right: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 10px;
    display: none;
    min-width: 150px;
    z-index: 999;
}

    .language-dropdown.active {
        display: block;
    }

.language-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    border-radius: 6px;
    transition: 0.2s;
}

    .language-option:hover {
        background: #f3f3f3;
    }

    .language-option img,
    .selected-language img {
        width: 22px;
        height: 16px;
        object-fit: cover;
        border-radius: 2px;
    }

/* Hero Section */
.hero {
    /* full width orange gradient */
    background: linear-gradient(180deg, #faf9f9 0%, #f3d7c8 45%, #f0c9b7 70%, #faf9f9 100%);
    padding: 120px 0 0; /* more top spacing like design */
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 36px;
    margin-bottom: 80px;
    padding: 0; /* remove boxed padding */
}


.hero-title {
    font-size: 60px;
    font-weight: 600;
    line-height: 71px;
    color: var(--text-black);
    max-width: 937px;
    margin: 0 auto;
}

.hero-subtitle {
    font-size: 28px;
    font-weight: 400;
    line-height: 34px;
    color: var(--text-gray);
    max-width: 764px;
    margin: 0 auto;
}

.hero-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: center;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    margin-top: 64px;
}

    .hero-image img {
        width: 100%;
        max-width: 983px;
        height: auto;
        border-radius: 16px;
    }

.hero-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 79px;
    background: linear-gradient(180deg, rgba(255,255,255,0) 5.29%, rgba(74,73,73,0.4) 51.18%, rgba(0,0,0,0.4) 75.24%);
    pointer-events: none;
}

/* Trusted By Section */
.trusted-by {
    padding: 40px 0;
    background-color: var(--bg-light);
    position: relative;
    z-index: 1;
}

.section-subtitle {
    font-size: 34px;
    font-weight: 600;
    line-height: 41px;
    color: var(--text-medium-gray);
    text-align: center;
    margin-bottom: 24px;
}

.company-logos {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .company-logos img {
        max-width: 100%;
        height: auto;
    }

/* Company Logos Slider */
.company-logos-wrapper {
    overflow: hidden;
    width: 100%;
}

.company-logos-slider {
    position: relative;
    width: 100%;
}

.company-logos-track {
    display: flex;
    animation: slide 20s linear infinite;
    width: 200%;
}

    .company-logos-track img {
        width: 50%;
        height: auto;
        object-fit: contain;
        padding: 0 20px;
    }

@keyframes slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Core Features Section */
.core-features {
    padding: 60px 20px;
    background: linear-gradient(180deg, #faf9f9 0%, #f0ebe8 50%, #faf9f9 100%);
    position: relative;
    z-index: 1;
    overflow: visible;
}

@media (max-width: 768px) {
    .core-features {
        padding: 40px 15px;
    }
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .section-header {
        gap: 16px;
        margin-bottom: 30px;
        padding: 0 15px;
    }
}

.section-title {
    font-size: 48px;
    font-weight: 600;
    line-height: 54px;
    color: var(--text-black);
    text-align: center;
}

@media (max-width: 1024px) {
    .section-title {
        font-size: 40px;
        line-height: 48px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 32px;
        line-height: 40px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 24px;
        line-height: 32px;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 0;
    position: relative;
    z-index: 1;
}

@media (max-width: 1024px) {
    .features-grid {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.features-list {
    display: flex;
    flex-direction: column;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background-color: #faf9f9;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .feature-item {
        gap: 10px;
        padding: 10px 12px;
    }

        .feature-item span {
            font-size: 14px;
        }
}

.feature-item:hover {
    transform: translateX(8px);
    background-color: #f5f5f5;
    border-color: var(--primary-orange);
    box-shadow: 0 2px 8px rgba(244, 104, 40, 0.08);
}

.feature-item img {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.feature-item span {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: var(--text-black);
}

.features-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 3px solid var(--primary-orange);
    box-shadow: 0 8px 24px rgba(244, 104, 40, 0.15);
    width: 100%;
}

    .image-wrapper img {
        width: 100%;
        height: auto;
        display: block;
    }

@media (max-width: 768px) {
    .image-wrapper {
        border-radius: 16px;
        border-width: 2px;
    }
}

.video-wrapper {
    position: relative;
    border-radius: 24px;
    aspect-ratio: 16/9;
    width: 100%;
    overflow: hidden;
    border: 3px solid var(--primary-orange);
    box-shadow: 0 8px 24px rgba(244, 104, 40, 0.15);
}

    .video-wrapper video,
    .video-wrapper iframe {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

@media (max-width: 768px) {
    .video-wrapper {
        border-radius: 16px;
        border-width: 2px;
        aspect-ratio: 16/9;
    }
}


.image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(95, 91, 91, 0.05);
    filter: blur(5.7px);
    pointer-events: none;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background-color: var(--bg-light);
    position: relative;
    z-index: 1;
}

/* CTA Decorations */
.cta-decoration {
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

    .cta-decoration img {
        width: 250px;
        height: 250px;
        opacity: 0.8;
    }

.cta-bottom-left {
    bottom: -80px;
    left: -80px;
}

.cta-bottom-right {
    bottom: -80px;
    right: -80px;
}

.cta-section .section-title {
    max-width: 1190px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Comparison Section */
.comparison-section {
    padding: 60px 0 120px;
    background-color: var(--bg-light);
    position: relative;
    z-index: 1;
}

/* Comparison Decorations */
.comparison-decoration {
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

    .comparison-decoration img {
        width: 100px;
        height: auto;
        opacity: 0.8;
    }

.comparison-bottom-left {
    bottom: 100px;
    left: 50px;
}

.comparison-bottom-right {
    bottom: 100px;
    right: 100px;
}

.comparison-wrapper {
    position: relative;
    padding: 60px 81px 40px;
    background-image: url('public/comparison-bg.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.comparison-headers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 100px;
}

.comparison-header {
    font-size: 30.6px;
    font-weight: 600;
    line-height: 45.49px;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
    border-radius: 60px;
    width: 70%;
    margin-left: 80px;
    margin-top: 36px;
}

    /* Without SIGNINQ Header */
    .comparison-header.without {
        color: #b5b5b5;
        background: rgba(182, 182, 182, 0.2);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(182, 182, 182, 0.3);
        /* 🔑 KEY PART */
        border-radius: 9999px;
        padding: 14px 36px;
        font-weight: 600;
        text-align: center;
    }


        .comparison-header.without:hover {
            background-color: rgba(230, 230, 230, 0.7);
            transition: all 0.3s ease;
        }

    /* With SIGNINQ Header */
    .comparison-header.with {
        color: var(--comparison-with); /* your Primary/300 */
        /* Fill: F46828 @ 20% */
        background: rgba(244, 104, 40, 0.20);
        /* Glass effect */
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        /* Stroke (subtle glass edge) */
        border: 1.5px solid rgba(244, 104, 40, 0.30);
        /* Corner radius: 63 */
        border-radius: 63px;
        /* Typical pill spacing */
        padding: 14px 36px;
        font-weight: 600;
        text-align: center;
        /* Optional but matches Figma glass depth */
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 8px 24px rgba(244, 104, 40, 0.18);
    }


        .comparison-header.with:hover {
            background-color: rgba(244, 104, 40, 0.15);
            transition: all 0.3s ease;
        }

.comparison-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px; /* responsive safe */
}

.comparison-column {
    display: flex;
    flex-direction: column;
    gap: 56px;
}

.comparison-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

    .comparison-item img {
        width: 36px;
        height: 36px;
        flex-shrink: 0;
        margin-top: 4px;
    }

.comparison-text h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-black);
    margin-bottom: 8px;
}

.comparison-text p {
    font-size: 20px;
    font-weight: 400;
    line-height: 26px;
    color: var(--text-gray);
}

/* Star Decorations */
.star-decoration {
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

    .star-decoration img {
        width: 220px;
        height: 220px;
        filter: blur(10px) brightness(1.1);
        opacity: 0.6;
    }

.comparison-decoration img {
    filter: blur(10px) brightness(1.1);
    opacity: 0.6;
}

.star-top-left {
    top: -80px;
    left: -80px;
}

.star-top-right {
    top: -80px;
    right: -80px;
}

.star-bottom-left {
    bottom: -80px;
    left: -80px;
}

.star-bottom-right {
    bottom: -80px;
    right: -80px;
}

/* Top Left Decoration */
.star-top-left {
    position: absolute;
    top: -80px;
    left: -5px;
    width: 100px;
    height: 220px;
    z-index: 0;
    pointer-events: none;
}

    .star-top-left img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

/* Top Right Decoration */
.star-top-right {
    position: absolute;
    top: -80px;
    right: -5px;
    width: 100px;
    height: 220px;
    z-index: 0;
    pointer-events: none;
}

    .star-top-right img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

/* Bottom Left Decoration */
.star-bottom-left {
    position: absolute;
    bottom: -80px;
    left: -10px;
    width: 100px;
    height: 220px;
    z-index: 0;
    pointer-events: none;
}

    .star-bottom-left img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

/* Bottom Right Decoration */
.star-bottom-right {
    position: absolute;
    bottom: -80px;
    right: 0px;
    width: 100px;
    height: 220px;
    z-index: 0;
    pointer-events: none;
}

    .star-bottom-right img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

@media (max-width: 1200px) {
    :root {
        --container-padding: 40px;
    }

    .features-grid {
        gap: 40px;
    }

    .comparison-wrapper {
        padding: 60px 40px;
    }

    .comparison-content {
        gap: 60px;
    }
}

@media (max-width: 968px) {
    .navbar {
        flex-wrap: wrap;
    }

    .navbar-menu {
        order: 3;
        width: 100%;
        justify-content: center;
    }

    .hero-title {
        font-size: 48px;
        line-height: 56px;
    }

    .hero-subtitle {
        font-size: 24px;
        line-height: 30px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    /*.comparison-headers {
    grid-template-columns: 1fr;
    gap: 24px;
  }*/

    /*.comparison-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }*/

    .section-title {
        font-size: 36px;
        line-height: 42px;
    }

    /* make wrapper a vertical grid */
    .comparison-wrapper {
        display: grid;
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 32px 16px;
        background-image: none;
    }

    /* assign areas */
    .comparison-headers {
        display: contents;
    }

    .comparison-content {
        display: contents;
    }

    /* order manually */
    .comparison-header.without {
        order: 1;
    }

    .comparison-column.left {
        order: 2;
    }

    .comparison-header.with {
        order: 3;
    }

    .comparison-column.right {
        order: 4;
    }

    /* hide decorations */
    .comparison-decoration,
    .star-decoration {
        display: none;
    }

    /* spacing */
    .comparison-column {
        margin-bottom: 32px;
    }

    .comparison-header {
        width: 100%;
        margin: 0;
    }
}

@media (max-width: 640px) {
    :root {
        --container-padding: 20px;
    }

    .navbar {
        display: flex;
        flex-direction: row;
        padding-left: 30px;
        padding-right: 30px;
        gap: 16px;
    }

    .navbar-menu {
        flex-wrap: wrap;
        gap: 12px;
    }

    .navbar-actions {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-title {
        font-size: 36px;
        line-height: 42px;
    }

    .hero-subtitle {
        font-size: 20px;
        line-height: 26px;
    }

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .feature-item {
        gap: 12px;
        padding: 12px;
    }

        .feature-item span {
            font-size: 18px;
            line-height: 24px;
        }

    .section-title {
        font-size: 28px;
        line-height: 34px;
    }

    .comparison-wrapper {
        padding: 30px 20px;
    }

    .comparison-header {
        width: 100%;
        max-width: 420px;
        margin: 36px auto 0; /* centered */
    }

    .comparison-item {
        flex-direction: column;
    }

    .comparison-text h3 {
        font-size: 18px;
    }

    .comparison-text p {
        font-size: 16px;
        line-height: 22px;
    }
}
/* ================= CTA ================= */


/* ================= FEATURE HIGHLIGHT ================= */

/* ================= Feature Highlight Section ================= */
.feature-highlight {
    padding: 60px 0 120px 0;
    background-color: #f0f4f8;
    position: relative;
}

/* Hero Section */
.feature-hero {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    padding: 90px 40px !important;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.15);
    margin-bottom: 0;
}

/* Cards Container for Overlap */
.cards-container {
    position: relative;
    margin-top: -80px;
    padding-bottom: 40px;
    z-index: 10;
}

.feature-hero h2 {
    font-weight: 700;
    line-height: 1.4;
    color: #ffffff;
    margin-bottom: 30px;
}

.feature-hero .btn {
    background-color: #1f1f1f;
    color: #ffffff;
    border: none;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 28px !important;
    transition: all 0.3s ease;
}

    .feature-hero .btn:hover {
        background-color: #333333;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

/* Feature Cards */
.feature-card {
    background: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

   /* .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    }*/

    .feature-card h5 {
        font-size: 18px;
        font-weight: 700;
        color: #1f1f1f;
        margin-bottom: 15px;
    }

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

/* Icon Box */
.icon-box {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 20px;
}

/* Show More Button */
.btn-outline-orange {
    color: #ff6b35;
    border: 2px solid #ff6b35;
    background-color: transparent;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 28px !important;
    transition: all 0.3s ease;
}

    .btn-outline-orange:hover {
        background-color: #ff6b35;
        color: #ffffff;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
    }

/* ================= Responsive Design ================= */
@media (max-width: 768px) {
    .feature-highlight {
        padding: 50px 0 100px 0;
    }

    .cards-container {
        margin-top: -30px;
    }

    .feature-hero {
        padding: 40px 30px !important;
    }

        .feature-hero h2 {
            font-size: 22px;
            margin-bottom: 20px;
        }

    .feature-card {
        padding: 25px;
        margin-bottom: 20px;
    }

        .feature-card h5 {
            font-size: 16px;
        }

        .feature-card p {
            font-size: 13px;
        }
}

@media (max-width: 576px) {
    .feature-highlight {
        padding: 40px 0 90px 0;
    }

    .cards-container {
        margin-top: -60px;
    }

    .feature-hero {
        padding: 30px 20px !important;
        border-radius: 20px;
    }

        .feature-hero h2 {
            font-size: 18px;
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .feature-hero .btn {
            font-size: 12px;
            padding: 8px 20px !important;
        }

    .feature-card {
        padding: 20px;
    }

        .feature-card h5 {
            font-size: 15px;
        }

        .feature-card p {
            font-size: 12px;
        }

    .icon-box {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .btn-outline-orange {
        font-size: 12px;
        padding: 8px 20px !important;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.rounded-4 {
    border-radius: 30px;
}

.fw-bold {
    font-weight: 700;
}

.fw-semibold {
    font-weight: 600;
}

.text-white {
    color: #ffffff;
}

.text-muted {
    color: #666666;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.p-5 {
    padding: 3rem;
}

.py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

/* ================= PRICING SECTION ================= */
.pricing-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.pricing-header {
    margin-bottom: 50px;
}

.pricing-title {
    font-size: 36px;
    font-weight: 700;
    color: #1f1f1f;
    margin-bottom: 15px;
}

.pricing-subtitle {
    font-size: 20px;
    color: #666666;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Pricing Tabs */
.pricing-tabs-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.nav-tabs {
    border-bottom: 2px solid #e0e0e0;
}

    .nav-tabs .nav-link {
        color: #666666;
        border: none;
        background-color: transparent;
        padding: 10px 30px;
        font-weight: 600;
        font-size: 14px;
        transition: all 0.3s ease;
        border-bottom: 3px solid transparent;
        margin-bottom: -2px;
    }

        .nav-tabs .nav-link:hover {
            color: #ff6b35;
            border-bottom-color: #ff6b35;
        }

        .nav-tabs .nav-link.active {
            color: #ff6b35;
            background-color: transparent;
            border-bottom-color: #ff6b35;
        }

/* Pricing Cards */
.pricing-card {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

 /*   .pricing-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    }
*/
    .pricing-card.featured {
        border: 3px solid #ff6b35;
        box-shadow: 0 10px 40px rgba(255, 107, 53, 0.15);
        transform: scale(1.05);
    }

        /*.pricing-card.featured:hover {
            box-shadow: 0 20px 50px rgba(255, 107, 53, 0.25);
        }*/

.recommended-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ff6b35;
    color: #ffffff;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-header-card {
    display: flex;
    align-items: flex-start;
    gap: 22px;
}

/* circle badge */
.plan-badge {
    width: 72px;
    height: 72px;
    min-width: 72px;
    border-radius: 50%;
    background: #f6e8df;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .plan-badge svg {
        width: 34px;
        height: 34px;
        color: #f46a2b;
    }

.pricing-header-card i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: #ff6b35;
}

.pricing-plan-name {
    font-size: 30px;
    font-weight: 700;
    color: #111;
    margin: 0 0 10px 0;
}

.pricing-desc {
    font-size: 12px;
    color: #6b6b6b;
    margin-bottom: 22px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 25px;
}

.currency {
    font-size: 16px;
    color: #666666;
}

.amount {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
}

.period {
    font-size: 18px;
    color: #9a9a9a;
}

/* Pricing Button */
.btn-pricing {
    background-color: #ff6b35;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 12px 24px !important;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

    .btn-pricing:hover {
/*        background-color: #e55a1f;
*/        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
        color: #ffffff;
    }
/* WRAPPER */
.pricing-tabs {
    background: #e9e9e9;
    padding: 6px;
    border-radius: 18px;
    display: inline-flex;
    border: none;
    gap: 0;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.08);
}

    /* REMOVE BOOTSTRAP DEFAULTS */
    .pricing-tabs .nav-link {
        border: none !important;
        border-radius: 14px;
        background: transparent;
        color: #333;
        font-weight: 600;
        padding: 12px 42px;
        transition: 0.25s;
        position: relative;
    }

    /* DIVIDER LINES */
    .pricing-tabs .nav-item:not(:last-child) .nav-link::after {
        content: "";
        position: absolute;
        right: 0;
        top: 20%;
        height: 60%;
        width: 1px;
        background: #d5d5d5;
    }

    /* ACTIVE ORANGE PILL */
    .pricing-tabs .nav-link.active {
        background: linear-gradient(180deg, #ff7a2f, #f16421);
        color: #fff;
        box-shadow: 0 3px 8px rgba(0,0,0,0.2), inset 0 2px 0 rgba(255,255,255,0.3);
    }

    /* HOVER */
    .pricing-tabs .nav-link:hover:not(.active) {
        background: #f3f3f3;
    }

/* BADGE */
.save-badge {
    position: absolute;
    top: -10px;
    right: 10px;
    font-size: 11px;
    background: #ff7a2f;
    color: white;
    padding: 3px 8px;
    border-radius: 6px;
    font-weight: 600;
    z-index: 9999;
}
/* Pricing Features */
.pricing-features {
    flex-grow: 1;
}

.features-title {
    font-size: 12px;
    font-weight: 700;
    color: #1f1f1f;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .features-list li {
        font-size: 13px;
        color: #666666;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

.feature-checkbox {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border: 2px solid #ff6b35;
    border-radius: 2px;
    background-color: #ff6b35;
    position: relative;
    flex-shrink: 0;
}

    .feature-checkbox::after {
        content: '✓';
        color: #ffffff;
        font-size: 12px;
        font-weight: bold;
        line-height: 1;
    }

/* ================= PRICING SECTION ================= */
.pricing-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.pricing-header {
    margin-bottom: 50px;
}

.pricing-title {
    font-size: 36px;
    font-weight: 700;
    color: #1f1f1f;
    margin-bottom: 15px;
}

.pricing-subtitle {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Pricing Tabs */
.pricing-tabs-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.nav-tabs {
    border-bottom: 2px solid #e0e0e0;
}

    .nav-tabs .nav-link {
        color: #666666;
        border: none;
        background-color: transparent;
        padding: 10px 30px;
        font-weight: 600;
        font-size: 14px;
        transition: all 0.3s ease;
        border-bottom: 3px solid transparent;
        margin-bottom: -2px;
    }

        .nav-tabs .nav-link:hover {
            color: #ff6b35;
            border-bottom-color: #ff6b35;
        }

        .nav-tabs .nav-link.active {
            color: #ff6b35;
            background-color: transparent;
            border-bottom-color: #ff6b35;
        }

/* Pricing Cards */
.pricing-card {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

    .pricing-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    }

    .pricing-card.featured {
        border: 3px solid #ff6b35;
        box-shadow: 0 10px 40px rgba(255, 107, 53, 0.15);
        transform: scale(1.05);
    }

        .pricing-card.featured:hover {
            box-shadow: 0 20px 50px rgba(255, 107, 53, 0.25);
        }

.recommended-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ff6b35;
    color: #ffffff;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-header-card {
    display: flex;
    align-items: start;
    gap: 12px;
    margin-bottom: 20px;
}

.plan-icon {
    width: 28px;
    height: 28px;
    color: #ff6b35;
    flex-shrink: 0;
    display: block;
}

.pricing-plan-name {
    font-size: 15px;
    font-weight: 700;
    color: #1f1f1f;
    margin: 0;
    letter-spacing: 0.3px;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 25px;
}

.currency {
    font-size: 16px;
    color: #666666;
}

.amount {
    font-size: 42px;
    font-weight: 700;
    color: #1f1f1f;
}

.period {
    font-size: 14px;
    color: #999999;
}

/* Pricing Button */
.btn-pricing {
    background-color: #ff6b35;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 12px 24px !important;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

    .btn-pricing:hover {
        background-color: #e55a1f;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
        color: #ffffff;
    }

/* Pricing Features */
.pricing-features {
    flex-grow: 1;
}

.features-title {
    font-size: 12px;
    font-weight: 700;
    color: #1f1f1f;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .features-list li {
        font-size: 13px;
        color: #666666;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

.feature-checkbox {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border: 2px solid #ff6b35;
    border-radius: 2px;
    background-color: #ff6b35;
    position: relative;
    flex-shrink: 0;
}

    .feature-checkbox::after {
        content: '✓';
        color: #ffffff;
        font-size: 12px;
        font-weight: bold;
        line-height: 1;
    }



/* ================= Pricing Section Responsive ================= */
@media (max-width: 1024px) {
    .pricing-card.featured {
        transform: scale(1.02);
    }
}

@media (max-width: 768px) {
    .pricing-title {
        font-size: 28px;
    }

    .pricing-subtitle {
        font-size: 13px;
    }

    .pricing-card {
        padding: 25px;
    }

        .pricing-card.featured {
            transform: scale(1);
        }

    .pricing-toggle {
        flex-wrap: wrap;
    }

    .toggle-btn {
        padding: 8px 20px;
        font-size: 12px;
    }

    .amount {
        font-size: 32px;
    }

    .features-list li {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .pricing-section {
        padding: 50px 0;
    }

    .pricing-title {
        font-size: 22px;
    }

    .pricing-subtitle {
        font-size: 12px;
    }

    .pricing-header {
        margin-bottom: 30px;
    }

    .pricing-toggle {
        gap: 10px;
        margin-bottom: 30px;
    }

    .toggle-btn {
        padding: 6px 15px;
        font-size: 11px;
    }

    .pricing-card {
        padding: 20px;
        margin-bottom: 20px;
    }

    .pricing-plan-name {
        font-size: 14px;
    }

    .amount {
        font-size: 24px;
    }

    .period {
        font-size: 12px;
    }

    .btn-pricing {
        padding: 10px 20px !important;
        font-size: 12px;
    }

    .features-title {
        font-size: 11px;
    }

    .features-list li {
        font-size: 11px;
        margin-bottom: 8px;
    }

    .recommended-badge {
        font-size: 10px;
        padding: 4px 15px;
    }
}

.icon-badge {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    /* icon sizing */
    .icon-badge img {
        width: 42px; /* adjust if needed */
        height: 42px;
        object-fit: contain;
    }


/* YOUR COLORS */
.star {
    background: #FEF0EA;
}

.stack {
    background: #FFEBED;
}

.crown {
    background: #FCF8E6;
}

.briefcase {
    background: #F1F9FF;
}
/* Utility Classes */
.text-center {
    text-align: center;
}

.rounded-4 {
    border-radius: 30px;
}

.fw-bold {
    font-weight: 700;
}

.fw-semibold {
    font-weight: 600;
}

.text-white {
    color: #ffffff;
}

.text-muted {
    color: #666666;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.p-5 {
    padding: 3rem;
}

.py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

/* ================= TRUST ================= */
.trust-section {
    padding: 100px 0;
    background: #f3f3f3;
}

.trust-title {
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: #000;
}

.trust-button-container {
    text-align: center;
    margin-bottom: 50px;
}

.trust-btn {
    background: #F26522;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    transition: .3s;
}

    .trust-btn:hover {
/*        background: #E55A1F;
*/        color: #fff;
        text-decoration: none;
    }

.trust-card {
    background: #FFF4F0;
    padding: 30px;
    border-radius: 0;
    border-radius: 0 14px 0 14px;
    border: 2px solid #F26522;
    transition: .3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 5px 0px rgb(242 101 34 / 0%), 0px 10px 5px rgb(242 101 34 / 61%);
}
/*
    .trust-card:hover {
        box-shadow: 0px 5px 0px rgb(242 101 34 / 0%), 0px 10px 5px rgb(242 101 34 / 61%);
    }*/

.trust-icon-title-wrapper {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    align-items: center;
}

.trust-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: #F26522;
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.trust-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 0;
    line-height: 1.3;
}

.trust-card-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .trust-title {
        font-size: 24px;
    }

    .trust-section {
        padding: 50px 0;
    }
}

@media (min-width: 1200px) {
    .h2, h2 {
        font-size: 3rem;
    }
}

/* ================= FOOTER ================= */

.footer {
    margin-top: 160px;
}

/* ===== ORANGE CTA ===== */

.cta-card {
    background: #f26522;
    border-radius: 30px;
    padding: 100px 30px;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: -130px;
    z-index: 2;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.4;
}

.cta-subtitle {
    font-size: 14px;
    max-width: 650px;
    margin: 15px auto 0;
    opacity: .95;
}

/* ===== REAL ELLIPSE IMAGES ===== */

.ellipse {
    position: absolute;
    opacity: .25;
    pointer-events: none;
}

.e1 {
    top: 0;
    left: 70px;
}

.e2 {
    top: 0;
    right: 70px;
}

.e3 {
    bottom: 0;
    right: 70px;
}

.e4 {
    bottom: 0;
    left: 70px;
}


/* ===== DARK FOOTER ===== */

.footer-dark {
    background: #000;
    padding: 180px 0 40px;
    position: relative;
}

.footer-watermark {
    position: absolute;
    font-size: 260px;
    font-weight: 900;
    color: rgba(255,255,255,.04);
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    pointer-events: none;
}

/* logo */
.logo-card {
    background: #fff;
    padding: 10px 16px;
    border-radius: 10px;
    width: fit-content;
}

/* text */
.footer-desc {
    color: #aaa;
    font-size: 14px;
}

/* columns */
.footer-col h6 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 16px;
    font-size: large;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    color: #aaa;
    font-size: 14px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: .2s;
}

    .footer-col li:hover {
        color: #fff;
    }

/* social */
.social-icons i {
    color: #fff;
    margin-right: 14px;
    font-size: 18px;
    cursor: pointer;
}

/* bottom */
.footer-bottom {
    border-top: 1px solid #111;
    margin-top: 60px;
    padding-top: 20px;
    color: #777;
    font-size: 12px;
}


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

@media(max-width:768px) {
    .cta-card {
        padding: 60px 20px;
    }

    .footer-watermark {
        font-size: 120px;
    }

    .footer-bottom {
        text-align: center;
        justify-content: center !important;
    }
}


.CARDSbody {
    position: relative;
    padding: 120px 20px;
    overflow: hidden; /* hide overflow shapes */
    display: flex;
    justify-content: center;
}


.bg-shape {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    opacity: .95;
    filter: blur(4px);
}

.s1 {
    top: 100px;
    left: -30px;
}

.s2 {
    top: 100px;
    right: 20px;
}

.s3 {
    bottom: 30%;
    left: 80px;
}

.s4 {
    bottom: 30px;
    right: 30px;
}

.shape-1 {
    top: -80px;
    left: -120px;
    width: 320px;
}

.shape-2 {
    top: -60px;
    right: -120px;
    width: 280px;
}

.shape-3 {
    bottom: -120px;
    left: -150px;
    width: 350px;
}

.shape-4 {
    bottom: -100px;
    right: -120px;
    width: 300px;
}

.glassmorphism-border {
    position: relative;
    max-width: 190%;
    background: transparent;
    border-radius: 24px;
    padding: 15px;
    position: relative;
    z-index: 2;
    overflow: hidden;
    width: 100%;
}

    .glassmorphism-border::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-radius: 24px;
        z-index: 1;
        border: 2px solid rgba(255, 255, 255, 0.25);
        box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.2);
    }

.card-content {
    position: relative;
    z-index: 2;
    padding: 0;
    margin: 0;
    overflow: hidden;
    background: white;
    border-radius: 20px;
}

.card-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 18px 18px 0 0;
}

.card-body {
    padding: 32px;
}

.card-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.card-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.65;
    font-weight: 400;
    margin: 0;
}


.cards-section {
    position: relative;
    padding: 120px 40px;
    overflow: hidden;
    background: #f5f5f5;
}

.rowcards-section {
    position: relative;
    padding: 120px 0px;
    overflow: hidden;
    background: #f5f5f5;
}

.cards-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1200px;
}

@media (max-width: 768px) {
    .cards-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
        gap: 30px;
    }
}

@media (max-width: 1024px) {
    .cards-grid {
        padding: 0 40px;
    }
}

.employee-icon {
    filter: invert(40%) sepia(78%) saturate(1735%) hue-rotate(346deg) brightness(98%) contrast(96%);
}


@media (max-width: 640px) {
    .glassmorphism-border {
        padding: 12px;
    }

    .card-body {
        padding: 2rem;
    }

    .card-title {
        font-size: 1.5rem;
    }

    .card-description {
        font-size: 0.95rem;
    }
}

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

@keyframes float {
    0% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-20px)
    }

    100% {
        transform: translateY(0)
    }
}

.bg-shape {
    animation: float 8s ease-in-out infinite;
}


.compare-section {
    padding: 90px 0;
    background: #f7f7f7;
}

/* left text width like design */
.compare-text {
    max-width: 520px;
    color: #555;
    line-height: 1.7;
    font-size: 16px;
}

/* small icon */
.compare-icon {
    width: 60px;
}

/* image container */
.image-wrapper {
    position: relative;
    display: inline-block;
}

    /* orange glow background */
    .image-wrapper::before {
        content: "";
        position: absolute;
        inset: -20px;
        border-radius: 20px;
        background: linear-gradient(135deg, #ff8a3d, #ff5e00);
        filter: blur(40px);
        opacity: 0.45;
        z-index: 0;
    }

/* actual image card */
.dashboard-img {
    position: relative;
    z-index: 1;
}


/* responsive tweaks */
@media (max-width: 992px) {
    .compare-section {
        padding: 60px 20px;
        text-align: center;
    }

    .compare-text {
        margin: auto;
    }
}




/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #faf9f9 0%, #f3d7c8 45%, #f0c9b7 70%, #faf9f9 100%);
    position: relative;
    z-index: 1;
}

.pricing-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    margin-bottom: 80px;
    text-align: center;
}

.pricing-title {
    font-size: 48px;
    font-weight: 600;
    line-height: 54px;
    color: var(--text-black);
}

.pricing-subtitle {
    font-size: 28px;
    font-weight: 400;
    line-height: 34px;
    color: var(--text-gray);
    max-width: 764px;
}

.pricing-tabs {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
}

.pricing-tab {
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid var(--primary-orange);
    background-color: transparent;
    color: var(--primary-orange);
    cursor: pointer;
    transition: all 0.3s ease;
}

    .pricing-tab.active {
        background-color: var(--primary-orange);
        color: var(--bg-white);
    }

    .pricing-tab:hover {
        background-color: var(--primary-orange);
        color: var(--bg-white);
    }

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.pricing-card {
    background: var(--bg-white);
    border: 2px solid var(--border-gray);
    border-radius: 16px;
    padding: 40px 32px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

    .pricing-card:hover {
        transform: translateY(-8px);
        border-color: var(--primary-orange);
        box-shadow: 0 16px 48px rgba(244, 104, 40, 0.15);
    }

    .pricing-card.featured {
        border-color: var(--primary-orange);
        box-shadow: 0 8px 24px rgba(244, 104, 40, 0.15);
    }

.pricing-card-badge {
    position: absolute;
    top: -12px;
    left: 24px;
    background-color: var(--primary-orange);
    color: var(--bg-white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-card-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-black);
    margin-bottom: 16px;
    margin-top: 12px;
}

.pricing-card-price {
    font-size: 40px;
    font-weight: 600;
    color: var(--primary-orange);
    margin-bottom: 4px;
}

.pricing-card-period {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-light-gray);
    margin-bottom: 32px;
}

.pricing-card-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--text-gray);
    margin-bottom: 32px;
    flex-grow: 1;
}

.pricing-card-features {
    list-style: none;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

    .pricing-card-features li {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 16px;
        font-weight: 400;
        color: var(--text-gray);
    }

        .pricing-card-features li:before {
            content: "✓";
            color: var(--primary-orange);
            font-weight: 600;
            font-size: 18px;
        }

.pricing-card-button {
    padding: 14px 32px;
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 600;
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    background-color: var(--primary-orange);
    color: var(--bg-white);
    width: 100%;
}

    .pricing-card-button:hover {
        background-color: #d85620;
        transform: scale(1.02);
    }

.pricing-card.basic .pricing-card-button {
    background-color: transparent;
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
}

    .pricing-card.basic .pricing-card-button:hover {
        background-color: var(--primary-orange);
        color: var(--bg-white);
        transform: scale(1.02);
    }

/* Comparison Section */
.comparison-section {
    padding: 60px 0 120px;
    background-color: var(--bg-light);
    position: relative;
    z-index: 1;
}

.comparison-header {
    text-align: center;
    margin-bottom: 60px;
}

    .comparison-header h2 {
        font-size: 48px;
        font-weight: 600;
        line-height: 54px;
        color: var(--text-black);
        margin-bottom: 16px;
    }

    .comparison-header p {
        font-size: 20px;
        font-weight: 400;
        line-height: 28px;
        color: var(--text-gray);
        max-width: 600px;
        margin: 0 auto;
    }

.comparison-table {
    background: var(--bg-white);
    border-radius: 16px;
    border: 1px solid var(--border-gray);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

    .comparison-table table {
        width: 100%;
        border-collapse: collapse;
    }

    .comparison-table thead {
        background-color: #f5f5f5;
        border-bottom: 2px solid var(--border-gray);
    }

    .comparison-table th {
        padding: 24px 32px;
        text-align: left;
        font-size: 16px;
        font-weight: 600;
        color: var(--text-black);
    }

    .comparison-table td {
        padding: 20px 32px;
        border-bottom: 1px solid var(--border-gray);
        font-size: 16px;
        font-weight: 400;
        color: var(--text-gray);
    }

    .comparison-table tr:last-child td {
        border-bottom: none;
    }

.comparison-feature-name {
    font-weight: 600;
    color: var(--text-black);
}

.check-icon {
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 18px;
}

.x-icon {
    color: var(--text-light-gray);
    font-weight: 600;
    font-size: 18px;
}

/* Container */
.container-custom {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Responsive */
@media (max-width: 1200px) {
    :root {
        --container-padding: 40px;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: 20px;
    }

    .pricing-section {
        padding: 60px 0;
    }

    .pricing-title {
        font-size: 36px;
        line-height: 42px;
    }

    .pricing-subtitle {
        font-size: 20px;
        line-height: 26px;
    }

    .pricing-tabs {
        flex-wrap: wrap;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .comparison-header h2 {
        font-size: 36px;
        line-height: 42px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 16px 20px;
        font-size: 14px;
    }
}


.hero-section {
    position: relative;
    background-color: #faf9f9;
    padding: 173px 0 128px;
    text-align: center;
    overflow: hidden;
}

.blur-bg {
    position: absolute;
    width: 1056px;
    height: 799px;
    left: 50%;
    top: 225px;
    transform: translateX(-50%);
    pointer-events: none;
}

.blur-ellipse {
    position: absolute;
    width: 1056px;
    height: 799px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse, rgba(244, 104, 40, 0.23) 0%, transparent 70%);
    filter: blur(241.6px);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1148px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 60px;
    font-weight: 600;
    line-height: 65px;
    margin-bottom: 32px;
    color: #000000;
}

.hero-subtitle {
    font-size: 28px;
    font-weight: 400;
    line-height: 34px;
    color: #494949;
    margin-bottom: 64px;
}

.cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: center;
}


.compare-section {
    padding: 120px 20px 80px;
    max-width: 1190px;
    margin: 0 auto;
}

.compare-header {
    text-align: center;
    margin-bottom: 64px;
}

.compare-title {
    font-size: 48px;
    font-weight: 600;
    line-height: 54px;
    color: #000000;
    margin-bottom: 32px;
}

.compare-description {
    font-size: 28px;
    font-weight: 400;
    line-height: 34px;
    color: #494949;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 40px;
    overflow-x: auto;
    display: block;
}

.pricing-table-inner {
    width: 100%;
    min-width: 1280px;
}

.table-header {
    background: #f5f5f5;
}

    .table-header th {
        padding: 22px 16px;
        font-size: 16px;
        font-weight: 500;
        line-height: 21px;
        text-align: center;
        color: #000000;
    }

        .table-header th:first-child {
            text-align: left;
            width: 377px;
        }

        .table-header th:nth-child(2) {
            width: 279px;
        }

        .table-header th:nth-child(3) {
            width: 226px;
        }

        .table-header th:nth-child(4) {
            width: 209px;
        }

        .table-header th:nth-child(5) {
            width: 189px;
        }

.pricing-table tbody tr {
    border-bottom: 1px solid #e8e8e8;
}

.pricing-table tbody td {
    padding: 16px;
    text-align: center;
    font-size: 16px;
    line-height: 24px;
    vertical-align: middle;
}

    .pricing-table tbody td:first-child {
        text-align: left;
        font-weight: 500;
        padding-left: 8px;
    }

.feature-cell {
    font-weight: 300;
    color: #000000;
}

.checkmark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 100px;
    background: #1fc16b;
    padding: 3px;
}

    .checkmark svg {
        width: 16px;
        height: 16px;
    }

.cross {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 100px;
    background: #d00416;
}

    .cross svg {
        width: 16px;
        height: 16px;
    }

.faq-section {
    max-width: 1190px;
    margin: 80px auto;
    padding: 0 20px;
}

.faq-title {
    font-size: 48px;
    font-weight: 600;
    line-height: 54px;
    text-align: center;
    margin-bottom: 48px;
}

.faq-item {
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 24px;
    font-size: 18px;
    font-weight: 500;
    background: #ffffff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

    .faq-question:hover {
        background: #faf9f9;
    }

    .faq-question.active {
        background: #fef4ef;
    }

.faq-toggle {
    font-size: 24px;
    color: #f46828;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #fef4ef;
}

    .faq-answer.open {
        max-height: 500px;
    }

.faq-answer-content {
    padding: 0 24px 20px;
    font-size: 16px;
    line-height: 24px;
    color: #494949;
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: 48px;
        line-height: 54px;
    }

    .hero-subtitle {
        font-size: 24px;
        line-height: 30px;
    }

    .compare-title {
        font-size: 40px;
        line-height: 46px;
    }

    .compare-description {
        font-size: 24px;
        line-height: 30px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
        line-height: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
        line-height: 26px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .compare-title {
        font-size: 32px;
        line-height: 38px;
    }

    .compare-description {
        font-size: 18px;
        line-height: 26px;
    }

    .pricing-table {
        overflow-x: scroll;
    }

    .faq-title {
        font-size: 36px;
        line-height: 42px;
    }
}
