/* Hero */
.hero-platform {
    padding: 56px 0 32px;
}

.hero-platform .container {}

.hero-platform__inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 32px;
    align-items: center;
}

.hero-platform__title {
    margin: 0 0 16px;
    font-size: clamp(28px, 3.5vw, 48px);
    line-height: 1.15;
}

@media (max-width: 992px) {
    .hero-platform__title {
        margin: -55px 0 16px;
    }
}

.heading-gradient-3 {
    background: linear-gradient(90deg, #2648b9 0%, #3a67ff 30%, #4c69c9 70%, #1236b0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-platform__description {
    color: var(--muted);
    margin: 0 0 8px;
}

.hero-platform__main ul {
    margin: 0 0 20px;
    padding-left: 18px;
    color: var(--muted);
}

.hero-platform__main li {
    margin: 4px 0;
}

.hero-platform__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.base-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 10px;
    padding: 12px 18px;
    font-weight: 600;
    border: 1px solid transparent;
    transition: .2s ease;
}

.base-button--lg {
    padding: 14px 20px;
}

.base-button--secondary {
    background: var(--primary);
    color: white;
}

.base-button--secondary:hover {
    background: var(--primary-600);
}

.base-button--outline {
    background: transparent;
    color: var(--text);
    border-color: var(--border);
}

.base-button--outline:hover {
    border-color: var(--text);
}

.hero-platform__img {
    display: block;
}

.hero-platform__img svg {
    width: 100%;
    height: auto;
    max-width: 544px;
    display: block;
    margin: 0 auto;
}

.hero-platform__img .shadow {
    filter: drop-shadow(0 24px 64px rgba(15, 23, 42, 0.15));
}

.hero-platform__benefits {
    margin-top: 28px;
}

.hero-platform__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.hero-platform__item {
    border: 1px solid var(--border);
    background: var(--surface);
    padding: 12px 14px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
}

/* Notification animation (applies inside inline SVG via external CSS) */
.notif {
    opacity: 0;
    transition: transform .35s ease, opacity .35s ease;
}

.notif.is-visible {
    opacity: 1;
}

/* Smooth text swap like iOS */
.notif text {
    transition: opacity .24s ease, transform .24s ease;
    will-change: opacity, transform;
}

.notif.swapping text {
    opacity: 0;
    transform: translateY(-2px);
}

.notif.appear {
    filter: drop-shadow(0 18px 40px rgba(15, 23, 42, .12));
}

/* Responsive */
@media (max-width: 991px) {
    .hero-platform__inner {
        grid-template-columns: 1fr;
    }

    .hero-platform__list {
        grid-template-columns: 1fr 1fr;
    }

    .hero-platform__benefits--pc {
        display: none;
    }

    .hero-platform__benefits--mob {
        display: block;
    }
}

@media (min-width: 992px) {
    .hero-platform__benefits--mob {
        display: none;
    }
}

.hero-platform__reviews {
    margin: 24px 0;
}

.google-reviews {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.google-reviews:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.google-reviews__icon {
    flex-shrink: 0;
}

.google-reviews__content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.google-reviews__rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.google-reviews__score {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
}

.google-reviews__stars {
    color: #fbbf24;
    font-size: 14px;
    letter-spacing: 2px;
}

.google-reviews__count {
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
}

/* Description Paragraf Stilleri */
.hero-platform__description {
    margin: 20px 0;
}

.hero-platform__description p {
    margin-bottom: 16px;
    line-height: 1.7;
    color: #4b5563;
    font-size: 16px;
}

.hero-platform__description p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .google-reviews {
        padding: 10px 10px;
    }

    .google-reviews__score {
        font-size: 14px;
    }

    .google-reviews__stars {
        font-size: 12px;
    }

    .google-reviews__count {
        font-size: 12px;
    }

    .hero-platform__description p {
        font-size: 15px;
    }
}

/* Features Container */
.hero-platform__features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 24px 0;
}

/* Countries Indicator Stili */
.countries-indicator {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 12px 20px;
    background: white;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.countries-indicator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.countries-indicator__flags {
    display: flex;
    gap: -8px;
    position: relative;
    z-index: 1;
}

.flag-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    background: white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    border: 2px solid #ffffff;
    margin-left: -8px;
    transition: transform 0.2s ease;
}

.flag-icon:first-child {
    margin-left: 0;
}

.countries-indicator:hover .flag-icon {
    transform: scale(1.1);
}

.countries-indicator__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    position: relative;
    z-index: 1;
}

.countries-indicator__count {
    font-size: 18px;
    font-weight: 700;
    color: black;
    line-height: 1;
}

.countries-indicator__label {
    font-size: 13px;
    color: black;
    font-weight: 500;
}

