@import 'variables.css';

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: #000000;
    background-color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s ease;
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-header);
    line-height: 1.2;
    font-weight: 700;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p { font-size: clamp(1rem, 1.5vw, 1.125rem); }

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-narrow {
    max-width: 900px;
}

.text-highlight {
    color: var(--color-light-blue);
}

.text-center { text-align: center; }
.text-white { color: #ffffff; }
.text-dark { color: #000000; }

.bg-dark {
    background-color: #0a0a0a;
    color: #ffffff;
}

.bg-dark-section {
    background-color: #0a0a0a;
    color: #ffffff;
}

.bg-white {
    background-color: #ffffff;
    color: #000000;
}

.bg-pattern {
    background-image: url('../images/generalbg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    height: 90px;
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: 0.3s ease;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    padding: 0 44px;
}

.nav-logo {
    flex-shrink: 0;
}

.nav-logo img {
    height: 90px;
    width: auto;
}

.nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-link {
    font-family: var(--font-header);
    font-size: 18px;
    font-weight: 700;
    color: #bebebe;
    text-transform: uppercase;
    padding: 8px 10px;
    border-radius: 8px;
    transition: 0.2s ease;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.nav-link:hover {
    color: #ffffff;
}

.nav-link.active {
    color: var(--color-light-blue);
}

.nav-cta {
    flex-shrink: 0;
    text-transform: uppercase;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.nav-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.nav-mobile-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: 0.2s ease;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 14px 32px;
    font-family: var(--font-header);
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: box-shadow 0.3s ease;
    box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.35);
}

.btn:hover {
    box-shadow: 0 0px 30px rgba(0, 0, 0, 0);
}

.btn-primary {
    background: linear-gradient(135deg, #98c1d9, var(--color-dark-blue));
    color: #ffffff;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 80% 120% at center, #98c1d9 0%, var(--color-dark-blue) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background: var(--color-dark-blue);
    color: #ffffff;
    border: none;
    font-size: 21px;
    position: relative;
    box-shadow: 0px 0px 60px rgba(61, 90, 128, 0.35);
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: radial-gradient(ellipse 80% 120% at center, var(--color-dark-blue) 0%, #000000 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: inherit;
}

.btn-secondary:hover::before {
    opacity: 1;
}

.btn-secondary:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.btn-light {
    background: #ffffff;
    color: var(--color-dark-blue);
}

.btn-light:hover {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a, var(--color-dark-blue));
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.btn-dark {
    background: #000000;
    color: #ffffff;
}

.btn-dark:hover {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a, var(--color-dark-blue));
    transform: translateY(-2px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.btn-lg {
    padding: 18px 42px;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.875rem;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.4) 35%,
            transparent 50%,
            rgba(0, 0, 0, 0.4) 65%,
            #0a0a0a 100%
        ),
        radial-gradient(
            ellipse 250% 250% at 50% -50%,
            rgba(0, 0, 0, 1) 20%,
            rgba(0, 0, 0, 0.75) 30%,
            rgba(152, 193, 217, 1) 45%,
            rgba(0, 0, 0, 0.75) 60%,
            rgba(0, 0, 0, 1) 80%
        );
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 1200px;
    padding: 4rem 2rem;
    z-index: 1;
}

.hero-title {
    font-family: var(--font-header-black);
    font-size: clamp(3.5rem, 8vw, 6.4rem);
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-transform: uppercase;
    margin-top: -9rem;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

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

.hero-cta .btn {
    padding: 1rem 3rem;
    font-size: clamp(1.3rem, 2.8vw, 1.7rem);
    border-radius: 1.4rem;
    text-transform: uppercase;
}

.hero-note {
    color: #ffffff;
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    font-weight: 400;
    text-align: center;
    margin-top: clamp(0.4rem, 1vw, 0.5rem);
    opacity: 0.9;
}

.logo-showcase {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 30%);
    background: #000000;
    border-radius: clamp(16px, 2vw, 24px);
    padding: clamp(16px, 2vw, 25px) 0;
    width: 80%;
    max-width: 1400px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.logo-showcase-title {
    text-align: center;
    font-size: clamp(1rem, 1.5vw, 1.3rem);
    font-family: var(--font-header);
    color: #999999;
    letter-spacing: 1px;
    margin-bottom: clamp(12px, 2vw, 25px);
    padding: 0 clamp(16px, 3vw, 40px);
    text-transform: uppercase;
}

.logo-track-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: clamp(50px, 8vw, 100px);
    display: grid;
    place-items: center;
}

.logo-track {
    width: calc((clamp(50px, 8vw, 90px) + 4rem) * 46);
    display: flex;
    gap: 4rem;
    animation: logoScroll 70s linear infinite;
    pointer-events: none;
    user-select: none;
}

.logo-item {
    width: clamp(50px, 8vw, 90px);
    height: clamp(50px, 8vw, 90px);
    display: grid;
    place-items: center;
    pointer-events: none;
    user-select: none;
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    opacity: 0.8;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

.logo-track-container::before,
.logo-track-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: clamp(50px, 10vw, 150px);
    z-index: 2;
    pointer-events: none;
}

.logo-track-container::before {
    left: 0;
    background: linear-gradient(to right, #000000 0%, transparent 100%);
}

.logo-track-container::after {
    right: 0;
    background: linear-gradient(to left, #000000 0%, transparent 100%);
}

@keyframes logoScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-1 * (clamp(50px, 8vw, 90px) + 4rem) * 23));
    }
}

.section {
    padding: 8rem 0;
}

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

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--color-gray);
    max-width: 600px;
    margin: 0 auto;
}

