* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Inter", sans-serif;
    background-color: #010101;
    color: white;
    width: 100%;
    overflow-x: hidden;
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 60px;
    background-color: rgba(1, 1, 1, 0.9);
    backdrop-filter: blur(8px);
    transition: padding 0.3s ease, background-color 0.3s ease;
    animation: fadeIn 0.8s ease-out forwards;
}

header.scrolled {
    padding: 16px 60px;
    background-color: rgba(1, 1, 1, 0.95);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.logo img {
    width: auto;
    height: 50px;
    max-height: 100%;
    display: block;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

nav {
    display: flex;
    gap: 24px;
    align-items: center;
}

nav a {
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    color: #a9a9a9;
    position: relative;
    transition: color 0.3s ease;
}

nav a:after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: white;
    transition: width 0.3s ease;
}

nav a:hover:after {
    width: 100%;
}

nav a.active {
    color: white;
}

nav a.active:after {
    width: 100%;
}

.signup-button {
    border: 1px solid #ececec;
    background: transparent;
    border-radius: 10px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.signup-button:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    z-index: -1;
}

.signup-button:hover:before {
    left: 0;
}

.signup-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #1a1a1a;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 8px;
    border: 1px solid #333;
    padding: 10px 0;
}

.dropdown-content a {
    color: #e1e1e1;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.dropdown-content a:hover {
    background-color: #333;
    color: white;
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeIn 0.3s;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}

/* Hero Section with Customer-Centric Focus */
.hero {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 120px 60px 140px;
    background: linear-gradient(to bottom, #010101, #121212);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    animation: fadeIn 1s ease-out forwards;
}

.hero p {
    font-size: 18px;
    line-height: 1.6;
    margin: 0 auto 40px;
    max-width: 800px;
    color: #e1e1e1;
    animation: fadeIn 1s ease-out 0.2s forwards;
}

.light-effect {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: 1;
}

.light-1 {
    top: 20%;
    left: 10%;
    animation: float 8s infinite alternate ease-in-out;
}

.light-2 {
    bottom: 30%;
    right: 15%;
    animation: float 10s infinite alternate-reverse ease-in-out;
}

/* Main Content Sections */
.content-section {
    padding: 80px 60px;
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.content-section.visible {
    opacity: 1;
    transform: translateY(0);
}

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

.section-header h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: #e1e1e1;
    max-width: 800px;
    margin: 0 auto;
}

/* Customer Values Section */
.values-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
}

.value-item {
    background: #0c0c0c;
    border: 1px solid #2e2e2e;
    border-radius: 12px;
    padding: 30px;
    width: 280px;
    text-align: center;
    transition: all 0.4s ease;
}