/* Responsive - Countries Indicator */
@media (max-width: 768px) {
    .hero-platform__features {
        flex-direction: column;
        align-items: flex-start;
    }

    .countries-indicator {
        padding: 10px 16px;
    }

    .flag-icon {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }

    .countries-indicator__count {
        font-size: 16px;
    }

    .countries-indicator__label {
        font-size: 12px;
    }
}

.service-section {
    padding: 20px 0;
    background-color: #f9fafb;
}

.service-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    color: #1f2937;
    margin-bottom: 24px;
}

.warning-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background-color: #fffbeb;
    border: 1px solid #fcd34d;
    border-radius: 12px;
    margin-bottom: 32px;
}

.warning-icon {
    flex-shrink: 0;
}

.warning-text {
    font-size: 15px;
    color: #92400e;
    font-weight: 500;
}

.tab-container {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.tab-buttons {
    display: flex;
    border-bottom: 2px solid #e5e7eb;
    background-color: #f9fafb;
}

.tab-button {
    flex: 1;
    padding: 18px 24px;
    font-size: 16px;
    font-weight: 600;
    color: #6b7280;
    background-color: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    border-bottom: 3px solid transparent;
}

.tab-button:hover {
    color: #2563eb;
    background-color: #f3f4f6;
}

.tab-button.active {
    color: #2563eb;
    background-color: #ffffff;
    border-bottom: 3px solid #2563eb;
}

.tab-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #e0e7ff;
    color: #2563eb;
    font-size: 14px;
    font-weight: 700;
}

.tab-content {
    display: none;
    padding: 32px;
}

.tab-content.active {
    display: block;
}

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

.service-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background-color: #ffffff;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    cursor: pointer;
    transition: all 0.3s ease;
    will-change: transform, box-shadow;
    contain: layout style paint;
}

.service-card:hover {
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.card-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.card-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.card-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.card-name {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
}

.card-availability {
    font-size: 13px;
    color: #6b7280;
}

.card-button {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #2563eb;
    background-color: #eff6ff;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.card-button:hover {
    background-color: #2563eb;
    color: #ffffff;
}

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

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

    .card-button {
        padding: 8px 16px;
        font-size: 13px;
    }
}

.view-all-button {
    width: 100%;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.view-all-button:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.25);
}

/* Responsive */
@media (max-width: 992px) {
    .grid-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

    .grid-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .tab-button {
        font-size: 14px;
        padding: 14px 16px;
    }

    .tab-content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .service-section {
        padding: 40px 0;
    }

    .service-title {
        font-size: 24px;
    }

    .grid-container {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .warning-box {
        flex-direction: column;
        text-align: center;
    }
}

.how-it-works-section {
    padding: 20px 0;
    background-color: #ffffff;
}

.how-it-works-description {
    text-align: center;
    font-size: 16px;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.steps-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 20px;
    align-items: center;
    margin-top: 40px;
}

.step-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 24px;
    background-color: #ffffff;
    border-radius: 20px;
    border: 2px solid #e5e7eb;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    will-change: transform, box-shadow;
    contain: layout style paint;
}

.step-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #2563eb, #10b981, #f59e0b);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.step-card:hover::before {
    opacity: 1;
}

.step-card:hover {
    transform: translateY(-12px) translateZ(0);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: transparent;
}

.step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {

    0%,
    100% {
        transform: translateX(0);
        opacity: 1;
    }

    50% {
        transform: translateX(5px);
        opacity: 0.7;
    }
}

.step-illustration {
    margin-bottom: 24px;
    transition: transform 0.4s ease;
}

.step-card:hover .step-illustration {
    transform: scale(1.05);
}

.step-content {
    width: 100%;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}

.step-card:hover .step-number {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.4);
}