.section-dark .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.social-proof-section-title {
    text-align: center;
    text-transform: uppercase;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-family: var(--font-header);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
    margin-bottom: clamp(2rem, 3.5vw, 3rem);
}

.social-proof-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin: 0 auto 1.25rem;
}

.social-proof-box {
    background-color: #1b1b1b;
    border: 2px solid rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    padding: 2rem;
}

.social-proof-box-vertical {
    display: flex;
    flex-direction: column;
}

.social-proof-box-horizontal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2.5rem;
}

.social-proof-box-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.25rem;
}

.social-proof-box-image-horizontal {
    width: 50%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.social-proof-box-content {
    flex: 1;
}

.social-proof-box-title {
    font-family: var(--font-header);
    font-size: 1.75rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 0.8375rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-proof-box-desc {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 1.3625rem;
}

.social-proof-box .btn {
    display: inline-block;
}

.social-proof-full-width {
    grid-column: 1 / -1;
}

.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.about-content h2 {
    margin-bottom: 2rem;
}

.about-content p {
    margin-bottom: 2rem;
    color: var(--color-gray);
}

.lead-magnets {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.lead-magnet-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 4rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
}

.lead-magnet-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.lead-magnet-card.expired {
    opacity: 0.6;
    position: relative;
}

.lead-magnet-card.expired::after {
    content: 'No Longer Available';
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--color-gray);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.lead-magnet-card h3 {
    margin-bottom: 1rem;
    color: var(--color-dark-blue);
}

.lead-magnet-card p {
    flex-grow: 1;
    margin-bottom: 2rem;
    color: var(--color-gray);
}

.cta-section {
    text-align: center;
    padding: 8rem 0;
}

.cta-section h2 {
    margin-bottom: 1rem;
}

.cta-section p {
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.booking-widget-placeholder {
    background: rgba(255, 255, 255, 0.1);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 6rem;
    max-width: 800px;
    margin: 0 auto;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
}

.bg-white .booking-widget-placeholder {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.2);
    color: rgba(0, 0, 0, 0.4);
}

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

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
}

.bg-white .faq-item {
    border-color: rgba(0, 0, 0, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-header);
    font-size: 1.125rem;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    transition: 0.2s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: rgba(255, 255, 255, 0.7);
}

.bg-white .faq-answer {
    color: var(--color-gray);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-top: 1rem;
}

.bottom-cta {
    background: linear-gradient(135deg, var(--color-light-blue), var(--color-dark-blue));
    text-align: center;
    padding: 6rem 2rem;
}

.bottom-cta h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.bottom-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.footer {
    background: #0a0a0a;
    color: #ffffff;
    padding: 6rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 6rem;
    margin-bottom: 6rem;
}

.footer-brand img {
    height: 50px;
    margin-bottom: 2rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    max-width: 300px;
}

.footer-column h4 {
    margin-bottom: 2rem;
    font-size: 1rem;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: 0.2s ease;
}

.footer-column a:hover {
    color: var(--color-light-blue);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.footer-social a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.footer-social a:hover {
    background: linear-gradient(135deg, var(--color-light-blue), var(--color-dark-blue));
    transform: translateY(-3px);
}

.footer-social svg {
    width: 20px;
    height: 20px;
    fill: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.footer-bottom-links a:hover {
    color: var(--color-light-blue);
}

.page-header {
    padding: calc(80px + 6rem) 0 6rem;
    text-align: center;
    background: #0a0a0a;
    color: #ffffff;
}

.page-header h1 {
    margin-bottom: 1rem;
}

.page-header p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.social-proof-nav {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem;
    border-radius: 50px;
    max-width: 500px;
    margin: 0 auto 6rem;
}

.social-proof-nav a {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    transition: 0.2s ease;
}

.social-proof-nav a:hover {
    color: #ffffff;
}

.social-proof-nav a.active {
    background: var(--color-dark-blue);
    color: #ffffff;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.case-study-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease;
}

.case-study-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.case-study-card-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.case-study-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s ease;
}

.case-study-card:hover .case-study-card-image img {
    transform: scale(1.05);
}

.case-study-card-content {
    padding: 2rem;
}

.case-study-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.case-study-card p {
    color: var(--color-gray);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.case-study-card .btn {
    width: 100%;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-video {
    aspect-ratio: 16/9;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
}

.testimonial-content {
    padding: 2rem;
}

.testimonial-content h4 {
    margin-bottom: 0.5rem;
}

.testimonial-content p {
    color: var(--color-gray);
    font-size: 0.9rem;
}

.client-wins-grid {
    columns: 3;
    column-gap: 2rem;
}

.client-win-item {
    break-inside: avoid;
    margin-bottom: 2rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.client-win-item img {
    width: 100%;
    display: block;
}

.case-study-post {
    padding: calc(80px + 6rem) 0 8rem;
}

.case-study-post-header {
    text-align: center;
    margin-bottom: 6rem;
}

.case-study-post-header h1 {
    margin-bottom: 1rem;
}

.case-study-post-image {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 6rem;
}

.case-study-post-image img {
    width: 100%;
    height: auto;
}

.case-study-post-content {
    max-width: 800px;
    margin: 0 auto;
}

.case-study-post-content h2 {
    margin: 4rem 0 2rem;
}

.case-study-post-content h3 {
    margin: 2rem 0 1rem;
}

.case-study-post-content p {
    margin-bottom: 2rem;
    color: var(--color-gray);
}

.case-study-post-content ul,
.case-study-post-content ol {
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.case-study-post-content li {
    margin-bottom: 0.5rem;
    color: var(--color-gray);
    list-style: disc;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.blog-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.blog-card-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 2rem;
}

.blog-card-date {
    color: var(--color-dark-blue);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.blog-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.blog-card p {
    color: var(--color-gray);
    font-size: 0.95rem;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 6rem;
}

.pagination a,
.pagination span {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 500;
    transition: 0.2s ease;
}

.pagination a {
    background: #ffffff;
    color: var(--color-dark-blue);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.pagination a:hover {
    background: var(--color-dark-blue);
    color: #ffffff;
}

.pagination span.active {
    background: var(--color-dark-blue);
    color: #ffffff;
}

.blog-post {
    padding: calc(80px + 6rem) 0 8rem;
}

.blog-post-header {
    text-align: center;
    margin-bottom: 6rem;
}

.blog-post-meta {
    color: var(--color-dark-blue);
    font-weight: 600;
    margin-bottom: 1rem;
}

.blog-post-header h1 {
    margin-bottom: 1rem;
}

.blog-post-image {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 6rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.blog-post-image img {
    width: 100%;
    height: auto;
}

.blog-post-content {
    max-width: 800px;
    margin: 0 auto;
}

.blog-post-content h2 {
    margin: 4rem 0 2rem;
    color: #000000;
}

.blog-post-content h3 {
    margin: 2rem 0 1rem;
    color: #000000;
}

.blog-post-content p {
    margin-bottom: 2rem;
    color: var(--color-gray);
}

.blog-post-content ul,
.blog-post-content ol {
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.blog-post-content li {
    margin-bottom: 0.5rem;
    color: var(--color-gray);
    list-style: disc;
}

.blog-post-content blockquote {
    border-left: 4px solid var(--color-dark-blue);
    padding-left: 2rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--color-dark-blue);
}

.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    padding: calc(80px + 6rem) 0 6rem;
}

.about-hero-content h1 {
    margin-bottom: 2rem;
}

.about-hero-content p {
    color: var(--color-gray);
    margin-bottom: 2rem;
}

.about-hero-image img {
    border-radius: 20px;
    width: 100%;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.about-value-card {
    background: #ffffff;
    padding: 4rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.about-value-card h3 {
    color: var(--color-dark-blue);
    margin-bottom: 1rem;
}

.about-value-card p {
    color: var(--color-gray);
}

.about-team {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.team-member {
    text-align: center;
}

.team-member-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 2rem;
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h4 {
    margin-bottom: 0.5rem;
}

.team-member p {
    color: var(--color-gray);
}

.careers-section {
    padding: calc(80px + 6rem) 0 8rem;
}

.careers-header {
    text-align: center;
    margin-bottom: 6rem;
}

.careers-header h1 {
    margin-bottom: 1rem;
}

.careers-header p {
    color: var(--color-gray);
    max-width: 600px;
    margin: 0 auto;
}

.form-embed-placeholder {
    background: #f5f5f5;
    border: 2px dashed rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    padding: 6rem;
    max-width: 700px;
    margin: 0 auto;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray);
}

.booking-page {
    padding: calc(80px + 6rem) 0 8rem;
    min-height: 100vh;
}

.booking-header {
    text-align: center;
    margin-bottom: 6rem;
}

.booking-header h1 {
    margin-bottom: 1rem;
}

.booking-header p {
    color: var(--color-gray);
    max-width: 600px;
    margin: 0 auto;
}

.legal-page {
    padding: calc(80px + 6rem) 0 8rem;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    margin-bottom: 4rem;
    text-align: center;
}

.legal-content h2 {
    margin: 4rem 0 2rem;
    font-size: 1.5rem;
}

.legal-content h3 {
    margin: 2rem 0 1rem;
    font-size: 1.25rem;
}

.legal-content p {
    margin-bottom: 2rem;
    color: var(--color-gray);
}

.legal-content ul {
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: var(--color-gray);
    list-style: disc;
}

.gradient-border {
    position: relative;
    border-radius: 12px;
    isolation: isolate;
}

.gradient-border::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 12px;
    padding: 3px;
    background: radial-gradient(circle 750px at var(--global-mouse-x, 50%) var(--global-mouse-y, 50%), rgba(152, 193, 217, 0.6) 0%, rgba(152, 193, 217, 0.35) 30%, rgba(61, 90, 128, 0.15) 60%, transparent 100%);    -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.2s ease;
    pointer-events: none;
    z-index: 1;
}

.gradient-border::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: radial-gradient(circle 1900px at var(--global-mouse-x, 50%) var(--global-mouse-y, 50%), rgba(152, 193, 217, 0.15) 0%, rgba(152, 193, 217, 0.08) 30%, rgba(61, 90, 128, 0.03) 60%, transparent 100%);
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
    z-index: -1;
}

.gradient-border:hover::before,
.gradient-border:hover::after {
    opacity: 1;
}

@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .case-studies-grid,
    .testimonials-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .client-wins-grid {
        columns: 2;
    }
    
    .about-values,
    .about-team {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .nav {
        width: 95%;
        top: 10px;
        height: auto;
        min-height: 70px;
        padding: 0;
    }
    
    .nav-container {
        padding: 15px 30px;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .nav-right {
        order: 2;
    }
    
    .nav-links {
        order: 3;
        position: relative;
        left: auto;
        transform: none;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        padding: 0;
        opacity: 0;
        transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
    }
    
    .nav-links.active {
        max-height: 500px;
        opacity: 1;
        padding: 20px 0 30px 0;
    }
    
    .nav-links .nav-link {
        width: 100%;
        text-align: center;
        padding: 16px 20px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        transition: 0.2s ease;
        white-space: normal;
    }
    
    .nav-links .nav-link:hover {
        background: rgba(255, 255, 255, 0.1);
    }
    
    .nav-mobile-toggle {
        display: flex;
        position: relative;
        width: 30px;
        height: 24px;
        justify-content: center;
        align-items: center;
    }
    
    .nav-mobile-toggle span {
        position: absolute;
        transition: 0.2s ease;
    }
    
    .nav-mobile-toggle span:nth-child(1) {
        top: 0;
    }
    
    .nav-mobile-toggle span:nth-child(2) {
        top: 50%;
        transform: translateY(-50%);
    }
    
    .nav-mobile-toggle span:nth-child(3) {
        bottom: 0;
    }
    
    .nav-mobile-toggle.active span:nth-child(1) {
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
    }
    
    .nav-mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-mobile-toggle.active span:nth-child(3) {
        bottom: 50%;
        transform: translateY(50%) rotate(-45deg);
    }
    
    .nav-logo img {
        height: 60px;
    }
    
    .nav-cta {
        display: none;
    }
    
    .social-proof-grid {
        grid-template-columns: 1fr;
    }
    
    .social-proof-box-horizontal {
        flex-direction: column;
    }
    
    .social-proof-box-image-horizontal {
        width: 100%;
        height: 250px;
    }
    
    .about-section,
    .about-hero {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-image {
        order: -1;
    }
    
    .lead-magnets {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .section {
        padding: 6rem 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-brand p {
        max-width: 100%;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .case-studies-grid,
    .testimonials-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .client-wins-grid {
        columns: 1;
    }
    
    .about-values,
    .about-team {
        grid-template-columns: 1fr;
    }
    
    .social-proof-nav {
        flex-direction: column;
        border-radius: 20px;
    }
    
    .hero-title {
        font-size: clamp(4rem, 8vw, 6rem);
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .logo-showcase {
        width: 90%;
        border-radius: 16px;
    }
    
    .logo-track {
        width: calc((60px + 2rem) * 46);
        gap: 2rem;    
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .btn {
        padding: 12px 24px;
    }
    
    .btn-lg {
        padding: 14px 32px;
    }
}