* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*,
*::before,
*::after {
    min-width: 0;
}

html, body {
    touch-action: manipulation;
    -webkit-text-size-adjust: 100%;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background:
        radial-gradient(circle at 18% 18%, rgba(99, 102, 241, 0.16) 0%, transparent 32%),
        radial-gradient(circle at 82% 10%, rgba(236, 72, 153, 0.11) 0%, transparent 30%),
        #0a0a0a;
    color: #fff;
    overflow-x: hidden;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.03;
    z-index: 1;
    background-image: url('data:image/svg+xml,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="3" numOctaves="4" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noiseFilter)"/></svg>');
}

.grid-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
    background-size: 100px 100px;
    pointer-events: none;
    z-index: 0;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
    will-change: transform;
}

.glow-orb-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    top: -200px;
    left: -200px;
}

.glow-orb-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    bottom: -150px;
    right: -150px;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -50px) scale(1.1); }
    66% { transform: translate(-50px, 50px) scale(0.9); }
}

.language-selector {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.lang-toggle {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 12px 16px;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.lang-toggle:hover,
.lang-toggle.active {
    border-color: rgba(99, 102, 241, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.lang-toggle:active {
    transform: scale(0.95);
}

.lang-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.lang-toggle.active .lang-icon {
    transform: rotate(180deg);
}

.lang-menu {
    position: absolute;
    top: 60px;
    right: 0;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 8px;
    min-width: 140px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.lang-menu.active {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.lang-btn {
    display: block;
    width: 100%;
    background: transparent;
    border: none;
    padding: 12px 20px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.2s ease;
    font-size: 14px;
    text-align: left;
}

.lang-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.lang-btn.active {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 110px 0 90px;
    position: relative;
    background: radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, #0a0a0a 100%);
    pointer-events: none;
}

.container {
    position: relative;
    z-index: 2;
    text-align: center;
    width: min(1180px, calc(100% - 48px));
    padding: 0;
    animation: fadeInUp 1s ease;
    margin: 0 auto;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-layout {
    display: block;
}

.hero-content {
    max-width: 980px;
    margin: 0 auto;
}

.logo {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 38px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.eyebrow {
    margin-bottom: 18px;
    color: rgba(199, 210, 254, 0.78);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

h1 {
    font-size: clamp(2rem, 5.4vw, 5.15rem);
    max-width: 980px;
    margin-inline: auto;
    margin-bottom: 30px;
    font-weight: 800;
    line-height: 1.1;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.6) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: clamp(0.95rem, 2.5vw, 1.3rem);
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    max-width: 840px;
    margin-inline: auto;
    line-height: 1.8;
}

.hero-actions,
.cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.button,
.hero-cta,
.home-button,
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.4);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    padding: 16px 40px;
    min-height: 52px;
    font-size: 1rem;
}

.button:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.16);
}

.button-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    box-shadow: none;
}

.button:active,
.hero-cta:active,
.cta-button:active {
    transform: scale(0.95);
}

.hero-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    max-width: 960px;
    margin: 35px auto 0;
}

.hero-point,
.strip-item,
.feature-card,
.detail-panel,
.module-card,
.order-board,
.integration-option {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-point {
    padding: 18px;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.5;
    font-size: 0.95rem;
}

.intro-strip,
.product-section,
.features,
.modules-section,
.module-detail-section,
.cta-section,
.iframe-section {
    padding: clamp(64px, 7vw, 92px) 0;
    background: #0a0a0a;
    position: relative;
}

.intro-strip,
.features {
    background:
        radial-gradient(circle at 50% 0%, rgba(99, 102, 241, 0.08) 0%, transparent 42%),
        #0a0a0a;
}

.product-section {
    background:
        radial-gradient(circle at 0% 50%, rgba(139, 92, 246, 0.08) 0%, transparent 38%),
        #0a0a0a;
}

.click-section {
    background:
        radial-gradient(circle at 100% 50%, rgba(236, 72, 153, 0.08) 0%, transparent 38%),
        #0a0a0a;
}

.modules-section {
    background:
        radial-gradient(circle at 8% 20%, rgba(20, 184, 166, 0.08) 0%, transparent 34%),
        radial-gradient(circle at 92% 72%, rgba(245, 158, 11, 0.07) 0%, transparent 34%),
        #0a0a0a;
}

.strip-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.strip-item {
    padding: 34px 30px;
    min-height: 168px;
}

.strip-item strong {
    display: block;
    margin-bottom: 14px;
    font-size: 1.35rem;
    font-weight: 700;
}

.strip-item span {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

.section-heading {
    max-width: 920px;
    margin: 0 auto 44px;
    text-align: center;
}

.section-heading.align-left {
    text-align: left;
    margin: 0;
}

.section-heading h2,
.section-title,
.cta-title,
.iframe-title {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.15;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.6) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-heading.align-left h2,
.section-heading.align-left .eyebrow {
    text-align: left;
}

.section-heading p,
.cta-section p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    font-size: 1rem;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    align-items: stretch;
}

.content-grid.reverse {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
}

.detail-panel {
    padding: 40px 30px;
    text-align: left;
    min-height: 100%;
}

.detail-panel h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.detail-panel p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

.accent-panel {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.11), rgba(139, 92, 246, 0.08));
}

.check-list {
    display: grid;
    gap: 12px;
    margin-top: 24px;
    list-style: none;
}

.check-list li {
    position: relative;
    min-height: 24px;
    padding-left: 34px;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.55;
}

.check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.22em;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    box-shadow: 0 0 18px rgba(99, 102, 241, 0.6);
}