.value-item:hover {
    transform: translateY(-8px);
    border-color: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.value-icon {
    width: 70px;
    height: 70px;
    background-color: #7c7c7c;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    transition: all 0.3s ease;
}

.value-item:hover .value-icon {
    background-color: #a0a0a0;
    transform: scale(1.1);
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.value-item p {
    color: #e1e1e1;
    font-size: 15px;
    line-height: 1.5;
}

/* Customer Experience Grid */
.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.experience-item {
    background: #0c0c0c;
    border: 1px solid #2e2e2e;
    border-radius: 12px;
    padding: 30px;
    transition: all 0.4s ease;
    height: 100%;
}

.experience-item:hover {
    transform: translateY(-5px);
    border-color: #4a4a4a;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.experience-icon {
    width: 60px;
    height: 60px;
    background-color: #7c7c7c;
    border-radius: 50%;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    transition: all 0.3s ease;
}

.experience-item:hover .experience-icon {
    background-color: #a0a0a0;
    transform: scale(1.1);
}

.experience-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.experience-item p {
    color: #e1e1e1;
    font-size: 15px;
    line-height: 1.5;
}

/* Customer Journey Section */
.journey-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.journey-step {
    background: #0c0c0c;
    border: 1px solid #2e2e2e;
    border-radius: 12px;
    padding: 30px;
    width: 260px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

.journey-step:not(:last-child):after {
    content: "→";
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #7c7c7c;
}

.journey-step:hover {
    transform: translateY(-5px);
    border-color: #4a4a4a;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: #7c7c7c;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    color: white;
    transition: all 0.3s ease;
}

.journey-step:hover .step-number {
    background-color: #a0a0a0;
    transform: scale(1.1);
}

.journey-step h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.journey-step p {
    color: #e1e1e1;
    font-size: 14px;
    line-height: 1.5;
}

/* Testimonials */
.testimonials {
    margin-top: 60px;
}

.testimonial-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.testimonial-slide {
    background: #0c0c0c;
    border: 1px solid #2e2e2e;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.testimonial-slide.active {
    opacity: 1;
    position: relative;
    pointer-events: all;
}

.quote-icon {
    font-size: 40px;
    color: #7c7c7c;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 30px;
}

.testimonial-author {
    font-weight: 600;
    font-size: 16px;
}

.testimonial-role {
    color: #a0a0a0;
    font-size: 14px;
}

.testimonial-rating {
    margin: 15px 0;
    color: #ffd700;
    font-size: 20px;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #555;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot:hover {
    background: #777;
}

.testimonial-dot.active {
    background: #fff;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Stats Section */
.stats-section {
    padding: 80px 60px;
    background-color: #0a0a0a;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.stat-item {
    background: #0c0c0c;
    border: 1px solid #2e2e2e;
    border-radius: 12px;
    padding: 30px;
    width: 220px;
    text-align: center;
    transition: all 0.4s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: #4a4a4a;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #ffffff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    color: #e1e1e1;
    font-size: 16px;
}

.stats-light {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 1;
}

.stats-light-1 {
    top: -100px;
    left: 20%;
}

.stats-light-2 {
    bottom: -100px;
    right: 20%;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 100px 60px;
    background: linear-gradient(to bottom, #121212, #0d0d0d);
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    color: #e1e1e1;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.primary-btn {
    background: linear-gradient(to right, #444, #222);
    color: white;
    border: none;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    background: linear-gradient(to right, #555, #333);
}

.secondary-btn {
    background: transparent;
    border: 1px solid #ececec;
    color: white;
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-light {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 1;
}

.cta-light-1 {
    top: -150px;
    left: 10%;
}

.cta-light-2 {
    bottom: -150px;
    right: 10%;
}

/* FAQ Section */
.faq-section {
    padding: 80px 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-grid {
    margin-top: 40px;
}

.faq-item {
    background: #0c0c0c;
    border: 1px solid #2e2e2e;
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    font-size: 18px;
}

.faq-arrow {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    padding: 0 20px;
}

.faq-answer-content {
    padding-bottom: 20px;
    color: #e1e1e1;
    line-height: 1.6;
}

.faq-item.active {
    border-color: #4a4a4a;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

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

/* Footer Section */
.footer {
    background-color: #0d0d0d;
    color: #ccc;
    text-align: center;
    padding: 20px 0;
    font-size: 14px;
    font-family: "Inter", sans-serif;
    border-top: 1px solid #222;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}

/* Responsive Media Queries */
@media (max-width: 1200px) {
    .hero {
        padding: 100px 40px 120px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .content-section {
        padding: 60px 40px;
    }

    .value-item, .journey-step {
        width: 260px;
    }

    .stats-section {
        padding: 60px 40px;
    }
}

@media (max-width: 992px) {
    header {
        padding: 16px 30px;
    }

    header.scrolled {
        padding: 12px 30px;
    }

    .hero {
        padding: 80px 30px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .journey-step:not(:last-child):after {
        display: none;
    }

    .experience-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .faq-section {
        padding: 60px 30px;
    }
}

@media (max-width: 768px) {
    header {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        position: relative;
        padding: 1rem;
    }

    .menu-toggle {
        display: block;
        z-index: 1001;
    }

    nav#nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(1, 1, 1, 0.95);
        padding: 1rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    nav#nav-menu.active {
        display: flex;
    }

    .dropdown-content {
        display: none;
        position: static;
        box-shadow: none;
        background-color: transparent;
        padding-left: 1rem;
    }

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

    .dropdown:hover .dropdown-content {
        display: none;
    }

    .hero {
        padding: 60px 20px;
    }

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

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

    .content-section {
        padding: 50px 20px;
    }

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

    .values-container,
    .journey-steps {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .value-item,
    .journey-step {
        width: 100%;
        max-width: 300px;
    }

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

    .stats-grid {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .stat-item {
        width: 100%;
        max-width: 300px;
    }

    .cta-section {
        padding: 80px 20px;
    }

    .cta-section h2 {
        font-size: 30px;
    }

    .faq-section {
        padding: 50px 20px;
    }
}

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

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

    .testimonial-text {
        font-size: 16px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .cta-btn {
        width: 100%;
    }

    .faq-question {
        font-size: 16px;
        padding: 15px;
    }
}