/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900&display=swap');

body {
    font-family: 'Inter', 'Inter Fallback', sans-serif;
    background: radial-gradient(ellipse at center, #151515 0%, #0a0a0a 100%);
    color: #ffffff;
    line-height: 1.2em;
    min-height: 100vh;
    position: relative;
    cursor: none;
    font-weight: 400;
}

/* Custom Cursor */
.custom-cursor {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.2s ease-out;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}

.custom-cursor-dot {
    width: 4px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transition: all 0.15s ease-out;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}

.custom-cursor.hover {
    transform: translate(-50%, -50%) scale(1.3);
    border-color: rgba(255, 255, 255, 0.6);
    background-color: rgba(255, 255, 255, 0.05);
}

.custom-cursor-dot.hover {
    transform: translate(-50%, -50%) scale(0);
}

/* Wave Animation */
@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-wave {
    animation: slideUpFade 0.8s ease-out forwards;
    opacity: 0;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 1px, rgba(255, 255, 255, 0.03) 1px, rgba(255, 255, 255, 0.03) 2px),
        repeating-linear-gradient(90deg, transparent, transparent 1px, rgba(255, 255, 255, 0.03) 1px, rgba(255, 255, 255, 0.03) 2px);
    pointer-events: none;
    z-index: 1;
    opacity: 0.5;
}

body > * {
    position: relative;
    z-index: 2;
}

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

/* Header */
.header {
    background-color: transparent;
    padding: 20px 0;
    height: 64px;
    display: flex;
    align-items: center;
    animation: slideUpFade 0.8s ease-out forwards;
    opacity: 0;
    animation-delay: 0.1s;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-family: 'Inter', 'Inter Fallback', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: rgb(255, 255, 255);
    letter-spacing: -0.02em;
    line-height: 1em;
    cursor: pointer;
    transition: text-shadow 0.3s ease;
}

.logo sup {
    font-size: 0.6em;
    vertical-align: super;
}

.logo:hover {
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3), 0 0 25px rgba(255, 255, 255, 0.15);
}

.booking-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #777777;
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1em;
    transition: text-shadow 0.3s ease;
    cursor: default;
}

.booking-status:hover {
    text-shadow: 0 0 15px rgba(119, 119, 119, 0.2), 0 0 25px rgba(119, 119, 119, 0.1);
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #00ff00;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    box-shadow: 0 0 0 0 rgba(0, 255, 0, 1);
    animation: pulse 2s infinite;
}

.status-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-color: #00ff00;
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.7);
    }
    
    70% {
        box-shadow: 0 0 0 10px rgba(0, 255, 0, 0);
    }
    
    100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 0, 0);
    }
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    
    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

/* Main Content */
.main-content {
    padding: 0;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 60px 0;
    min-height: 269px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.headline {
    font-family: 'Inter', 'Inter Fallback', sans-serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #e8e8e8;
    line-height: 1.3em;
    letter-spacing: -0.05em;
    max-width: 100%;
    transition: text-shadow 0.3s ease;
    cursor: default;
    animation: slideUpFade 0.8s ease-out forwards;
    opacity: 0;
    animation-delay: 0.3s;
}

.headline:hover {
    text-shadow: 0 0 15px rgba(232, 232, 232, 0.2), 0 0 25px rgba(232, 232, 232, 0.1);
}

.subheadline {
    font-family: 'Inter', 'Inter Fallback', sans-serif;
    font-size: 25px;
    color: #a1a1a1;
    margin-bottom: 48px;
    max-width: 100%;
    line-height: 1.4em;
    font-weight: 600;
    letter-spacing: -0.05em;
    transition: text-shadow 0.3s ease;
    cursor: default;
    animation: slideUpFade 0.8s ease-out forwards;
    opacity: 0;
    animation-delay: 0.5s;
}

.subheadline:hover {
    text-shadow: 0 0 15px rgba(161, 161, 161, 0.2), 0 0 25px rgba(161, 161, 161, 0.1);
}

.cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    margin-bottom: 64px;
    animation: slideUpFade 0.8s ease-out forwards;
    opacity: 0;
    animation-delay: 0.7s;
}