.step-title {
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.step-description {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1200px) {
    .steps-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    @keyframes arrowPulse {

        0%,
        100% {
            transform: rotate(90deg) translateX(0);
            opacity: 1;
        }

        50% {
            transform: rotate(90deg) translateX(5px);
            opacity: 0.7;
        }
    }
}

@media (max-width: 768px) {
    .how-it-works-section {
        padding: 60px 0;
    }

    .service-title {
        font-size: 28px;
    }

    .step-card {
        padding: 24px 20px;
    }
}

.why-choose-section {
    padding: 20px 0;
    background: linear-gradient(135deg, #F9FAFB 0%, #F3F4F6 100%);
    position: relative;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

/* Left Side */
.why-choose-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.why-choose-title {
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.2;
}

.rocket-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Right Side */
.why-choose-right {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.why-choose-description {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.7;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.benefit-text {
    font-size: 15px;
    color: #374151;
    font-weight: 500;
    line-height: 1.6;
}

/* Rental Banner */
.rental-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 24px 32px;
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
    position: relative;
    overflow: hidden;
}

.rental-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.rental-banner-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.rental-icon {
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px;
    border-radius: 12px;
}

.rental-icon path,
.rental-icon circle {
    stroke: #FFFFFF;
}

.rental-text {
    font-size: 16px;
    color: #ffffff;
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
}

.rental-button {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    color: #2563EB;
    background-color: #ffffff;
    border: none;
    border-radius: 10px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.rental-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    background-color: #F9FAFB;
}

/* Responsive */
@media (max-width: 992px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .rocket-illustration svg {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 60px 0;
    }

    .why-choose-title {
        font-size: 28px;
    }

    .why-choose-description {
        font-size: 15px;
    }

    .rental-banner {
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }

    .rental-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .rental-button {
        width: 100%;
    }

    .rocket-illustration svg {
        width: 280px;
        height: 280px;
    }
}

@media (max-width: 480px) {
    .benefit-item {
        padding: 16px;
    }

    .benefit-text {
        font-size: 14px;
    }
}

.pricing-section {
    padding: 20px 0;
    background-color: #ffffff;
}

.pricing-description {
    text-align: center;
    font-size: 16px;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto 40px;
}

.pricing-tab-container {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.pricing-tab-buttons {
    display: flex;
    flex-wrap: wrap;
    background-color: #f9fafb;
    border-bottom: 2px solid #e5e7eb;
    padding: 8px;
    gap: 8px;
}

.pricing-tab-btn {
    flex: 1;
    min-width: 180px;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    background-color: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pricing-tab-btn:hover {
    color: #2563eb;
    border-color: #2563eb;
    background-color: #eff6ff;
}

.pricing-tab-btn.active {
    color: #ffffff;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-color: #2563eb;
}

.tab-icon {
    font-size: 18px;
}

.tab-icon img {
    width: 32px;
    height: 32px;
}

.pricing-tab-content {
    display: none;
    padding: 32px;
}

.pricing-tab-content.active {
    display: block;
}

.pricing-table-wrapper {
    overflow-x: auto;
    margin-bottom: 24px;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
}

.pricing-table thead {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
}

.pricing-table th {
    padding: 16px;
    text-align: left;
    font-size: 14px;
    font-weight: 700;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #e5e7eb;
}

.pricing-table tbody tr {
    border-bottom: 1px solid #f3f4f6;
    transition: all 0.2s ease;
}

.pricing-table tbody tr:hover {
    background-color: #f9fafb;
    transform: scale(1.01);
}

.pricing-table td {
    padding: 16px;
    font-size: 15px;
    color: #4b5563;
}

.flag {
    font-size: 20px;
    margin-right: 8px;
}

.price {
    font-weight: 700;
    color: #2563eb;
    font-size: 16px;
}

.view-all-prices-btn {
    width: 100%;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.view-all-prices-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
}

/* Other Services Grid */
.other-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.service-price-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-price-card:hover {
    transform: translateY(-4px);
    border-color: #2563eb;
    background-color: #eff6ff;
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.15);
}

.service-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.service-name {
    font-size: 15px;
    font-weight: 600;
    color: #374151;
}

.service-price-card:hover .service-name {
    color: #2563eb;
}

/* Responsive */
@media (max-width: 992px) {
    .pricing-tab-buttons {
        flex-direction: column;
    }

    .pricing-tab-btn {
        min-width: 100%;
    }

    .other-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .pricing-tab-content {
        padding: 20px;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 12px 8px;
        font-size: 14px;
    }

    .other-services-grid {
        grid-template-columns: 1fr;
    }
}

.faq-section {
    padding: 20px 0;
    background: linear-gradient(135deg, #F9FAFB 0%, #FFFFFF 100%);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-item:hover {
    border-color: #2563eb;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.1);
}

.faq-item.active {
    border-color: #2563eb;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.15);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
    gap: 20px;
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
}

.faq-title {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.faq-item.active .faq-title {
    color: #2563eb;
}

.faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    border-radius: 50%;
    transition: all 0.3s ease;
    color: #6b7280;
}

.faq-item.active .faq-icon {
    background: #2563eb;
    color: #ffffff;
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 28px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 28px 24px 28px;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.7;
    color: #4b5563;
    margin: 0;
    padding-top: 4px;
}

/* Decorative Elements */
.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.faq-container {
    position: relative;
    z-index: 1;
}

/* Number Badge (Optional Enhancement) */
.faq-question::before {
    content: attr(data-number);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    color: #ffffff;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    margin-right: 16px;
    flex-shrink: 0;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.faq-item.active .faq-question::before {
    opacity: 1;
    transform: scale(1);
}

/* Responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-title {
        font-size: 16px;
    }

    .faq-icon {
        width: 28px;
        height: 28px;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }

    .faq-answer p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: 16px;
        gap: 12px;
    }

    .faq-title {
        font-size: 15px;
    }
}

/* Animation Enhancement */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item.active .faq-answer p {
    animation: slideDown 0.4s ease forwards;
}

/* Hover Effects */
.faq-question:hover .faq-icon {
    background: #2563eb;
    color: #ffffff;
    transform: scale(1.1);
}

.faq-item.active .faq-question:hover .faq-icon {
    transform: scale(1.1) rotate(180deg);
}

.reviews-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #F9FAFB 100%);
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Left Side - Form */
.review-form-container {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 2px solid #e5e7eb;
}

.form-label {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 32px;
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    font-size: 15px;
    color: #1f2937;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Star Rating */
.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 8px;
}

.star-rating input {
    display: none;
}

.star-rating label {
    font-size: 36px;
    color: #d1d5db;
    cursor: pointer;
    transition: all 0.2s ease;
}

.star-rating label:hover,
.star-rating label:hover~label,
.star-rating input:checked~label {
    color: #fbbf24;
    transform: scale(1.1);
}

.submit-review-btn {
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.submit-review-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
}

/* Right Side - Reviews Display */
.reviews-display-container {
    background: #ffffff;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 2px solid #e5e7eb;
    height: 600px;
    display: flex;
    flex-direction: column;
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #e5e7eb;
}

.reviews-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.reviews-count {
    font-size: 14px;
    color: #6b7280;
    font-weight: 600;
    padding: 6px 12px;
    background: #f3f4f6;
    border-radius: 20px;
}

.reviews-slider {
    flex: 1;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
}

.reviews-track {
    display: flex;
    flex-direction: column;
    gap: 16px;
    animation: slideUp 20s linear infinite;
}

@keyframes slideUp {
    0% {
        transform: translateY(0);
    }

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

.reviews-track:hover {
    animation-play-state: paused;
}

.review-message {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    border-radius: 16px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.review-message:hover {
    transform: translateX(4px);
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    flex-shrink: 0;
}

.review-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.review-name {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
}

.review-stars {
    color: #fbbf24;
    font-size: 14px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

.review-time {
    font-size: 12px;
    color: #9ca3af;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 992px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .reviews-display-container {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 60px 0;
    }

    .review-form-container {
        padding: 28px;
    }

    .form-label {
        font-size: 24px;
    }

    .reviews-display-container {
        padding: 24px;
        height: 450px;
    }

    .reviews-header h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .review-form-container {
        padding: 20px;
    }

    .star-rating label {
        font-size: 28px;
    }

    .review-message {
        padding: 16px;
    }

    .review-avatar {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

.hero-section {
    padding: 0 0 80px;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    margin-top: 2rem;
}

/* Left Side - Content */
.hero-content {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: #1f2937;
    margin: 0;
}

.hero-highlight {
    display: inline-block;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    padding: 4px 16px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: #4b5563;
    margin: 0;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
}

.hero-btn-secondary {
    background: #ffffff;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.hero-btn-secondary:hover {
    background: #eff6ff;
    transform: translateY(-2px);
}

/* Right Side - Notifications */
.hero-notifications {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notifications-container {
    width: 100%;
    max-width: 400px;
    height: 100%;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
}

.notifications-track {
    display: flex;
    flex-direction: column;
    gap: 16px;
    animation: slideUpNotifications 30s linear infinite;
}

@keyframes slideUpNotifications {
    0% {
        transform: translateY(0);
    }

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

.notifications-track:hover {
    animation-play-state: paused;
}

.notification-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    border: 1px solid #e5e7eb;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.notification-card:hover {
    transform: translateX(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.notification-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.notification-app {
    display: flex;
    align-items: center;
    gap: 10px;
}

.app-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.app-icon img {
    width: 36px;
}

.app-name {
    font-size: 15px;
    font-weight: 700;
    color: #1f2937;
}

.notification-time {
    font-size: 12px;
    color: #9ca3af;
    font-weight: 500;
}

.notification-body {
    margin: 0;
}

.notification-body p {
    font-size: 14px;
    color: #4b5563;
    margin: 0;
    line-height: 1.5;
}

.notification-body strong {
    color: #2563eb;
    font-weight: 700;
    font-size: 16px;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-notifications {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-btn {
        width: 100%;
    }

    .hero-notifications {
        height: 400px;
    }
}

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

    .hero-highlight {
        display: block;
        margin-top: 8px;
    }
}