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

:root {
    --background: #ffffff;
    --foreground: #1a1a1a;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --black: #000000;
    --white: #ffffff;
    --green-100: #dcfce7;
    --green-500: #22c55e;
    --green-600: #16a34a;
    --green-700: #15803d;
    --red-100: #fee2e2;
    --red-500: #ef4444;
    --red-600: #dc2626;
    --red-700: #b91c1c;
    --blue-100: #dbeafe;
    --blue-500: #3b82f6;
    --blue-600: #2563eb;
    --yellow-100: #fef3c7;
    --yellow-200: #fde68a;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Navigation */
.nav-header {
    position: relative;
    z-index: 50;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    min-height: 64px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-wrapper {
    position: relative;
}

.logo-glow {
    position: absolute;
    inset: -4px;
    background: linear-gradient(to right, var(--gray-600), var(--gray-400), var(--gray-700));
    border-radius: 12px;
    filter: blur(8px);
    opacity: 0.6;
    transition: opacity 0.5s;
}

.logo-wrapper:hover .logo-glow {
    opacity: 0.9;
}

.logo-icon {
    position: relative;
    width: 48px;
    height: 48px;
    background: linear-gradient(to bottom right, var(--gray-800), var(--gray-700), var(--gray-900));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(1);
    transition: transform 0.3s;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(107, 114, 128, 0.3);
}

.logo-wrapper:hover .logo-icon {
    transform: scale(1.1);
}

.mountain-icon {
    width: 28px;
    height: 28px;
    color: var(--white);
    filter: brightness(1.1);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.025em;
    color: var(--gray-900);
    line-height: 1.2;
}

.brand-subtitle {
    font-size: 0.75rem;
    color: var(--gray-600);
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.85;
    line-height: 1.2;
    margin-top: -2px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.btn-book {
    background: linear-gradient(to right, var(--gray-800), var(--gray-900));
    color: var(--white);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(107, 114, 128, 0.3);
    font-weight: 600;
}

.btn-book:hover {
    background: linear-gradient(to right, var(--gray-700), var(--gray-800));
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    font-size: 1.125rem;
    padding: 1.25rem 2rem;
    height: auto;
    background: linear-gradient(to bottom, var(--gray-800), var(--gray-900), var(--black));
    color: var(--white);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(107, 114, 128, 0.5);
    border-radius: 0.75rem;
    white-space: nowrap;
}

.btn-primary:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: scale(1.02) translateY(-1px);
}

.btn-cta {
    font-size: 1.125rem;
    padding: 1.5rem 2rem;
    height: auto;
    background: var(--white);
    color: var(--gray-900);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
}

.btn-cta:hover {
    background: var(--gray-100);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.icon {
    width: 1rem;
    height: 1rem;
}

.btn-primary .icon,
.btn-cta .icon {
    width: 1.5rem;
    height: 1.5rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 5rem 1rem 6rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, var(--gray-50), var(--white), var(--gray-100));
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.05), transparent 70%);
}

.hero-container {
    position: relative;
    z-index: 10;
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--gray-900);
    max-width: 100%;
}

.hero-title strong {
    font-weight: 800;
}

.highlight-text {
    position: relative;
    display: inline-block;
    margin-left: 0.25rem;
}

.highlight-glow {
    position: absolute;
    inset: -6px -4px;
    background: linear-gradient(to right, var(--yellow-100), var(--yellow-200), var(--yellow-100));
    border-radius: 8px;
    filter: blur(6px);
    opacity: 0.6;
    z-index: -1;
}

.highlight-content {
    position: relative;
    color: var(--gray-900);
    font-weight: 800;
    padding: 0.125rem 0.375rem;
    z-index: 1;
}

.highlight-content strong {
    font-weight: 900;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-description strong {
    font-weight: 600;
    color: var(--gray-800);
}

.hero-cta {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.hero-subtext {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-top: 0.5rem;
}

.hero-subtext strong {
    font-weight: 600;
    color: var(--gray-600);
}

/* Trusted Section */
.trusted-section {
    padding: 2.5rem 0;
    background: linear-gradient(to bottom right, var(--gray-50), var(--white), var(--gray-100));
    overflow: hidden;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.logo-scroll {
    position: relative;
}

.logo-scroll-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    white-space: nowrap;
    animation: scroll-infinite 20s linear infinite;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    width: 96px;
    transition: transform 0.3s;
}

.logo-item:hover {
    transform: scale(1.1);
}

.logo-item img {
    height: 32px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.3s;
}

.logo-item:hover img {
    filter: grayscale(0%) opacity(1);
}

@keyframes scroll-infinite {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-33.333%);
    }
}

/* Revenue Section */
.revenue-section {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(to right, var(--gray-900), var(--black), var(--gray-900));
    border-top: 1px solid var(--gray-800);
    border-bottom: 1px solid var(--gray-800);
    overflow: hidden;
}

.revenue-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05), transparent 70%);
}

.revenue-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.03), transparent 50%);
}

.revenue-container {
    position: relative;
    z-index: 10;
    text-align: center;
}

.revenue-number {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: -0.05em;
    color: var(--white);
    line-height: 1.1;
}

.revenue-text {
    font-size: 1.5rem;
    color: var(--gray-300);
    font-weight: 500;
    letter-spacing: 0.025em;
    line-height: 1.5;
}

.revenue-text strong {
    font-weight: 600;
    color: var(--white);
}

