@charset "UTF-8";

/* ==========================================================================
   CYPRUS AUSWANDERN - FIGMA 1:1 REPRODUCTION
   Colors: #FFFFFF, #000000, #CCFF00, #F3F3F4, #EEEEEE, #FAFAFA
   Typography: Montserrat
   ========================================================================== */

@font-face {
    font-family: 'Montserrat';
    src: url('Montserrat/Montserrat-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

:root {
    /* Exact Figma Colors */
    --color-bg-main: #FFFFFF;     /* fill_9JFWBY */
    --color-bg-card: #F3F3F4;     /* fill_O4GWPM */
    --color-bg-calc: #FAFAFA;     /* fill_MYJLY0 */
    --color-text: #000000;        /* fill_NM681B */
    --color-text-inverse: #FFFFFF;
    --color-accent: #CCFF00;      /* fill_1PAWDX */
    --color-border: #EEEEEE;      /* fill_V6U1HQ */

    /* Typography */
    --font-main: 'Montserrat', sans-serif;
    
    /* Spacing & Radii (Derived from Figma layout properties) */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-pill: 99px;
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-main);
    color: var(--color-text);
    background-color: var(--color-bg-main);
}

.website-frame {
    width: 100%;
    max-width: 1440px; /* layout_FE4I3N width */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.container {
    width: 100%;
    padding: 0 100px; /* layout_CLC2GY padding */
    margin: 0 auto;
}

.section {
    padding: 40px 0; /* padding: 80px 0px → halved */
}

/* ==========================================================================
   HOVER FLOAT ANIMATION (global for all cards/boxes)
   ========================================================================== */
.usp-card,
.process-step,
.expert-card,
.about-avatar-wrapper,
.location-section-img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.usp-card:hover,
.process-step:hover,
.expert-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}



.about-avatar-wrapper:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(204, 255, 0, 0.3);
}


/* Typography styles based on text nodes */
h1, .hero-title {
    font-weight: 800; /* Assuming H1 is heavy */
    font-size: 100px;
    line-height: 1.1;
    color: var(--color-text);
}

h2, .section-title {
    font-weight: 700;
    font-size: 50px;
    line-height: 1.2;
    color: var(--color-text);
}

h3, .step-title, .usp-title, .feature-title, .about-greeting {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.3;
    color: var(--color-text);
}

p, .hero-text, .usp-text, .step-text, .feature-text {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-text);
}

.hero-subtitle {
    font-weight: 600;
    font-size: 30px;
    line-height: 1.3;
    color: var(--color-text);
}

/* ==========================================================================
   COMPONENTS
   ========================================================================== */
.chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-accent); /* fill_1PAWDX = #CCFF00 */
    border-radius: var(--radius-pill);     /* cornerRadius: 99px */
    padding: 8px 18px;                     /* paddingTop/Bottom: 8, Left/Right: 18 */
    font-family: var(--font-main);
    font-weight: 600;                      /* Montserrat SemiBold */
    font-size: 14px;                       /* fontSize: 14 */
    text-transform: uppercase;             /* textCase: UPPER */
    letter-spacing: 2px;                   /* letterSpacing: 2 */
    color: var(--color-text);
    line-height: 17.07px;                  /* lineHeightPx: 17.07 */
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-text); /* fill_NM681B */
    color: var(--color-text-inverse);
    border-radius: var(--radius-sm); /* borderRadius: 8px */
    padding: 16px 32px;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
}

/* ==========================================================================
   HERO SECTION (FIGMA 1:1)
   ========================================================================== */
.hero {
    padding-top: 40px;
}

.gead-bild-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 16px 0;
}

.gead-bild {
    position: relative;
    width: 994px;
    height: 677px;
}

.hero-vector {
    position: absolute;
    left: 0;
    top: 0;
    width: 994px;
    height: 603px;
    z-index: 0;
}

.hero-title {
    position: absolute;
    left: 30px;
    top: 60px;
    width: 706px;
    height: 246px;
    font-family: var(--font-main);
    font-weight: 800;
    font-size: 100px;
    line-height: 82px;
    text-transform: uppercase;
    color: var(--color-text);
    z-index: 1;
    margin: 0;
}

.hero-title .mobile-break {
    display: none;
}

.hero-subtitle {
    position: absolute;
    left: 30px;
    top: 337px;
    width: 444px;
    height: 90px;
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 30px;
    line-height: 45px;
    color: var(--color-text);
    z-index: 1;
    margin: 0;
}

.hero-frame14 {
    position: absolute;
    left: 366px;
    top: 433.5px;
    width: 493px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-left: 32px;
    border-left: 1px solid var(--color-text);
    z-index: 1;
}

.hero-text {
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
    color: var(--color-text);
    margin: 0;
}

.hero-author-frame {
    display: flex;
    flex-direction: column;
}

.hero-author-frame .author-name {
    font-weight: 600;
    font-size: 16px;
    color: var(--color-text);
}

.hero-author-frame .author-role {
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--color-text);
    opacity: 0.5;
}

.hero-frame16 {
    position: absolute;
    left: 58px;
    top: 490px;
    width: 26px;
    height: 26px;
    z-index: 1;
}