.check-list li::after {
    content: '';
    position: absolute;
    left: 6px;
    top: calc(0.22em + 5px);
    width: 6px;
    height: 4px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
}

.integration-options {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.integration-option {
    padding: 14px 18px;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 600;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.feature-card {
    display: block;
    padding: 40px 30px;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s ease;
    min-height: 245px;
    position: relative;
    overflow: hidden;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.24), rgba(139, 92, 246, 0.16));
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.86);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-text {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    font-size: 1rem;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    text-align: left;
}

.module-card {
    display: grid;
    grid-template-rows: auto auto 1fr auto auto;
    gap: 22px;
    padding: 32px;
    min-height: 520px;
    position: relative;
    overflow: hidden;
}

.module-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 38%),
        linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.03));
    pointer-events: none;
}

.module-card-header,
.module-text,
.module-steps,
.module-note,
.module-more-button {
    position: relative;
    z-index: 1;
}

.module-label {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(20, 184, 166, 0.12);
    border: 1px solid rgba(20, 184, 166, 0.24);
    color: rgba(153, 246, 228, 0.9);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.module-card h3 {
    margin-top: 18px;
    font-size: 1.55rem;
    line-height: 1.2;
}

.module-text {
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.7;
}

.module-steps {
    display: grid;
    gap: 16px;
    list-style: none;
    counter-reset: module-step;
}

.module-steps li {
    counter-increment: module-step;
    position: relative;
    padding-left: 48px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.55;
}

.module-steps li::before {
    content: counter(module-step);
    position: absolute;
    left: 0;
    top: -2px;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.95), rgba(245, 158, 11, 0.9));
    color: #0a0a0a;
    font-size: 0.78rem;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(20, 184, 166, 0.18);
}

.module-note {
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.55;
    font-weight: 650;
}

.module-more-button,
.detail-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-weight: 700;
    padding: 12px 20px;
    transition: all 0.25s ease;
}

.module-more-button:hover,
.detail-close:hover {
    transform: translateY(-2px);
    border-color: rgba(20, 184, 166, 0.42);
    background: rgba(20, 184, 166, 0.12);
}

.module-detail-section {
    background:
        radial-gradient(circle at 50% 0%, rgba(20, 184, 166, 0.08) 0%, transparent 40%),
        #0a0a0a;
}

.module-detail-section.is-hidden {
    display: none;
}

.module-detail-shell {
    padding: clamp(28px, 4vw, 46px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
        rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    text-align: left;
}

.module-detail-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: start;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.module-detail-header h2 {
    margin-bottom: 14px;
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.15;
}

.module-detail-header p:last-child {
    max-width: 780px;
    color: rgba(255, 255, 255, 0.64);
    line-height: 1.7;
}

.module-detail-content {
    display: grid;
    gap: 30px;
}

.module-detail-block {
    display: grid;
    gap: 20px;
}

.module-detail-block h3 {
    font-size: clamp(1.25rem, 2.4vw, 1.7rem);
    line-height: 1.25;
}

.detail-rows {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.detail-row {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 16px;
    min-height: 150px;
    padding: 20px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.035);
}

.detail-row-number {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.95), rgba(245, 158, 11, 0.9));
    color: #0a0a0a;
    font-weight: 900;
    font-size: 0.85rem;
}

.detail-row-body h4 {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.05rem;
    line-height: 1.35;
}

.detail-row-body p {
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.65;
}

@media (hover: hover) {
    .feature-card:hover,
    a.feature-card:hover,
    .strip-item:hover,
    .module-card:hover,
    .detail-panel:hover {
        transform: translateY(-10px) scale(1.02);
        border-color: rgba(99, 102, 241, 0.4);
        box-shadow: 0 30px 60px rgba(99, 102, 241, 0.25);
        background: rgba(255, 255, 255, 0.06);
    }
}

.pickup-visual {
    min-height: 390px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.order-board {
    width: min(460px, 100%);
    padding: 32px;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.order-board::before {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    right: -80px;
    top: -80px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.18);
    filter: blur(18px);
}

.order-board-header,
.order-line {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    position: relative;
    z-index: 1;
}

.order-board-header {
    padding-bottom: 16px;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    font-weight: 800;
}

.order-line {
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.6);
}

