/* Features Page - Modern SaaS Design */

/* Hero Header */
.features-hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg,
            rgba(111, 100, 237, 0.1) 0%,
            rgba(186, 60, 231, 0.1) 50%,
            rgba(90, 56, 175, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.features-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%236f64ed' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: var(--font-semibold);
    font-size: 3.5rem;
    color: var(--color-text);
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-family: var(--font-regular);
    font-size: 1.25rem;
    color: var(--color-text);
    opacity: 0.8;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.breadcrumb-nav {
    margin-bottom: 32px;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 12px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.breadcrumb-item a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-regular);
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--color-primary);
}

.breadcrumb-item.active {
    font-family: var(--font-semibold);
    color: var(--color-primary);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--color-text);
    opacity: 0.5;
    padding: 0 16px;
}

.social-links {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 32px;
}

.social-link {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-4px);
    color: white;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    box-shadow: 0 8px 30px rgba(186, 60, 231, 0.2);
}

.social-link iconify-icon {
    font-size: 1.5rem;
}


.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro-title {
    font-family: var(--font-semibold);
    font-size: 2.5rem;
    color: var(--color-text);
    margin-bottom: 16px;
    line-height: 1.3;
}

.intro-subtitle {
    font-family: var(--font-semibold);
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: 24px;
}

.intro-description {
    font-family: var(--font-regular);
    color: var(--color-text);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 40px;
}

.features-stats {
    margin-top: 40px;
}

.stat-card {
    background: white;
    padding: 32px 24px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon iconify-icon {
    font-size: 2rem;
    color: white;
}

.stat-content {
    text-align: left;
}

.stat-number {
    font-family: var(--font-semibold);
    font-size: 2rem;
    color: var(--color-text);
    line-height: 1;
}

.stat-label {
    font-family: var(--font-regular);
    color: var(--color-text);
    opacity: 0.7;
    font-size: 0.875rem;
    margin-top: 4px;
}

/* Features Showcase */
.features-showcase {
    background: linear-gradient(135deg,
            rgba(234, 201, 70, 0.02) 0%,
            rgba(210, 169, 71, 0.02) 100%);
}


.feature-section.feature-alt {
    background: white;
}


.feature-visual {
    position: relative;
    height: 500px;
}

/* Website Collage */
.website-collage {
    position: relative;
    height: 100%;
    width: 100%;
}

.collage-item {
    position: absolute;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.collage-item:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.collage-main {
    z-index: 2;
    top: 0;
    right: 300px;
    width: 320px;
    height: 240px;
}

.collage-mobile {
    z-index: 2;
    top: 60px;
    right: 60px;
}

.collage-badge {
    bottom: 100px;
    left: 40px;
    width: 180px;
    padding: 20px;
}

.collage-seo {
    bottom: 160px;
    right: 100px;
    width: 160px;
    padding: 20px;
}

/* Mockup Screen */
.mockup-screen {
    width: 100%;
    height: 100%;
    background: #1a1a2e;
    border-radius: 8px;
    overflow: hidden;
}

.screen-header {
    padding: 12px 16px;
    background: #2d2d44;
    display: flex;
    align-items: center;
    gap: 12px;
}

.screen-dots {
    display: flex;
    gap: 6px;
}

.screen-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff5f57;
}

.screen-dots span:nth-child(2) {
    background: #ffbd2e;
}

.screen-dots span:nth-child(3) {
    background: #28ca42;
}

.screen-url {
    flex: 1;
    background: #3a3a5d;
    border-radius: 4px;
    padding: 4px 12px;
    font-family: var(--font-regular);
    color: white;
    opacity: 0.7;
    font-size: 0.75rem;
}

.screen-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-preview {
    text-align: center;
}


.hero-name {
    font-family: var(--font-semibold);
    color: white;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.hero-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
    padding: 10px 24px;
    border-radius: 6px;
    font-family: var(--font-semibold);
    font-size: 0.875rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.hero-cta:hover {
    transform: scale(1.05);
}

/* Mobile Mockup */
.mobile-mockup {
    width: fit-content;
    height: 100%;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #e5e5e5;
}

.mobile-header {
    padding: 12px;
    background: #f5f5f5;
    display: flex;
    justify-content: center;
}

.mobile-notch {
    width: 40px;
    height: 6px;
    background: #ddd;
    border-radius: 3px;
}

.mobile-content {
    height: calc(100% - 48px);
}

.mobile-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 7px;
    height: 100%;
}

.mobile-nav iconify-icon {
    font-size: 1.25rem;
    color: var(--color-text);
    opacity: 0.7;
}

.coming-soon {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--color-secondary-2);
    font-size: 15px;
    background-color: rgba(234, 201, 70, 0.3);
    padding: 5px 10px;
    border-radius: 8px;
    margin: 2rem 0;
    width: max-content;

}