/* ==========================================================================
   USPS SECTION (FIGMA 1:1)
   ========================================================================== */
.usps-container {
    width: 100%;
    max-width: 994px; /* Matches the hero gead-bild width */
    margin: 0 auto;
    padding: 40px 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
}

.usp-card {
    flex: 1;
    align-self: stretch;
    background-color: var(--color-bg-card); /* fill_0KZO9D #F3F3F4 */
    border-radius: var(--radius-md); /* 16px */
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.usp-icon {
    width: 50px;
    height: 50px;
    border-radius: 99px;
    object-fit: contain;
}

/* ==========================================================================
   CTA SECTION (FIGMA 1:1)
   ========================================================================== */
.cta-section {
    padding: 40px 0;
    width: 100%;
}

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

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-text);
    color: var(--color-text-inverse);
    border-radius: var(--radius-sm); /* 8px */
    padding: 16px 24px;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    text-align: center;
}
.about-container {
    width: 100%;
    max-width: 994px;
    margin: 0 auto;
    padding: 40px 0;
}

.about-frame52 {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 32px;
    width: 100%;
}

.about-frame29 {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 40px;
}

.about-title {
    font-family: var(--font-main);
    font-weight: 800;
    font-size: 50px;
    line-height: 41px;
    text-transform: uppercase;
    color: var(--color-text);
    margin: 0;
}

.about-frame26 {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
}

.about-avatar-img {
    width: 305px;
    height: 305px;
    border-radius: 999px;
    object-fit: cover;
}

.about-frame25 {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-greeting {
    margin: 0;
}

.about-text {
    margin: 0;
}

/* ==========================================================================
   PROCESS SECTION (FIGMA 1:1)
   ========================================================================== */
.process-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 100%;
    max-width: 994px;
    margin: 0 auto;
    padding: 40px 0;
}

.process-title {
    font-family: var(--font-main);
    font-weight: 800;
    font-size: 50px;
    line-height: 41px;
    text-transform: uppercase;
    text-align: center;
    color: var(--color-text);
    margin: 0;
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    width: 100%;
}

.process-step {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    border-radius: var(--radius-md); /* 16px */
}

.highlighted-step {
    background-color: var(--color-accent); /* fill_1PAWDX */
}

.default-step {
    border: 2px solid var(--color-border); /* fill_XHX0EZ */
    background-color: transparent;
}

.step-number-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: var(--color-text);
    border-radius: var(--radius-sm); /* 8px */
}

.step-number {
    color: var(--color-text-inverse);
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 18px;
    margin: 0;
}

/* ==========================================================================
   LOCATION SECTION (FIGMA 1:1)
   ========================================================================== */
.location-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 100%;
    max-width: 994px;
    margin: 0 auto;
    padding: 40px 0;
}

.location-title {
    font-family: var(--font-main);
    font-weight: 800;
    font-size: 50px;
    line-height: 41px;
    text-transform: uppercase;
    text-align: center;
    color: var(--color-text);
    margin: 0;
    width: 100%;
    max-width: 648px;
}

.location-image-main {
    width: 100%;
    height: 392px;
    border-radius: var(--radius-md); /* 16px */
    object-fit: cover;
}

.location-frame25 {
    width: 100%;
    max-width: 606px;
    text-align: left;
}

.location-text {
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
    color: var(--color-text);
    margin: 0;
}

.location-line {
    width: 100%;
    max-width: 606px;
    height: 1px;
    background-color: var(--color-border); /* stroke_3RWE5H */
}

.location-frame30 {
    display: flex;
    flex-direction: row;
    gap: 40px;
    width: 100%;
    max-width: 606px;
}

.location-frame26, .location-frame27 {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.location-small-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.location-feature-title {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 18px;
    color: var(--color-text);
    margin: 0;
}

/* ==========================================================================
   RECHNER SECTION (FIGMA 1:1)
   ========================================================================== */
.calculator-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 100%;
    max-width: 994px;
    margin: 0 auto;
    padding: 40px 0 0;
}

.calculator-title {
    font-family: var(--font-main);
    font-weight: 800;
    font-size: 50px;
    line-height: 41px;
    text-transform: uppercase;
    text-align: center;
    color: var(--color-text);
    margin: 0;
    width: 100%;
    max-width: 648px;
}

.calculator-intro {
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
    text-align: center;
    color: var(--color-text);
    margin: 0;
    width: 100%;
    max-width: 606px;
}

.calculator-frame35 {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.calculator-image {
    width: 100%;
    height: 373px;
    border-radius: var(--radius-md) var(--radius-md) 0 0; /* Nur oben abgerundet */
    object-fit: cover;
    display: block; /* Verhindert den weissen Spalt durch inline-Verhalten */
}

.calculator-frame34 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 20px 0 40px;
    width: 100%;
    background-color: var(--color-bg-main); /* #FFFFFF */
    border-radius: 0 0 16px 16px;
}

.calculator-cta-title {
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 30px;
    line-height: 45px;
    color: var(--color-text);
    margin: 0;
    text-align: center;
}

.calculator-cta-text {
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
    color: var(--color-text);
    margin: 0;
    text-align: center;
    max-width: 606px;
}