.order-line strong {
    color: rgba(255, 255, 255, 0.88);
    text-align: right;
}

.cta-section {
    text-align: center;
    background: radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
}

.cta-section .container {
    max-width: 1000px;
}

.cta-title {
    font-size: clamp(1.4rem, 3vw, 2.3rem);
}

.cta-section p {
    max-width: 800px;
    margin: 0 auto;
}

.booking-iframe {
    width: 100%;
    height: 900px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(10px);
    display: block;
}

@media (max-width: 1100px) {
    .container {
        width: min(100% - 40px, 980px);
    }

    .hero {
        padding: 104px 0 78px;
    }

    .strip-grid,
    .features-grid,
    .modules-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }

    .hero-points {
        max-width: 820px;
    }

    .feature-card {
        min-height: 220px;
    }

    .module-card {
        min-height: 460px;
    }
}

@media (max-width: 860px) {
    .container {
        width: min(100% - 32px, 760px);
    }

    .hero {
        min-height: auto;
        padding: 96px 0 70px;
    }

    .hero-points {
        grid-template-columns: 1fr;
        max-width: 620px;
        gap: 14px;
    }

    .content-grid,
    .content-grid.reverse {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .section-heading.align-left {
        max-width: 680px;
        margin: 0 auto;
        text-align: center;
    }

    .section-heading.align-left h2,
    .section-heading.align-left .eyebrow {
        text-align: center;
    }

    .section-heading.align-left .check-list {
        text-align: left;
    }

    .pickup-visual {
        min-height: 320px;
        order: 2;
    }

    .content-grid.reverse .section-heading {
        order: 1;
    }

    .order-board {
        max-width: 520px;
    }

    .module-detail-header {
        grid-template-columns: 1fr;
    }

    .detail-rows {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 28px, 560px);
    }

    .hero {
        padding: 86px 0 56px;
        min-height: auto;
    }

    h1 {
        font-size: clamp(2rem, 11vw, 3rem);
        line-height: 1.2;
    }

    .subtitle {
        font-size: 1rem;
        line-height: 1.6;
        padding: 0;
    }

    .hero-actions,
    .cta-actions {
        flex-direction: column;
        padding: 0;
    }

    .button {
        width: 100%;
        padding: 14px 28px;
        font-size: 1rem;
    }

    .features-grid,
    .strip-grid,
    .modules-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card,
    .strip-item,
    .module-card,
    .detail-panel {
        padding: 25px 20px;
        border-radius: 20px;
    }

    .feature-icon {
        width: 44px;
        height: 44px;
        border-radius: 15px;
        font-size: 0.85rem;
    }

    .feature-title,
    .detail-panel h3,
    .module-card h3 {
        font-size: 1.2rem;
    }

    .feature-text,
    .module-text,
    .module-note,
    .detail-panel p,
    .section-heading p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .module-card {
        min-height: auto;
        gap: 18px;
    }

    .module-steps li {
        padding-left: 42px;
    }

    .module-more-button,
    .detail-close {
        width: 100%;
    }

    .module-detail-shell {
        padding: 24px 18px;
        border-radius: 20px;
    }

    .module-detail-header {
        gap: 18px;
        padding-bottom: 22px;
        margin-bottom: 22px;
    }

    .detail-row {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 18px;
        border-radius: 18px;
    }

    .cta-title {
        font-size: 1.2rem;
        padding: 0 15px;
        margin-bottom: 25px;
    }

    .language-selector {
        top: 12px;
        right: 12px;
    }

    .lang-toggle {
        padding: 8px 12px;
        font-size: 14px;
    }

    .lang-menu {
        min-width: 110px;
    }

    .lang-btn {
        padding: 12px 15px;
        font-size: 14px;
    }

    .glow-orb {
        filter: blur(80px);
        opacity: 0.25;
    }

    .glow-orb-1, .glow-orb-2 {
        width: 220px;
        height: 220px;
    }

    .booking-iframe {
        height: 980px;
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    body { font-size: 15px; }
    .container { width: min(100% - 22px, 420px); }
    .logo {
        font-size: 0.75rem;
        margin-bottom: 34px;
        letter-spacing: 2px;
    }

    .section-heading h2,
    .section-title,
    .cta-title,
    .iframe-title {
        font-size: 1.65rem;
    }

    .order-board-header,
    .order-line {
        flex-direction: column;
        gap: 5px;
    }

    .order-line strong {
        text-align: left;
    }
}

@media (max-width: 360px) {
    .glow-orb-1, .glow-orb-2 {
        width: 180px;
        height: 180px;
    }
}


.hero-pricing {
    margin-bottom: 32px;
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}