.cta-button {
    background-color: #ffffff;
    color: #000000;
    border: none;
    padding: 0 16px;
    height: 36px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.cta-button:hover {
    background-color: #ffffff;
    color: #000000;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4), 0 0 40px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.cta-button-secondary {
    background-color: #000000;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0 16px;
    height: 36px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.cta-button-secondary:hover {
    background-color: #1a1a1a;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.social-proof {
    margin-bottom: 16px;
    animation: slideUpFade 0.8s ease-out forwards;
    opacity: 0;
    animation-delay: 0.9s;
}

.social-proof p {
    color: #e8e8e8;
    margin-bottom: 0;
    font-size: 20px;
    font-weight: 500;
    display: inline;
    letter-spacing: 0;
    transition: text-shadow 0.3s ease;
    cursor: default;
}

.social-proof p:hover {
    text-shadow: 0 0 15px rgba(232, 232, 232, 0.2), 0 0 25px rgba(232, 232, 232, 0.1);
}

.profile-pictures {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin-left: 4px;
    vertical-align: middle;
}

.profile-pic {
    width: 40px;
    height: 40px;
    background-color: #2a2a2a;
    border-radius: 50%;
    border: 2px solid #000000;
    margin-left: -8px;
    overflow: hidden;
    position: relative;
}

.profile-pic:first-child {
    margin-left: 0;
}

.profile-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 50%;
    filter: grayscale(100%);
}

.metrics {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    width: 909px;
    max-width: 100%;
    padding: 48px 0 40px 0;
    animation: slideUpFade 0.8s ease-out forwards;
    opacity: 0;
    animation-delay: 1.1s;
}

.metric {
    text-align: center;
    flex: 1;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px 16px;
    transition: all 0.3s ease;
}

.metric:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.metric-number {
    font-size: 52px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: -0.04em;
    line-height: 1em;
    transition: text-shadow 0.3s ease;
    cursor: default;
}

.metric-number:hover {
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.25), 0 0 30px rgba(255, 255, 255, 0.15);
}

.metric-label {
    font-size: 18px;
    color: #777777;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1em;
    transition: text-shadow 0.3s ease;
    cursor: default;
}

.metric-label:hover {
    text-shadow: 0 0 15px rgba(119, 119, 119, 0.2), 0 0 25px rgba(119, 119, 119, 0.1);
}

/* Calendar Section */
.calendar-section {
    margin: 0 0 60px 0;
    padding: 60px 0 0 0;
    animation: slideUpFade 0.8s ease-out forwards;
    opacity: 0;
    animation-delay: 1.3s;
    position: relative;
}

.calendar-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 960px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
}

.calendar-container {
    background-color: transparent;
    border-radius: 0;
    padding: 0;
    margin: 0;
    box-shadow: none;
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.calendar-container #my-cal-inline-45min {
    width: 100%;
    min-height: 600px;
}

/* Prevent body scroll when interacting with calendar */
body {
    overflow-x: hidden;
}

/* FAQ Section */
.faq-section {
    margin: 80px 0 60px 0;
    padding: 60px 0 0 0;
    position: relative;
    animation: slideUpFade 0.8s ease-out forwards;
    opacity: 0;
    animation-delay: 1.5s;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 960px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
}

.faq-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 48px;
    letter-spacing: -0.03em;
    transition: text-shadow 0.3s ease;
    cursor: default;
}

.faq-title:hover {
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.2), 0 0 25px rgba(255, 255, 255, 0.1);
}

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

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

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    opacity: 0.8;
}

.faq-question h3 {
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.4em;
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    font-size: 24px;
    color: #ffffff;
    font-weight: 300;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

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

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

.faq-answer p {
    margin: 0;
    font-size: 17px;
    color: #a1a1a1;
    line-height: 1.6em;
    letter-spacing: -0.01em;
    font-weight: 500;
}

/* Footer */
.footer {
    padding: 100px 0 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 0;
    animation: slideUpFade 0.8s ease-out forwards;
    opacity: 0;
    animation-delay: 1.7s;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    flex: none;
}

.logo-s {
    width: 52px;
    height: 52px;
    display: block;
    object-fit: contain;
}

.footer-links {
    display: flex;
    gap: 60px;
    margin-left: auto;
}

.link-column {
    min-width: 82px;
}

.link-column h4 {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #ffffff;
    letter-spacing: -0.01em;
    line-height: 1em;
    transition: text-shadow 0.3s ease;
    cursor: pointer;
}

.link-column h4:hover {
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.25), 0 0 25px rgba(255, 255, 255, 0.15);
}

.link-column a {
    display: block;
    color: #777777;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1em;
}

.link-column a:hover {
    color: #ffffff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.25), 0 0 25px rgba(255, 255, 255, 0.15);
}