.calculator-frame33 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 16px;
    width: 100%;
    max-width: 606px;
}

.calculator-input {
    flex: 1;
    height: 52px;
    padding: 16px 24px;
    background-color: var(--color-bg-card); /* #F3F3F4 */
    border: none;
    border-radius: var(--radius-sm); /* 8px */
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 14px;
    color: var(--color-text);
}

.calculator-input::placeholder {
    color: rgba(0, 0, 0, 0.7);
}

.calculator-frame36 {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
    max-width: 606px;
}

.calculator-checkbox {
    width: 24px;
    height: 24px;
    appearance: none;
    background-color: var(--color-border); /* #EEEEEE */
    border-radius: 4px;
    cursor: pointer;
    flex-shrink: 0;
    position: relative;
    transition: background-color 0.2s;
}

.calculator-checkbox:checked {
    background-color: var(--color-accent); /* #CCFF00 */
}

.calculator-checkbox:checked::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 6px;
    height: 11px;
    border: 2px solid #000000;
    border-top: none;
    border-left: none;
    transform: translate(-50%, -60%) rotate(45deg);
}

.calculator-label {
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
    color: var(--color-text);
    margin: 0;
}

/* ==========================================================================
   NETWORK SECTION (FIGMA 1:1)
   ========================================================================== */
.network-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 100%;
    max-width: 994px;
    margin: 0 auto;
    padding: 40px 0;
}

.network-title {
    font-family: var(--font-main);
    font-weight: 800;
    font-size: 50px;
    line-height: 41px;
    text-transform: uppercase;
    text-align: center;
    color: var(--color-text);
    margin: 0;
    width: 100%;
    max-width: 648px;
}

.network-intro {
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
    text-align: center;
    color: var(--color-text);
    margin: 0;
    width: 100%;
    max-width: 606px;
}

.network-frame41 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 24px;
    width: 100%;
}

.expert-card {
    width: 100%;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 40px;
    padding: 40px 40px 20px;
    background-color: var(--color-bg-main); /* #FFFFFF */
    border: 2px solid var(--color-border); /* #EEEEEE */
    border-radius: var(--radius-md); /* 16px */
}

.expert-image {
    width: 232px;
    height: 232px;
    border-radius: 50%;
    object-fit: cover;
    background-color: var(--color-accent); /* #CCFF00 background behind transparent PNG */
}

.expert-frame40 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.expert-name {
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 30px;
    line-height: 45px;
    color: var(--color-text);
    margin: 0;
    text-align: center;
}

.expert-role {
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.7);
    text-align: center;
}

.expert-frame39 {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    width: 100%;
}

.expert-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.expert-label {
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.7);
}

.expert-value-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.expert-flag {
    width: 24px;
    height: 24px;
    border-radius: 40px;
    object-fit: cover;
}

.expert-value {
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 16px;
    color: var(--color-text);
}

.expert-line {
    width: 100%;
    height: 2px;
    background-color: var(--color-border); /* #EEEEEE */
}

.expert-description {
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
    color: var(--color-text);
    margin: 0;
    text-align: left;
    width: 100%;
}

/* ==========================================================================
   FAQ SECTION (FIGMA 1:1)
   ========================================================================== */
.faq-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 100%;
    max-width: 994px;
    margin: 0 auto;
    padding: 40px 0;
}

.faq-title {
    font-family: var(--font-main);
    font-weight: 800;
    font-size: 50px;
    line-height: 41px;
    text-transform: uppercase;
    text-align: center;
    color: var(--color-text);
    margin: 0;
    width: 100%;
    max-width: 648px;
}

.faq-intro {
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
    text-align: center;
    color: var(--color-text);
    margin: 0;
    width: 100%;
    max-width: 380px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
    width: 100%;
}

.faq-line {
    width: 100%;
    height: 1px;
    background-color: var(--color-border); /* #EEEEEE */
}

.faq-item {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.faq-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    cursor: pointer;
    padding: 8px 0;
    transition: opacity 0.2s ease;
}

.faq-header:hover {
    opacity: 0.7;
}

.faq-question {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 18px;
    color: var(--color-text);
    margin: 0;
    padding-right: 24px;
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

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

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

.faq-item.open .faq-answer {
    max-height: 400px;
    padding-top: 8px;
}

.faq-answer p {
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
    color: var(--color-text);
    margin: 0;
    padding-bottom: 8px;
}

/* ==========================================================================
   FOOTER SECTION (DESKTOP — original)
   ========================================================================== */
.footer {
    background-color: var(--color-bg-main);
    width: 100%;
}

/* Desktop: row layout, space-between, max-width 994px, centered */
.footer-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    padding: 80px 0;
    max-width: 994px;
    margin: 0 auto;
    width: 100%;
    gap: 40px;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 320px;
}

.footer-logo {
    width: 117px;
    height: 51px;
}

.footer-text {
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 14px;
    line-height: 25px;
    color: var(--color-text);
    margin: 0;
}