/* Badge Card */
.badge-card {
    display: flex;
    align-items: center;
    gap: 12px;
}

.badge-card iconify-icon {
    font-size: 2rem;
    color: var(--color-primary-2);
}

.badge-content {
    text-align: center;
}

.badge-text {
    font-family: var(--font-semibold);
    color: var(--color-text);
    font-size: 0.875rem;
}

.badge-value {
    font-family: var(--font-semibold);
    color: var(--color-primary);
    font-size: 1.25rem;
    margin-top: 4px;
}

/* SEO Card */
.seo-card {
    display: flex;
    align-items: center;
    gap: 12px;
}

.seo-card iconify-icon {
    font-size: 2rem;
    color: var(--color-primary);
}

.seo-content {
    text-align: center;
}

.seo-text {
    font-family: var(--font-semibold);
    color: var(--color-text);
    font-size: 0.875rem;
}

.seo-value {
    font-family: var(--font-semibold);
    color: #4CAF50;
    font-size: 1.25rem;
    margin-top: 4px;
}

/* Feature Content */
.feature-content {
    padding-right: 40px;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(186, 60, 231, 0.1);
    color: var(--color-primary);
    padding: 8px 16px;
    border-radius: 8px;
    font-family: var(--font-semibold);
    font-size: 0.875rem;
    margin-bottom: 24px;
}

.feature-title {
    font-family: var(--font-semibold);
    font-size: 2.5rem;
    color: var(--color-text);
    line-height: 1.3;
    margin-bottom: 16px;
}

.feature-description {
    font-family: var(--font-regular);
    color: var(--color-text);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 32px;
}

.feature-list {
    display: grid;
    gap: 20px;
}

.feature-list-item {
    display: flex;
    gap: 16px;
}

.feature-list-item iconify-icon {
    color: var(--color-primary);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 4px;
}

.feature-list-item strong {
    display: block;
    font-family: var(--font-semibold);
    color: var(--color-text);
    margin-bottom: 4px;
}

.feature-list-item p {
    font-family: var(--font-regular);
    color: var(--color-text);
    opacity: 0.7;
    margin: 0;
    line-height: 1.4;
    font-size: 0.875rem;
}

/* Booking Collage */
.booking-collage {
    position: relative;
    height: 100%;
    width: 100%;
}

.collage-calendar {
    top: 0;
    left: 0;
    width: 280px;
    padding: 20px;
}

.collage-payment {
    top: 40px;
    right: 0;
    width: 240px;
    padding: 20px;
}

.collage-steps {
    bottom: 60px;
    left: 20px;
    width: 220px;
    padding: 20px;
}

.collage-qr {
    bottom: 70px;
    right: 100px;
    width: 140px;
    padding: 20px;
}