.footer-copyright {
    width: 100%;
    padding: 30px 0 0 0;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright p {
    font-size: 14px;
    color: #777777;
    margin: 0;
    font-weight: 400;
    letter-spacing: -0.01em;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        cursor: auto;
    }
    
    .custom-cursor,
    .custom-cursor-dot {
        display: none;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .header {
        height: auto;
        padding: 16px 0;
    }
    
    .logo {
        font-size: 14px;
    }
    
    .booking-status {
        font-size: 13px;
    }
    
    .hero {
        padding: 40px 0 20px 0;
        min-height: auto;
    }
    
    .headline {
        font-size: 28px;
        letter-spacing: -0.03em;
        margin-bottom: 12px;
        line-height: 1.2em;
    }
    
    .subheadline {
        font-size: 13px;
        margin-bottom: 32px;
        line-height: 1.5em;
    }
    
    .subheadline br {
        display: none;
    }
    
    .cta-buttons {
        flex-direction: row;
        gap: 8px;
        margin-bottom: 40px;
    }
    
    .cta-button,
    .cta-button-secondary {
        height: 40px;
        padding: 0 16px;
        font-size: 10px;
        white-space: nowrap;
    }
    
    .social-proof {
        margin-bottom: 24px;
    }
    
    .social-proof p {
        font-size: 12px;
        display: inline;
        margin-bottom: 0;
    }
    
    .profile-pictures {
        display: flex;
        justify-content: center;
        margin-left: 0;
    }
    
    .profile-pic {
        width: 32px;
        height: 32px;
    }
    
    .metrics {
        padding: 32px 0 40px 0;
        flex-direction: row;
        gap: 12px;
        width: 100%;
        justify-content: space-between;
    }
    
    .metric {
        padding: 16px 10px;
        border-radius: 12px;
    }
    
    .metric:hover {
        transform: none;
    }
    
    .metric-number {
        font-size: 28px;
        letter-spacing: -0.02em;
        margin-bottom: 6px;
    }
    
    .metric-label {
        font-size: 10px;
    }
    
    .calendar-section {
        padding: 40px 0 0 0;
    }
    
    .calendar-section::before {
        max-width: 100%;
    }
    
    .calendar-container {
        min-height: 500px;
    }
    
    .calendar-container #my-cal-inline-45min {
        min-height: 500px;
    }
    
    .faq-section {
        margin: 40px 0 40px 0;
        padding: 40px 0 0 0;
    }
    
    .faq-section::before {
        max-width: 100%;
    }
    
    .faq-title {
        font-size: 24px;
        margin-bottom: 28px;
        padding: 0;
    }
    
    .faq-container {
        padding: 0 10px;
    }
    
    .faq-question {
        padding: 16px 0;
    }
    
    .faq-question h3 {
        font-size: 13px;
        padding-right: 12px;
        line-height: 1.4em;
        font-weight: 500;
    }
    
    .faq-icon {
        font-size: 16px;
    }
    
    .faq-answer p {
        font-size: 11px;
        line-height: 1.5em;
    }
    
    .faq-item.active .faq-answer {
        padding-bottom: 16px;
    }
    
    .footer {
        padding: 50px 0 40px 0;
    }
    
    .footer .container {
        flex-direction: row;
        gap: 20px;
        align-items: flex-start;
    }
    
    .footer-logo {
        flex-shrink: 0;
    }
    
    .logo-s {
        width: 40px;
        height: 40px;
    }
    
    .footer-links {
        gap: 30px;
        margin-left: auto;
        width: auto;
    }
    
    .link-column {
        min-width: 80px;
    }
    
    .link-column h4 {
        font-size: 13px;
        margin-bottom: 8px;
    }
    
    .link-column a {
        font-size: 13px;
        margin-bottom: 8px;
    }
    
    .footer-copyright {
        margin-top: 40px;
        padding-top: 24px;
    }
    
    .footer-copyright .container {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .footer-copyright p {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .headline {
        font-size: 22px;
        letter-spacing: -0.02em;
    }
    
    .subheadline {
        font-size: 11px;
        line-height: 1.4em;
    }
    
    .subheadline br {
        display: none;
    }
    
    .cta-buttons {
        gap: 6px;
        margin-bottom: 36px;
    }
    
    .cta-button,
    .cta-button-secondary {
        height: 36px;
        padding: 0 14px;
        font-size: 9px;
        letter-spacing: 0.03em;
    }
    
    .social-proof p {
        font-size: 12px;
    }
    
    .profile-pic {
        width: 28px;
        height: 28px;
    }
    
    .metric-number {
        font-size: 24px;
    }
    
    .metric-label {
        font-size: 9px;
    }
    
    .metrics {
        gap: 8px;
        padding: 32px 0 36px 0;
    }
    
    .metric {
        padding: 14px 8px;
        border-radius: 10px;
    }
    
    .faq-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .faq-container {
        padding: 0 8px;
    }
    
    .faq-question {
        padding: 12px 0;
    }
    
    .faq-question h3 {
        font-size: 12px;
        padding-right: 10px;
        line-height: 1.3em;
        font-weight: 500;
    }
    
    .faq-icon {
        font-size: 14px;
    }
    
    .faq-answer p {
        font-size: 10px;
        line-height: 1.5em;
    }
    
    .faq-item.active .faq-answer {
        padding-bottom: 12px;
    }
    
    .logo-s {
        width: 36px;
        height: 36px;
    }
    
    .footer-links {
        gap: 24px;
    }
    
    .link-column {
        min-width: 70px;
    }
    
    .link-column h4 {
        font-size: 12px;
        margin-bottom: 8px;
    }
    
    .link-column a {
        font-size: 12px;
        margin-bottom: 8px;
    }
    
    .footer-copyright p {
        font-size: 10px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        max-width: 720px;
    }
    
    .headline {
        font-size: 38px;
    }
    
    .subheadline {
        font-size: 22px;
    }
}