/* Desktop: Nav + Legal side-by-side */
.footer-nav-cols {
    display: flex;
    flex-direction: row;
    gap: 60px;
    align-items: flex-start;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-title {
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 16px;
    line-height: 1.4;
    color: var(--color-text);
    margin: 0;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-links a {
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 14px;
    line-height: 25px;
    color: var(--color-text);
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   STICKY NAVIGATION (FIGMA 1:1)
   ========================================================================== */
.sticky-nav {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: var(--color-bg-main); /* #FFFFFF */
    z-index: 1000;
    border-bottom: 1px solid var(--color-border);
}

.nav-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 24px 100px;
    margin: 0 auto;
    width: 100%;
    max-width: 1440px;
}

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

.nav-logo img {
    width: 117px;
    height: 51px;
}

.nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 16px;
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: rgba(0, 0, 0, 0.5);
}

.btn-secondary {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 16px 24px;
    border: 2px solid var(--color-text);
    border-radius: var(--radius-sm); /* 8px */
    background-color: transparent;
    color: var(--color-text);
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-secondary:hover {
    background-color: var(--color-text);
    color: var(--color-bg-main);
}

/* ==========================================================================
   BURGER MENU
   ========================================================================== */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.wa-nav-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
    text-decoration: none;
    transition: transform 0.2s, opacity 0.2s;
    margin-right: 8px;
}

.wa-nav-icon:hover {
    transform: scale(1.1);
    opacity: 0.7;
}

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
    width: 52px;
    height: 52px;
}

.burger-btn img {
    width: 100%;
    height: 100%;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-bg-main);
    z-index: 2000;
    flex-direction: column;
    padding: 8px 24px;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.mobile-menu.open {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 52px;
    width: 100%;
    margin-bottom: 24px;
}

.mobile-close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    width: 44px;
    height: 44px;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 32px;
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 52px; /* Ausgleich für den Header */
}

.mobile-nav-links a {
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 24px;
    color: var(--color-text);
    text-decoration: none;
    text-align: center;
    transition: color 0.2s;
}

.mobile-nav-links a:hover {
    color: rgba(0,0,0,0.5);
}

.mobile-cta {
    display: inline-block;
    padding: 16px 40px !important;
    font-size: 18px !important;
    background-color: transparent !important;
    color: var(--color-text) !important;
    border: 2px solid var(--color-text) !important;
    border-radius: var(--radius-sm) !important; /* Gleiche Rundung wie Desktop */
    font-weight: 600 !important;
}

/* ==========================================================================
   RESPONSIVE — TABLET (max-width: 1024px)
   ========================================================================== */
