/*
  Global styles and variables
  This stylesheet defines the overall look and feel for the landing page.  It
  makes use of CSS variables for colours so that tweaks can be made easily.
  Flexbox layouts ensure that the design adapts gracefully to different
  viewport sizes.  The dark sections mirror the deep blues and blacks of
  the provided reference, while light sections use soft grey tones for
  contrast.
*/

:root {
    --color-primary-start: #2f6af5;
    --color-primary-end: #6e52d0;
    --color-secondary: #2f6af5;
    --color-dark-bg: #010c28;
    --color-mid-bg: #020e27;
    --color-light-bg: #f6f8ff;
    --color-text-dark: #0a0a23;
    --color-text-light: #fff;
    --color-muted: #666e8c;
}

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

html, body {
    height: 100%;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--color-text-light);
    background-color: var(--color-dark-bg);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    border-radius: 30px;
    font-weight: 600;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn.primary {
    background: linear-gradient(90deg, var(--color-primary-start), var(--color-primary-end));
    color: var(--color-text-light);
}

.btn.primary:hover {
    opacity: 0.85;
}

.btn.secondary {
    background: transparent;
    border-color: var(--color-primary-start);
    color: var(--color-primary-start);
}

.btn.secondary:hover {
    background: var(--color-primary-start);
    color: var(--color-text-light);
}

.btn-small {
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    border-radius: 25px;
}

/* Navigation */
.navbar {
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(4, 12, 40, 0.85);
    backdrop-filter: blur(6px);
    padding: 0.5rem 1.5rem;
    border-radius: 40px;
    display: flex;
    align-items: center;
    z-index: 10;
}

.nav-list {
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.nav-list li a {
    color: var(--color-text-light);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.nav-list li a:hover {
    color: var(--color-primary-start);
}

/* Hero section */
.hero {
    position: relative;
    height: 100vh;
    background: url("assets/bg.png") top center/cover no-repeat, var(--color-dark-bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 5rem;
    overflow: hidden;
}

.hero-content {
    max-width: 700px;
    z-index: 2;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1rem;
    color: #ccd6f6;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.hero-logo {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.neon-logo {
    font-size: 8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #fff;
    text-shadow:
        0 0 20px rgba(255, 255, 255, 0.8),
        0 0 40px rgba(82, 113, 255, 0.6),
        0 0 60px rgba(82, 113, 255, 0.4);
}

@media (max-width: 768px) {
    .neon-logo {
        font-size: 4rem;
    }
    .navbar {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    .nav-list {
        flex-wrap: wrap;
        gap: 1rem;
    }
    .hero-content {
        padding: 0 1rem;
    }
}

/* Steps section */
.steps {
    background: var(--color-light-bg);
    color: var(--color-text-dark);
    padding: 4rem 0;
}

.steps-header {
    text-align: center;
    margin-bottom: 3rem;
}

.small-heading {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.75rem;
    color: var(--color-muted);
    margin-bottom: 0.5rem;
}

.steps-header h2 {
    font-size: 2rem;
    margin: 0;
    color: var(--color-text-dark);
}

.step-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.step-card {
    background: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    flex: 1 1 280px;
    max-width: 350px;
    position: relative;
    text-align: left;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(90deg, var(--color-primary-start), var(--color-primary-end));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--color-text-dark);
}

.step-card p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.step-link {
    color: var(--color-primary-start);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
}

.step-link:hover {
    text-decoration: underline;
}

.step-img img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
}

/* Benefits section */
.benefits {
    background: var(--color-mid-bg);
    color: var(--color-text-light);
    padding: 4rem 0;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: flex-start;
}

.benefits-text {
    flex: 1 1 350px;
}

.benefits-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.benefits-text p {
    color: #b5bcdc;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    font-size: 0.95rem;
}

.benefits-text h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    color: var(--color-text-light);
}

.tax-rate {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-light);
}

.benefits-list {
    flex: 1 1 350px;
}

.benefits-list ul {
    padding-left: 1rem;
}

.benefits-list li {
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: flex-start;
    line-height: 1.4;
}

.benefits-list .check {
    margin-right: 0.5rem;
    color: var(--color-primary-start);
    font-size: 1.1rem;
    line-height: 1;
}

/* Integrations section */
.integrations {
    background: url("assets/bgggg222.png") center/cover no-repeat;
    color: var(--color-text-light);
    text-align: center;
    padding: 5rem 0 7rem;
}

.integrations h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.cluster-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.5rem;
}

.cluster-wrapper img {
    width: 90%;
    max-width: 620px;
    height: auto;
}

/* Plan section */
.plan {
    background: var(--color-light-bg);
    color: var(--color-text-dark);
    padding: 4rem 0;
}

.plan-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.plan-card {
    flex: 1 1 400px;
}

.plan-card h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.plan-card p {
    color: #555;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.rate-display {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary-start);
    margin-bottom: 1.5rem;
}

.plan-buttons .btn + .btn {
    margin-left: 1rem;
}

.plan-image {
    flex: 1 1 300px;
    text-align: center;
}

.plan-image img {
    width: 80%;
    max-width: 350px;
    height: auto;
    display: inline-block;
}

/* High volume CTA section */
.volume-cta {
    background: #ffffff;
    color: var(--color-text-dark);
    padding: 4rem 0;
}

.volume-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}

.volume-text {
    flex: 1 1 400px;
}

.volume-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.volume-text p {
    color: #555;
    line-height: 1.5;
    font-size: 0.95rem;
}

.volume-image {
    flex: 1 1 300px;
    text-align: center;
}

.volume-image img {
    width: 80%;
    max-width: 350px;
    height: auto;
    display: inline-block;
}

/* FAQ section */
.faq {
    background: var(--color-light-bg);
    color: var(--color-text-dark);
    padding: 4rem 0;
}

.faq-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 2rem;
}

.faq-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.faq-header p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.accordion {
    list-style: none;
    border-top: 1px solid #ddd;
}

.accordion-item {
    border-bottom: 1px solid #ddd;
}

.accordion-header {
    width: 100%;
    background: #ffffff;
    color: var(--color-text-dark);
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    border: none;
    outline: none;
    cursor: pointer;
    position: relative;
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-icon {
    margin-left: 1rem;
    font-size: 1.5rem;
    color: var(--color-primary-start);
    transition: transform 0.3s ease;
}

.accordion-body {
    display: none;
    padding: 1rem;
    background: #ffffff;
    color: #555;
    font-size: 0.9rem;
    line-height: 1.5;
}

.accordion-item.open .accordion-body {
    display: block;
}

.accordion-item.open .accordion-icon {
    transform: rotate(45deg);
}

/* Final CTA / Footer */
.final-cta {
    background: url("assets/bg.png") bottom center/cover no-repeat;
    color: var(--color-text-light);
    text-align: center;
    padding: 4rem 0;
}

.final-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Responsive tweaks */
@media (max-width: 900px) {
    .benefits-grid, .plan-grid, .volume-grid {
        flex-direction: column;
        align-items: center;
    }
    .plan-image img, .volume-image img {
        width: 60%;
    }
}