/* Calendar Widget */
.calendar-widget {
    text-align: center;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.calendar-header iconify-icon {
    font-size: 1.5rem;
    color: var(--color-primary);
}

.calendar-header h5 {
    font-family: var(--font-semibold);
    color: var(--color-text);
    margin: 0;
    font-size: 1rem;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.calendar-day {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    border-radius: 6px;
    font-family: var(--font-regular);
    font-size: 0.875rem;
}

.calendar-day.header {
    color: var(--color-secondary);
    font-family: var(--font-semibold);
}

.calendar-day.booked {
    background: rgba(186, 60, 231, 0.1);
    color: var(--color-primary);
    font-family: var(--font-semibold);
}

/* Payment Widget */
.payment-widget {
    text-align: center;
}

.payment-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.payment-header h5 {
    font-family: var(--font-semibold);
    color: var(--color-text);
    margin: 0;
    font-size: 1rem;
}

.payment-header iconify-icon {
    color: #4CAF50;
    font-size: 1.5rem;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
}

.method-icon {
    width: 40px;
    height: 40px;
    background: rgba(186, 60, 231, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.method-icon iconify-icon {
    font-size: 1.5rem;
    color: var(--color-primary);
}

.payment-amount {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.payment-amount span {
    font-family: var(--font-regular);
    color: var(--color-text);
    opacity: 0.7;
}

.payment-amount strong {
    font-family: var(--font-semibold);
    color: var(--color-primary);
    font-size: 1.25rem;
}

/* Steps Widget */
.steps-widget {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(186, 60, 231, 0.1);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-semibold);
}

.step-item.active .step-number {
    background: var(--color-primary);
    color: white;
}

.step-text {
    font-family: var(--font-regular);
    color: var(--color-text);
    font-size: 0.75rem;
}

.step-line {
    flex: 1;
    height: 2px;
    background: rgba(0, 0, 0, 0.1);
    margin: 0 8px;
}

/* QR Widget */
.qr-widget {
    text-align: center;
}

.qr-code {
    width: 100px;
    height: 100px;
    background: #f5f5f5;
    border-radius: 8px;
    margin: 0 auto 12px;
    position: relative;
    overflow: hidden;
}

.qr-pattern {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

}

.qr-text {
    font-family: var(--font-regular);
    color: var(--color-text);
    opacity: 0.7;
    font-size: 0.75rem;
}

/* Dashboard Collage */
.dashboard-collage {
    position: relative;
    height: 100%;
    width: 100%;
}

.collage-main-dash {
    top: 0;
    left: 0;
    width: 300px;
    padding: 20px;
}

.collage-bookings {
    top: 40px;
    right: 0;
    width: 240px;
    padding: 20px;
}

.collage-notifications {
    bottom: 90px;
    left: 190px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.collage-extras {
    bottom: 0;
    right: 40px;
    width: 180px;
    padding: 20px;
}

/* Dashboard Widget */
.dashboard-widget {
    text-align: center;
}

.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.dashboard-header h5 {
    font-family: var(--font-semibold);
    color: var(--color-text);
    margin: 0;
    font-size: 1rem;
}

.dashboard-header iconify-icon {
    color: var(--color-primary);
    font-size: 1.5rem;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-family: var(--font-semibold);
    font-size: 1.5rem;
    color: var(--color-primary);
    line-height: 1;
}

.stat-label {
    font-family: var(--font-regular);
    color: var(--color-text);
    opacity: 0.7;
    font-size: 0.75rem;
    margin-top: 4px;
}

.dashboard-chart {
    margin-top: 20px;
}

.chart-bars {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 120px;
}

.bar-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex: 1;
    height: 100%;
}

.bar {
    width: 12px;
    background: linear-gradient(to top, var(--color-primary), var(--color-secondary));
    border-radius: 4px;
    transition: height 0.3s ease;
}

.bar-label {
    font-family: var(--font-regular);
    color: var(--color-text);
    opacity: 0.7;
    font-size: 0.75rem;
}

/* Bookings Widget */
.bookings-widget {
    text-align: left;
}

.bookings-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.bookings-header h6 {
    font-family: var(--font-semibold);
    color: var(--color-text);
    margin: 0;
    font-size: 0.875rem;
}

.badge-count {
    background: var(--color-primary);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-semibold);
    font-size: 0.75rem;
}

.booking-items {
    display: grid;
    gap: 12px;
}

.booking-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.guest-avatar {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(186, 60, 231, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.guest-avatar iconify-icon {
    color: var(--color-primary);
    font-size: 1.25rem;
}

.guest-info {
    flex: 1;
}

.guest-info strong {
    display: block;
    font-family: var(--font-semibold);
    color: var(--color-text);
    font-size: 0.875rem;
    margin-bottom: 2px;
}

.guest-info small {
    font-family: var(--font-regular);
    color: var(--color-text);
    opacity: 0.7;
    font-size: 0.75rem;
}

/* Notifications Widget */
.notifications-widget {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notifications-widget iconify-icon {
    font-size: 2rem;
    color: white;
}

.notification-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: white;
    color: var(--color-primary);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-semibold);
    font-size: 0.75rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Extras Widget */
.extras-widget {
    text-align: center;
}

.extras-widget h6 {
    font-family: var(--font-semibold);
    color: var(--color-text);
    margin-bottom: 16px;
    font-size: 0.875rem;
}

.extras-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.extra-item {
    width: 40px;
    height: 40px;
    background: rgba(186, 60, 231, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.extra-item iconify-icon {
    color: var(--color-primary);
    font-size: 1.25rem;
}

/* Mobile App Mockup */

/* Pricing Comparison */


.pricing-table {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-header,
.pricing-row,
.pricing-footer {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    align-items: center;
    padding: 32px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-header {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
}

.pricing-footer {
    border-bottom: none;
    background: rgba(186, 60, 231, 0.05);
}

.pricing-column {
    text-align: center;
}

.service-column {
    text-align: left;
}

.atlastay-column img {
    height: 40px;
    width: auto;
}

.service-column h4 {
    font-family: var(--font-semibold);
    color: var(--color-text);
    margin-bottom: 8px;
}

.service-description {
    font-family: var(--font-regular);
    color: var(--color-text);
    opacity: 0.7;
    font-size: 0.875rem;
    margin: 0;
}

.cost {
    display: block;
    font-family: var(--font-semibold);
    color: var(--color-fonce);
    font-size: 1.25rem;
}

.cost-note {
    font-family: var(--font-regular);
    color: var(--color-text);
    opacity: 0.7;
    font-size: 0.75rem;
    margin: 4px 0 0;
}

.included-icon {
    color: #4CAF50;
    font-size: 2rem;
    margin-bottom: 8px;
}

.included-text {
    display: block;
    font-family: var(--font-semibold);
    color: #4CAF50;
    font-size: 0.875rem;
}

.total-cost {
    font-family: var(--font-semibold);
    color: var(--color-text);
    font-size: 1.5rem;
}

.savings {
    display: block;
    font-family: var(--font-semibold);
    color: var(--color-primary);
    font-size: 1rem;
    margin-bottom: 4px;
}

.savings-note {
    font-family: var(--font-regular);
    color: var(--color-text);
    opacity: 0.7;
    font-size: 0.75rem;
    margin: 0;
}

/* CTA Section */
.features-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    position: relative;
    overflow: hidden;
}

.features-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3;
}



.features-cta .cta-description {
    opacity: 0.9;
    font-size: 1.125rem;
    margin-bottom: 24px;
}

.features-cta .cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.features-cta .btn-lg {
    padding: 16px 40px;
    font-size: 1.125rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title,
    .feature-title {
        font-size: 2rem;
    }

    .feature-visual {
        height: 400px;
        margin-bottom: 40px;
    }

    .collage-main,
    .collage-main-dash {
        width: 240px;
    }

    .collage-calendar,
    .collage-payment {
        width: 200px;
    }

    .device-frame {
        width: 240px;
        height: 420px;
    }

    .feature-content {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .features-hero {
        padding: 120px 0 60px;
    }

    .feature-visual {
        height: 300px;
    }

    .collage-item {
        position: relative;
        margin-bottom: 20px;
    }

    .collage-main,
    .collage-calendar,
    .collage-payment,
    .collage-main-dash,
    .collage-bookings {
        position: relative;
        width: 100%;
        max-width: 400px;
        margin: 0 auto 20px;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
    }

    .mobile-app-collage {
        flex-direction: column;
    }

    .mobile-features {
        position: relative;
        transform: none;
        left: auto;
        margin-top: 40px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .pricing-header,
    .pricing-row,
    .pricing-footer {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 16px;
    }

    .service-column {
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-lg {
        width: 100%;
        max-width: 300px;
    }
}


@media (max-width: 576px) {


    .feature-visual {
        height: fit-content;
    }

    .website-collage,
    .booking-collage,
    .dashboard-collage {
        display: flex;
        flex-direction: column;
        align-items: center;
        height: max-content;
    }

    .website-collage .collage-item,
    .booking-collage .collage-item,
    .dashboard-collage .collage-item {
        position: relative;
        width: 100%;
        margin-bottom: 20px;
        top: auto;
        left: auto;
        bottom: auto;
        right: auto;
    }

    .website-collage .collage-item .mobile-mockup {
        width: 100%;
    }

    .feature-section {
        padding-top: 0px;
    }
}

@media (max-width: 768px) {
    .pricing-table {
        width: 100%;
    }

    .pricing-table .pricing-header {
        display: none;
    }

    .pricing-table .pricing-row,
    .pricing-table .pricing-footer {
        display: block;
        padding: 1rem 1.25rem;
        margin-bottom: 0.75rem;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .pricing-table .pricing-column {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 0.4rem;
    }

    .pricing-table .service-column {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 0.6rem;
    }

    .pricing-table .service-column h4 {
        font-size: 1rem;
        line-height: 1.3;
        margin: 0;
    }

    .pricing-table .service-column .service-description {
        font-size: 0.85rem;
        opacity: 0.85;
        margin-top: 0.25rem;
        margin-bottom: 0;
    }

    .pricing-table .cost-column {
        flex-direction: column;
        align-items: flex-start;
    }

    .pricing-table .cost-column .cost {
        font-weight: 600;
        margin-bottom: 0.2rem;
    }

    .pricing-table .cost-column .cost-note {
        font-size: 0.75rem;
        opacity: 0.75;
        margin: 0;
    }

    .pricing-table .atlastay-column {
        flex-direction: column;
        align-items: flex-start;
    }

    .pricing-table .atlastay-column .included-icon {
        margin-right: 0.25rem;
    }

    .pricing-table .atlastay-column .savings {
        font-weight: 600;
        margin-bottom: 0.2rem;
    }

    .pricing-table .atlastay-column .savings-note {
        font-size: 0.75rem;
        opacity: 0.75;
        margin: 0;
    }

    .pricing-table .cost-column::before,
    .pricing-table .atlastay-column::before {
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        opacity: 0.7;
        margin-bottom: 0.15rem;
        content: '';
    }

    .pricing-table .cost-column::before {
        content: "Coût individuel";
    }

    .pricing-table .pricing-footer .cost-column::before {
        content: "Total";
    }

    .pricing-table .atlastay-column::before {
        content: "Avec AtlaStay";
    }

    .pricing-table .pricing-row .pricing-column:last-child,
    .pricing-table .pricing-footer .pricing-column:last-child {
        margin-bottom: 0;
    }

    .pricing-cta {
        margin-top: 1.5rem;
    }

    .pricing-cta .cta-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
}