@media (max-width: 1024px) {

    /* --- Global --- */
    .section { padding: 32px 0; }
    .container { padding: 0 32px; }

    /* --- Nav --- */
    .nav-links { display: none; }
    .desktop-only { display: inline-flex; } /* Keep "Termin buchen" visible on tablet */
    .burger-btn { display: flex; }
    .nav-container { padding: 24px 32px; }

    /* --- Hero --- */
    .hero { 
        padding: 80px 0; 
    }
    .gead-bild-wrapper { 
        padding: 0 32px; 
        justify-content: center;
        overflow: hidden;
    }
    .gead-bild {
        width: 100%;
        max-width: 704px;
        height: 786px;
        display: block;
        position: relative;
        background-color: transparent;
        padding: 0;
        border-radius: 0;
    }
    .hero-vector {
        display: block;
        width: 704px;
        height: 427px;
        top: 80px;
        left: 0;
        object-fit: fill;
    }
    .hero-title, .hero-subtitle, .hero-frame14 {
        position: absolute;
    }
    .hero-title {
        top: 104px;
        left: 70px !important;
        width: 565px !important;
        font-size: 80px;
        line-height: 67px;
        text-align: left;
    }
    .hero-subtitle {
        top: 337px;
        left: 70px !important;
        width: 444px !important;
        font-size: 30px;
        line-height: 45px;
        text-align: left;
    }
    .hero-frame14 {
        top: 463px;
        left: 70px !important;
        width: 493px !important;
        border-left: 1px solid var(--color-text);
        padding-left: 32px;
        padding-top: 0;
    }
    .hero-frame16 {
        display: none;
    }

    /* --- USPs --- */
    .usps-container {
        flex-direction: column;
        padding: 80px;
        gap: 24px;
        max-width: 100%;
    }
    .usp-card { width: 100%; }

    /* --- CTA --- */
    .cta-section { padding: 80px 0; }

    /* --- About (Figma Node 118:520 1:1) --- */
    .about-container { 
        padding: 80px; 
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        gap: 32px;
        width: 100%;
    }
    .about-frame52 {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }
    .about-frame29 { 
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    .about-title {
        font-size: 50px;
        line-height: 41px;
        text-align: center;
    }
    .about-frame26 {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    .about-avatar-img { 
        width: 305px; 
        height: 305px; 
    }
    .about-frame25 {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    .about-greeting { 
        font-size: 18px;
        line-height: 22px;
        text-align: center; 
    }
    .about-text { 
        font-size: 16px;
        line-height: 30px;
        text-align: center; 
    }

    /* --- Process --- */
    .process-container { padding: 80px; }
    .process-steps { grid-template-columns: 1fr 1fr; gap: 16px; }

    /* --- Location --- */
    .location-container { padding: 80px; }
    .location-image-main { height: 278px; }
    .location-title, .location-frame25, .location-line, .location-frame30 { max-width: 100%; }

    /* --- Calculator --- */
    .calculator-container { padding: 80px 80px 0; }
    .calculator-title, .calculator-intro, .calculator-cta-text, .calculator-frame33, .calculator-frame36 { max-width: 100%; }
    .calculator-frame34 { padding: 40px 0 80px; }
    .calculator-image { height: auto; }

    /* --- Network --- */
    .network-container { padding: 80px; }
    .network-title, .network-intro { max-width: 100%; }
    .network-frame41 { flex-direction: column; align-items: center; gap: 24px; }
    .expert-card { width: 485px; max-width: 100%; padding: 80px 40px 40px; }

    /* --- FAQ --- */
    .faq-container { padding: 80px; }
    .faq-intro { max-width: 100%; }

    /* --- Footer --- */
    .footer-container {
        padding: 80px;
    }
    .footer-info { max-width: 100%; }
}

/* ==========================================================================
   RESPONSIVE — MOBILE (max-width: 600px)
   ========================================================================== */
@media (max-width: 600px) {

    /* --- Global --- */
    .section { padding: 24px 0; }

    /* --- Hero (Mobile 1:1 Flexbox - Node 175:863) --- */
    .hero { 
        padding: 40px 0; 
    }
    .gead-bild-wrapper { 
        padding: 0 24px; 
        width: 100%;
    }
    .gead-bild { 
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        width: 100%;
        height: auto; 
        padding: 0; 
        position: relative;
    }
    
    /* Background blob stays absolute */
    .hero-vector { 
        position: absolute;
        width: 350px; 
        height: 212px; 
        top: 45px; 
        left: 50%;
        transform: translateX(-50%);
        z-index: 0;
    }

    /* Text elements become static/relative and stack naturally */
    .hero-title { 
        position: relative;
        left: auto !important; 
        top: auto;
        width: 100% !important; 
        height: auto !important;
        font-size: 67px !important; 
        line-height: 55px !important; 
        text-align: center;
        z-index: 1;
        margin-bottom: 0; 
    }
    .hero-title .mobile-break {
        display: block;
    }
    .hero-subtitle { 
        position: relative;
        left: auto !important; 
        top: auto;
        width: 100% !important; 
        height: auto !important;
        font-size: 22px; 
        line-height: 33px; 
        text-align: center;
        z-index: 1;
        margin-bottom: 0; 
    }
    /* Subtext under Hero (Node 175:928) */
    .hero-frame14 { 
        display: flex !important;
        position: relative;
        left: auto !important; 
        top: auto;
        width: 100% !important; 
        margin-top: 24px;
        margin-bottom: 24px;
        padding-left: 24px; 
        gap: 24px; 
        z-index: 1;
        border-left: 1px solid var(--color-text);
        align-items: flex-start;
    }
    .hero-text { 
        font-size: 16px; 
        line-height: 30px; 
        font-weight: 500;
        text-align: left;
    }
    .hero-author-frame .author-name { 
        font-size: 16px; 
        line-height: 20px;
    }
    .hero-author-frame .author-role { 
        font-size: 12px; 
        line-height: 15px;
    }
    .hero-frame16 {
        display: none !important;
    }

    /* --- USPs: 24px seitlicher Abstand, single col */
    .usps-container {
        padding: 80px 24px;
        gap: 24px;
        max-width: 100%;
        flex-direction: column;
    }

    /* --- CTA --- */
    .cta-section { padding: 40px 0; }

    /* --- About — Figma node 137:2367 (390×887px mobile) ---
       Outer: paddingTop/Bottom 80, paddingLeft/Right 24, gap 32, align CENTER, VERTICAL
       Frame 52: VERTICAL, gap 32, align CENTER
       Frame 29: VERTICAL, gap 40, align CENTER  → chip + H2
       Frame 26: VERTICAL, gap 40, align CENTER  → avatar + Frame 25
       Frame 25: VERTICAL, gap 16, align CENTER  → greeting + body
    ---------------------------------------------------- */
    .about.section { padding: 0; }

    /* Outer container = Figma outer frame: padding 80px 24px, VERTICAL CENTER, gap 32 */
    .about-container {
        padding: 80px 24px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }

    /* Frame 52: VERTICAL, gap 32, CENTER */
    .about-frame52 {
        flex-direction: column;
        align-items: center;
        gap: 32px;
        width: 100%;
    }

    /* Frame 29: chip + H2 — VERTICAL, gap 40, CENTER, FILL width */
    .about-frame29 {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 40px;
        width: 100%;
    }

    /* H2 — Proxima Nova 800 → Montserrat 800 fallback
       fontSize 50, lineHeight 41px, UPPER, textAlign CENTER */
    .about-title {
        font-size: 50px !important;
        line-height: 41px !important;
        text-align: center;
        text-transform: uppercase;
    }

    /* Frame 26: avatar + Frame 25 — VERTICAL, gap 40, CENTER */
    .about-frame26 {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        width: 100%;
    }

    /* Avatar: 211×211px circle, #CCFF00 bg (Ellipse 1 behind photo)
       uniformScaleFactor: 0.692 of desktop 305px ≈ 211px */
    .about-avatar-img {
        width: 211px;
        height: 211px;
        border-radius: 50%;
        object-fit: cover;
        background-color: var(--color-accent); /* Ellipse 1 fill: #CCFF00 */
    }

    /* Frame 25: greeting + body — VERTICAL, gap 16, CENTER */
    .about-frame25 {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        width: 100%;
    }

    /* "Hi, ich bin Maurice." — Montserrat Bold 700, 18px, lh 21.94px, CENTER */
    .about-greeting {
        font-weight: 700;
        font-size: 18px;
        line-height: 21.94px;
        text-align: center;
        margin: 0;
    }

    /* Body text — Montserrat Medium 500, 16px, lh 30px, CENTER */
    .about-text {
        font-weight: 500;
        font-size: 16px;
        line-height: 30px;
        text-align: center;
        margin: 0;
    }

    /* --- Prozess — Figma node 163:609 (390×mobile) ---
       Outer: padding 80px 24px, gap 40, VERTICAL, white bg
       Children: Chip + H2 "SO ARBEITEN WIR ZUSAMMEN" + Frame 28 (steps)
       Frame 28: VERTICAL, gap 24
       Step 1 (highlighted): fill #CCFF00, borderRadius 16, padding 24, gap 16
       Steps 2–4: border 2px #EEEEEE, borderRadius 16, padding 24, gap 16
       Each step: step-badge (50×50 black bg r8) + H3 Bold 18px + body 500 16px lh30
    ---------------------------------------------------- */
    .process-container {
        padding: 80px 24px;
        width: 100%;
        gap: 40px;
    }

    /* H2 — Proxima Nova/Montserrat 800, 50px, lh 41px, UPPER, CENTER */
    .process-title {
        font-size: 50px;
        line-height: 41px;
        text-align: center;
    }

    /* Steps: single column, gap 24px */
    .process-steps {
        grid-template-columns: 1fr;
        gap: 24px;
        width: 100%;
    }

    /* All step cards: padding 24px, gap 16, radius 16 */
    .process-step {
        padding: 24px;
        gap: 16px;
        border-radius: 16px;
    }

    /* Step 1 highlighted: #CCFF00 fill */
    .highlighted-step {
        background-color: var(--color-accent);
        border: none;
    }

    /* Steps 2–4: border 2px #EEEEEE */
    .default-step {
        background-color: transparent;
        border: 2px solid var(--color-border);
    }

    /* Step number badge: 50×50, black bg, borderRadius 8 */
    .step-number-container {
        width: 50px;
        height: 50px;
        border-radius: 8px;
        background-color: var(--color-text);
        flex-shrink: 0;
    }

    /* H3 step title: Montserrat Bold 700, 18px */
    .step-title {
        font-weight: 700;
        font-size: 18px;
        line-height: 21.94px;
    }

    /* Step body: Montserrat Medium 500, 16px, lh 30px */
    .step-text {
        font-weight: 500;
        font-size: 16px;
        line-height: 30px;
    }

    /* --- Standort — Figma node 163:650 (390×mobile) ---
       Outer: padding 80px 24px, gap 40, VERTICAL, white bg
       Children: Chip + H2 (CENTER) + Image 278px r16 + Frame25 (body LEFT) +
                 Line 1px #EEE + Frame30 (VERTICAL gap 40) → Frame26 + Frame27
       Frame26/27: VERTICAL, gap 16 — icon24 + H3 Bold 18 + body 500 16 lh30 LEFT
    ---------------------------------------------------- */
    .location-container {
        padding: 80px 24px;
        width: 100%;
        gap: 40px;
    }

    /* H2 — Proxima Nova/Montserrat 800, 50px, lh 41px, UPPER, CENTER */
    .location-title {
        font-size: 50px;
        line-height: 41px;
        text-align: center;
        max-width: 100%;
    }

    /* Image: FILL width, height 278px, borderRadius 16px */
    .location-image-main {
        width: 100%;
        height: 278px;
        border-radius: 16px;
        object-fit: cover;
    }

    /* Frame 25 (body text): VERTICAL, gap 16, CENTER align (User requested) */
    .location-frame25 {
        max-width: 100%;
        text-align: center;
    }

    /* Body text: Montserrat Medium 500, 16px, lh 30px, CENTER (User requested) */
    .location-text {
        font-weight: 500;
        font-size: 16px;
        line-height: 30px;
        text-align: center;
    }

    /* Divider line */
    .location-line {
        max-width: 100%;
    }

    /* Frame 30: VERTICAL on mobile (stack the two feature cols) */
    .location-frame30 {
        flex-direction: column;
        gap: 40px;
        max-width: 100%;
    }

    /* Each feature col: VERTICAL, gap 16, CENTER align */
    .location-frame26,
    .location-frame27 {
        gap: 16px;
        align-items: center;
    }

    /* Feature icon: 48×48px */
    .location-small-icon {
        width: 48px;
        height: 48px;
    }

    /* Feature title: Montserrat Bold 700, 18px */
    .location-feature-title {
        font-weight: 700;
        font-size: 18px;
        line-height: 21.94px;
        text-align: center;
    }

    /* Feature body text: Montserrat Medium 500, 16px, lh 30px */
    .location-frame26 .location-text,
    .location-frame27 .location-text {
        font-weight: 500;
        font-size: 16px;
        line-height: 30px;
        text-align: center;
    }

    /* --- Calculator: 24px seitlicher Abstand */
    /* --- Calculator (Node 163:692 1:1 Mobile) --- */
    .calculator-container {
        padding: 80px 24px 80px !important;
        gap: 40px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    .calculator-title { 
        font-size: 50px !important; 
        line-height: 41px !important; 
        text-align: center !important; 
        width: 100% !important;
    }
    .calculator-intro { 
        font-size: 16px !important; 
        line-height: 30px !important; 
        text-align: center !important;
        width: 100% !important;
    }
    .calculator-frame34 { 
        padding: 0 !important;
        gap: 24px !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    .calculator-cta-title { 
        font-size: 22px !important; 
        text-align: center !important;
    }
    .calculator-cta-text { 
        font-size: 16px !important; 
        line-height: 24px !important; 
        text-align: center !important;
    }
    .calculator-frame33 { 
        display: flex !important;
        flex-direction: column !important;
        gap: 16px !important;
        width: 100% !important;
    }
    .calculator-input {
        width: 100% !important;
        height: 52px !important;
        min-height: 52px !important;
        border-radius: 8px !important;
        background-color: var(--color-bg-card) !important;
        border: none !important;
        padding: 0 24px !important;
        font-size: 16px !important;
        font-weight: 500 !important;
        color: var(--color-text) !important;
        appearance: none !important;
        -webkit-appearance: none !important;
    }
    .calculator-frame33 .btn-cta {
        width: 100% !important;
        height: 52px !important;
        min-height: 52px !important;
        border-radius: 8px !important;
        font-size: 18px !important;
        font-weight: 600 !important;
        background-color: var(--color-text) !important;
        color: var(--color-text-inverse) !important;
        border: none !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    .calculator-frame36 { 
        display: flex !important;
        flex-direction: row !important;
        gap: 16px !important;
        width: 100% !important;
        align-items: flex-start !important;
    }
    .calculator-checkbox {
        width: 24px !important;
        height: 24px !important;
        flex-shrink: 0 !important;
        margin-top: 4px !important;
    }
    .calculator-label { 
        font-size: 14px !important; 
        line-height: 20px !important; 
        text-align: left !important;
    }

    /* --- Netzwerk — Figma node 163:777 (390×2365px mobile) ---
       Outer: padding 80px 24px, gap 40, VERTICAL, white bg
       H2: Proxima Nova 800, 50px, lh 41px, UPPER, CENTER
       Intro: Medium 500, 16px, lh 30px, CENTER
       Frame 41: VERTICAL, gap 24, FILL width
       Expert-Card: FILL width, padding 80px 40px 40px, gap 40, borderRadius 16, border 2px #EEE
       Photo: 232×232px, rund (#CCFF00 bg-circle)
       Name: Medium 500, 30px, lh 45px, CENTER
       Rolle: Medium 500, 12px, UPPER, opacity 0.7, CENTER
       Sprache-Zeile: Medium 500 16px lh30 (label) + flag 24px + SemiBold 16px (value)
    ---------------------------------------------------- */
    .network-container {
        padding: 80px 24px;
        width: 100%;
        gap: 40px;
    }
    .network-title {
        font-size: 50px;
        line-height: 41px;
        text-align: center;
        max-width: 100%;
    }
    .network-intro {
        font-size: 16px;
        line-height: 30px;
        max-width: 100%;
        text-align: center;
    }
    /* Frame 41: VERTICAL, gap 24px, full width */
    .network-frame41 {
        flex-direction: column;
        align-items: stretch;
        gap: 24px;
        width: 100%;
    }
    /* Expert card (Mobile 1:1) */
    .expert-card {
        width: 100%;
        padding: 24px;
        gap: 24px;
        border-radius: 16px;
        border: 2px solid var(--color-border);
        background-color: var(--color-bg-main);
        align-items: center;
        flex-direction: column;
    }
    /* Photo: 174×174px circle */
    .expert-image {
        width: 174px;
        height: 174px;
        border-radius: 50%;
        object-fit: cover;
        background-color: var(--color-accent);
    }
    /* Name: Medium 500, 30px, lh 45px, CENTER */
    .expert-name {
        font-size: 30px;
        line-height: 45px;
        font-weight: 500;
        text-align: center;
    }
    /* Role: Medium 500, 12px, UPPER, 70% opacity, CENTER */
    .expert-role {
        font-size: 12px;
        font-weight: 500;
        text-transform: uppercase;
        opacity: 0.7;
        text-align: center;
    }

    /* --- FAQ: 24px seitlicher Abstand */
    .faq-container {
        padding: 80px 24px;
        width: 100%;
        gap: 40px;
    }
    .faq-title    { font-size: 50px; line-height: 41px; text-align: center; }
    .faq-intro    { max-width: 100%; font-size: 16px; line-height: 30px; text-align: center; }
    .faq-question { font-size: 18px; line-height: 22px; font-weight: 700; }
    .faq-answer p { font-size: 16px; line-height: 30px; }

    /* --- Footer: 24px Abstand links/rechts auf Mobile --- */
    .footer-container {
        padding: 80px 24px;
        max-width: 100%;
        margin: 0;
    }

    /* --- Nav (Figma Node 137:2258 1:1) --- */
    .nav-container { 
        padding: 8px 24px; 
    }
    .hide-on-mobile { 
        display: none; 
    }
    .nav-logo img {
        width: 87.75px;
        height: 38.25px;
    }
    .btn-secondary {
        padding: 8px 16px;
        font-size: 14px;
        font-weight: 700;
        line-height: 25px;
        white-space: nowrap;
    }
}

/* ==========================================================================
   BOOKING MODAL (Calendly-like, Figma strict)
   ========================================================================== */

.booking-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 24px;
    backdrop-filter: blur(4px);
    transition: opacity 0.3s ease;
}

.booking-modal-overlay.hidden {
    display: none;
}

.booking-modal-container {
    background: var(--color-bg-main);
    border-radius: 16px;
    width: 100%;
    max-width: 800px;
    height: 600px;
    max-height: 90vh;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.booking-modal-content {
    display: flex;
    height: 100%;
}

.booking-sidebar {
    width: 381px;
    background: var(--color-bg-main);
    border-right: 1px solid var(--color-border);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    overflow-y: auto;
}

.booking-profile {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.booking-avatar {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    object-fit: cover;
}

.booking-name {
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    color: #666;
}

.booking-title {
    font-size: 30px;
    font-weight: 500;
    margin: 0;
}

.booking-details {
    list-style: none;
    margin: 0;
    padding: 0;
}

.booking-details li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
    color: var(--color-text);
}

.booking-details li.hidden {
    display: none !important;
}

#booking-prompt-item {
    color: #666;
}

.booking-selected-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
}

.change-link {
    background: none;
    border: none;
    color: #666;
    text-decoration: underline;
    font-size: 12px;
    cursor: pointer;
    margin-left: auto;
}

.booking-sidebar-footer {
    margin-top: auto;
}

.btn-cancel {
    background: #F3F3F4;
    color: #000;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 16px;
    padding: 16px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    width: auto;
    transition: background 0.2s;
}

.btn-cancel:hover {
    background: #E5E5E5;
}

#booking-prompt-item {
    margin-top: auto; /* Push down but wait, sidebar-footer is below it. */
}

.booking-main {
    flex: 1;
    padding: 40px;
    overflow-y: auto;
    scrollbar-gutter: stable;
    display: flex;
    flex-direction: column;
}

.booking-step {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.booking-step.hidden {
    display: none;
}

.booking-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.cal-nav-btn {
    background: transparent;
    border: none;
    width: 24px;
    height: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.calendar-labels {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    margin-bottom: 16px;
}

.calendar-labels span {
    font-size: 14px;
    font-weight: 500;
    color: #666;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    text-align: center;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    border: 1px solid transparent;
    outline: none;
}

/* Utilities */
.hidden {
    display: none !important;
}

.calendar-day.prev-month,
.calendar-day.next-month {
    color: #ccc;
    pointer-events: none;
}

.calendar-day.selectable:hover {
    background: #F3F3F4;
}

.calendar-day.selected {
    background: var(--color-accent);
    color: #000;
}

.booking-footer {
    margin-top: auto;
    padding-top: 24px;
}

.time-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 24px;
}

.time-btn {
    background: var(--color-bg-main);
    border: none;
    padding: 16px 24px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--font-main);
    outline: none;
}

.time-btn:hover {
    background: #F3F3F4;
}

.time-btn.selected {
    background: var(--color-accent);
    border-color: transparent;
    color: #000;
}

.booking-step-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
}

.btn-black {
    background-color: #000;
    color: #fff;
    border: 1px solid #000;
}
.btn-black:hover {
    background-color: #333;
}

.booking-desc {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 32px;
    color: #666;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input {
    width: 100%;
    padding: 16px 24px;
    border: none;
    background-color: var(--color-bg-card);
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-family: var(--font-main);
    outline: none;
}

/* HONEYPOT */
.hp-field {
    display: none !important;
    position: absolute;
    left: -9999px;
}

.w-full {
    width: 100%;
}

.success-step {
    text-align: center;
    justify-content: center;
}

.btn-primary {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 16px 24px;
    border-radius: var(--radius-sm);
    background-color: var(--color-accent);
    color: #000;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 16px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-primary:hover {
    box-shadow: 0 4px 12px rgba(204,255,0,0.5);
    transform: translateY(-2px);
}

.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* RESPONSIVE MODAL */
@media (max-width: 768px) {
    .booking-modal-overlay {
        padding: 0;
    }
    
    .booking-modal-container {
        height: 100%;
        max-height: 100vh;
        border-radius: 0;
        overflow-y: auto;
    }
    
    .booking-modal-content {
        flex-direction: column;
        height: auto;
    }

    .booking-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--color-border);
        padding: 24px;
    }

    .booking-main {
        padding: 24px;
    }

    .booking-prompt {
        display: none;
    }
}

/* Subpage Content Links */
.content a {
    color: #000;
    text-decoration: underline;
    font-weight: 500;
}
.content a:hover {
    color: #333;
}