.revenue-divider {
    width: 8rem;
    height: 4px;
    margin: 2rem auto 0;
    background: linear-gradient(to right, var(--gray-600), var(--white), var(--gray-600));
    border-radius: 9999px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Qualification Section */
.qualification-section {
    position: relative;
    padding: 5rem 0;
    background: var(--white);
}

.qualification-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(249, 250, 251, 0.3), transparent, rgba(249, 250, 251, 0.3));
}

.qualification-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 70%, rgba(0, 0, 0, 0.02), transparent 50%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--gray-900);
}

.gradient-text {
    background: linear-gradient(to right, var(--gray-800), var(--black));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 48rem;
    margin: 0 auto;
}

.qualification-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.qualification-card {
    position: relative;
    height: 100%;
}

.card-glow {
    position: absolute;
    inset: -4px;
    border-radius: 16px;
    filter: blur(8px);
    opacity: 0.2;
    transition: opacity 0.5s;
}

.card-glow-green {
    background: linear-gradient(to right, var(--green-500), var(--green-600));
}

.card-glow-red {
    background: linear-gradient(to right, var(--red-500), var(--red-600));
}

.card-glow-blue {
    background: linear-gradient(to right, var(--blue-500), var(--blue-600));
}

.qualification-card:hover .card-glow {
    opacity: 0.3;
}

.card-content {
    position: relative;
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.qualification-card:hover .card-content {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: scale(1.02);
}

.card-green .card-content {
    border-color: var(--green-100);
}

.card-red .card-content {
    border-color: var(--red-100);
}

.card-blue .card-content {
    border-color: var(--blue-100);
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.card-icon svg {
    width: 24px;
    height: 24px;
}

.card-icon-green {
    background: var(--green-100);
    color: var(--green-600);
}

.card-icon-red {
    background: var(--red-100);
    color: var(--red-600);
}

.card-icon-blue {
    background: var(--blue-100);
    color: var(--blue-600);
}

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

.card-title-green {
    color: var(--green-700);
}

.card-title-red {
    color: var(--red-700);
}

.card-title-blue {
    color: var(--blue-600);
}

.card-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-grow: 1;
}

.card-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.card-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

.card-bullet-green {
    background: var(--green-500);
}

.card-bullet-red {
    background: var(--red-500);
}

.card-bullet-blue {
    background: var(--blue-500);
}

.card-item p {
    color: var(--gray-700);
    font-weight: 500;
}

/* Problem Section */
.problem-section {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(to bottom right, var(--gray-50), var(--white));
}

.problem-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 80%, rgba(0, 0, 0, 0.02), transparent 50%);
}

.problem-solutions {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.problem-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.problem-card,
.solution-card,
.outcome-card {
    flex: 1;
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    position: relative;
}

.problem-card:hover,
.solution-card:hover,
.outcome-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: scale(1.02);
}

.problem-card {
    border-color: var(--red-100);
}

.solution-card {
    border-color: var(--blue-100);
}

.outcome-card {
    border-color: var(--green-100);
}

.problem-badge {
    position: absolute;
    top: -12px;
    left: 24px;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
}

.problem-badge-red {
    background: var(--red-500);
}

.problem-badge-blue {
    background: var(--blue-500);
}

.problem-badge-green {
    background: var(--green-500);
}

.problem-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.problem-icon svg {
    width: 32px;
    height: 32px;
}

.problem-icon-red {
    background: var(--red-100);
    color: var(--red-600);
}

.problem-icon-blue {
    background: var(--blue-100);
    color: var(--blue-600);
}

.problem-icon-green {
    background: var(--green-100);
    color: var(--green-600);
}

.problem-card h3,
.solution-card h3,
.outcome-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    text-align: center;
}

.problem-card p,
.solution-card p,
.outcome-card p {
    color: var(--gray-600);
    text-align: center;
}

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

.arrow-icon svg {
    width: 24px;
    height: 24px;
}

.arrow-blue {
    background: var(--blue-100);
    color: var(--blue-600);
}

.arrow-green {
    background: var(--green-100);
    color: var(--green-600);
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 4rem 0;
    background: linear-gradient(to bottom right, var(--gray-900), var(--black), var(--gray-900));
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.05), transparent 50%);
}

.cta-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.03), transparent 50%);
}

.cta-container {
    position: relative;
    z-index: 10;
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
    line-height: 1.3;
}

.cta-title strong {
    font-weight: 800;
}

.cta-description {
    font-size: 1.125rem;
    color: var(--gray-300);
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-description strong {
    font-weight: 600;
    color: var(--white);
}

.cta-subtext {
    font-size: 0.875rem;
    color: var(--gray-400);
    margin-top: 1rem;
}

.cta-subtext strong {
    font-weight: 600;
    color: var(--gray-300);
}

/* Footer */
.footer {
    padding: 2rem 0;
    border-top: 1px solid var(--gray-200);
    background: var(--gray-50);
}

.footer-text {
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* Responsive Design */
@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 1.25rem;
    }

    .revenue-number {
        font-size: 5rem;
    }

    .revenue-text {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 3rem;
    }

    .cta-title {
        font-size: 2.5rem;
    }

    .problem-flow {
        flex-direction: row;
        gap: 3rem;
    }

    .arrow-icon {
        display: flex;
    }

    .btn-primary {
        font-size: 1.25rem;
        padding: 1.5rem 2.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
        line-height: 1.1;
    }

    .hero-description {
        font-size: 1.25rem;
    }

    .qualification-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-section {
        padding: 6rem 1rem 8rem;
    }
}

/* Animations */
@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-container > * {
    animation: fade-in 1s ease-out;
}

.hero-description {
    animation-delay: 0.2s;
}

.hero-cta {
    animation-delay: 0.4s;
}

.hero-subtext {
    animation-delay: 0.6s;
}

