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

:root {
    --bg-primary: #050505;
    --bg-secondary: #0a0a0a;
    --bg-tertiary: #111111;
    --bg-card: #0d0d0d;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;
    --accent: #c9a227;
    --accent-hover: #ddb632;
    --accent-glow: rgba(201, 162, 39, 0.3);
    --border: #1a1a1a;
    --border-light: #2a2a2a;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 10vh
}

body {
    font-family: 'Outfit', sans-serif;
    /* background: var(--bg-primary); */
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;

}

.bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--bg-primary);
    /* background-color: #000000;
    background-image:
        radial-gradient(circle at 18% 88%,
            rgba(227, 180, 5, 0.05) 0%,
            rgba(227, 180, 5, 0.025) 25%,
            rgba(227, 180, 5, 0.01) 45%,
            rgba(0, 0, 0, 0) 75%),
        radial-gradient(circle at 82% 12%,
            rgba(227, 180, 5, 0.04) 0%,
            rgba(227, 180, 5, 0.02) 30%,
            rgba(227, 180, 5, 0.008) 50%,
            rgba(0, 0, 0, 0) 80%),
        radial-gradient(circle at 47% 53%,
            rgba(227, 180, 5, 0.02) 0%,
            rgba(227, 180, 5, 0.008) 40%,
            rgba(0, 0, 0, 0) 85%); */
    z-index: -1;
}


/* ============ HEADER ============ */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.logo-header {
    width: 30%;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo span {
    color: var(--accent);
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--accent), #8b7355);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.menu-header {
    display: flex;
    justify-content: center;
    width: 40%;
}

.button-header {
    width: 30%;
}

nav {
    gap: 3rem;
}

nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

nav a:hover {
    color: var(--text-primary);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: var(--accent);
    color: #000;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--accent-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.btn-secondary:hover {
    border-color: var(--accent);
    background: rgba(201, 162, 39, 0.1);
}

/* ============ HERO ============ */
.hero {
    /* min-height: 100vh; */
    padding: 10rem 4rem 4rem;
    display: flex;
    flex-direction: column;
    background:
        /* glow principal venant du coin haut gauche */
        radial-gradient(ellipse 70% 60% at 20% -10%,
            rgba(227, 180, 5, 0.12),
            transparent 75%),
        /* glow secondaire subtil côté droit */
        radial-gradient(ellipse 50% 40% at 85% 30%,
            rgba(227, 180, 5, 0.04),
            transparent 80%),
        var(--bg-primary);
    /* background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(201, 162, 39, 0.08), transparent),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(201, 162, 39, 0.03), transparent),
        var(--bg-primary); */
}

.hero-content {
    /* max-width: 900px; */
    margin: 0;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease;
}

.hero-badge span {
    color: var(--accent);
}

.hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.1s backwards;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--accent), #e8d5a3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    animation: fadeInUp 0.8s ease 0.3s backwards;
}

/* ============ DEMOS GRID ============ */
.demos-section {
    margin-top: auto;
}

.demos-label {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.demos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    animation: fadeInUp 0.8s ease 0.5s backwards;
}

.demo-card {
    position: relative;
    aspect-ratio: 16/10;
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.4s ease;
}

.demo-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px var(--accent-glow);
}

.demo-card iframe,
.demo-card .demo-placeholder {
    width: 100%;
    height: 100%;
    border: none;
}

.demo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary)),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    color: var(--text-muted);
    gap: 0.75rem;
}

.demo-placeholder svg {
    width: 48px;
    height: 48px;
    opacity: 0.5;
}

.demo-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.demo-card:hover .demo-card-overlay {
    transform: translateY(0);
}

.demo-card-title {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.demo-card-type {
    font-size: 0.85rem;
    color: var(--accent);
}

/* ============ USE CASES ============ */
.use-cases {
    padding: 0;
}

.use-case {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 4rem;
    position: relative;
    /* overflow: hidden; */
}

.use-case::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    /* background: linear-gradient(90deg, transparent, var(--border), transparent); */
}

/* ============ USE CASE: HOTEL ============ */
.use-case-hotel {
    /* background: linear-gradient(135deg, #0a0908, #0d0b09); */
}

.hotel-mockup {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    background: #faf9f7;
    border-radius: 20px;
    overflow: hidden;
    /* box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5); */
}

.hotel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.hotel-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
}

.hotel-logo span {
    color: #8b7355;
}

.hotel-nav {
    display: flex;
    gap: 2rem;
}

.hotel-nav a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
}

.hotel-nav a:hover {
    color: #1a1a1a;
}

.hotel-book-btn {
    background: #8b7355;
    color: #fff;
    padding: 0.625rem 1.25rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
}

.hotel-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2rem;
    padding: 2rem;
}

.hotel-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hotel-main-image {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, #e8e4de, #d4cfc5);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.hotel-main-image iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.hotel-tour-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(135deg, #2a2520, #1a1815),
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 0v100M0 50h100' stroke='%23ffffff' stroke-opacity='0.05' stroke-width='1'/%3E%3C/svg%3E");
    color: #fff;
    gap: 1rem;
}

.hotel-tour-placeholder svg {
    width: 64px;
    height: 64px;
    opacity: 0.7;
}

.hotel-tour-placeholder span {
    font-size: 1.1rem;
    font-weight: 500;
}

.hotel-tour-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
}

.hotel-tour-badge svg {
    width: 16px;
    height: 16px;
}

.hotel-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.hotel-thumb {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #e8e4de, #d4cfc5);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hotel-thumb:hover {
    transform: scale(1.05);
}

.hotel-thumb.tour-thumb {
    background: linear-gradient(135deg, #8b7355, #6d5a44);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hotel-thumb.tour-thumb svg {
    width: 32px;
    height: 32px;
    color: #fff;
}

.hotel-details {
    padding: 1rem;
    color: #1a1a1a;
}

.hotel-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.hotel-stars {
    color: #c9a227;
    font-size: 1rem;
}

.hotel-reviews {
    font-size: 0.85rem;
    color: #666;
}

.hotel-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.hotel-location {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hotel-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.hotel-feature {
    padding: 0.5rem 1rem;
    background: #f5f3f0;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #666;
}

.hotel-price-section {
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.hotel-price-label {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.25rem;
}

.hotel-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
}

.hotel-price span {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
}

.hotel-cta {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
}

.hotel-cta button {
    flex: 1;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.hotel-cta .book-btn {
    background: #8b7355;
    color: #fff;
    border: none;
}

.hotel-cta .book-btn:hover {
    background: #7a654a;
}

.hotel-cta .save-btn {
    background: transparent;
    color: #1a1a1a;
    border: 1px solid #ddd;
}

/* ============ USE CASE: YACHT ============ */
.use-case-yacht {
    /* background: linear-gradient(135deg, #05080a, #0a0d10); */
}

.yacht-mockup {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    background: linear-gradient(135deg, #0c1015, #111820);
    border-radius: 20px;
    overflow: hidden;
    /* box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5); */
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.yacht-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.yacht-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.yacht-logo span {
    color: #4a9eff;
}

.yacht-nav {
    display: flex;
    gap: 2.5rem;
}

.yacht-nav a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.yacht-nav a:hover {
    color: #fff;
}

.yacht-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    padding: 2rem;
}

.yacht-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.yacht-main-image {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #1a2030, #0f1520);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.yacht-tour-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(135deg, #1a2535, #0f1825),
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 0v100M0 50h100' stroke='%23ffffff' stroke-opacity='0.03' stroke-width='1'/%3E%3C/svg%3E");
    color: #fff;
    gap: 1rem;
}

.yacht-tour-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(74, 158, 255, 0.2);
    color: #4a9eff;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(74, 158, 255, 0.3);
}

.yacht-specs-bar {
    display: flex;
    gap: 2rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
}

.yacht-spec {
    text-align: center;
}

.yacht-spec-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
}

.yacht-spec-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.yacht-details {
    padding: 1rem 0;
}

.yacht-type {
    font-size: 0.85rem;
    color: #4a9eff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.yacht-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.yacht-builder {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2rem;
}

.yacht-amenities {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.yacht-amenity {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.yacht-amenity svg {
    width: 20px;
    height: 20px;
    color: #4a9eff;
}

.yacht-price-section {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.yacht-price-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.yacht-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
}

.yacht-price span {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
}

.yacht-cta {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
}

.yacht-cta button {
    flex: 1;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.yacht-cta .inquire-btn {
    background: #4a9eff;
    color: #fff;
    border: none;
}

.yacht-cta .inquire-btn:hover {
    background: #3a8eef;
}

.yacht-cta .share-btn {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ============ USE CASE: RESTAURANT ============ */
.use-case-restaurant {
    /* background: linear-gradient(135deg, #0a0805, #0d0a07); */
}

.restaurant-mockup {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    background: #1a1714;
    border-radius: 20px;
    overflow: hidden;
    /* box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5); */
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.restaurant-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.restaurant-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
}

.restaurant-logo span {
    color: #e85d4c;
}

.restaurant-nav {
    display: flex;
    gap: 2.5rem;
}

.restaurant-nav a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
}

.restaurant-nav a:hover {
    color: #fff;
}

.restaurant-reserve-btn {
    background: #e85d4c;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
}

.restaurant-hero {
    position: relative;
    padding: 4rem 2rem;
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8)),
        linear-gradient(135deg, #2a2320, #1a1815);
    text-align: center;
}

.restaurant-hero h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.restaurant-hero p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.restaurant-tour-section {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    padding: 2rem;
}

.restaurant-tour-container {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #2a2520, #1a1815);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.restaurant-tour-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    gap: 1rem;
}

.restaurant-tour-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(232, 93, 76, 0.2);
    color: #e85d4c;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(232, 93, 76, 0.3);
}

.restaurant-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.restaurant-info-card {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.restaurant-info-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.restaurant-info-card h3 svg {
    width: 20px;
    height: 20px;
    color: #e85d4c;
}

.restaurant-hours {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.restaurant-hours div {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.restaurant-contact p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.restaurant-socials {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.restaurant-socials a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.restaurant-socials a:hover {
    background: #e85d4c;
    color: #fff;
}

/* ============ CTA SECTION ============ */
.cta-section {
    text-align: center;
    background:
        radial-gradient(ellipse 60% 50% at 50% 100%, rgba(201, 162, 39, 0.1), transparent),
        var(--bg-primary);
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.cta-content {
    padding: 8rem 4rem;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

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

/* ============ FOOTER ============ */
footer {
    padding: 4rem;
    border-top: 1px solid var(--border);
    /* background: var(--bg-secondary); */
}

.footer-content {
    /* max-width: 1400px; */
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.footer-logo span {
    color: var(--accent);
}

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-copy {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ============ PRICING SECTION ============ */
.pricing-section {
    padding: 3% 10%;
    /* background: var(--bg-secondary); */
    position: relative;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    /* background: linear-gradient(90deg, transparent, var(--border), transparent); */
}

.pricing-container {
    margin: 0 auto;
}

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

.pricing-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.pricing-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.pricing-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* One-time fees */
.pricing-oneshot {
    margin-bottom: 4rem;
}

.pricing-oneshot h3,
.pricing-table-wrapper h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.pricing-oneshot h3 span {
    color: var(--text-muted);
    font-weight: 400;
}

.oneshot-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.oneshot-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.oneshot-card:hover {
    border-color: var(--border-light);
    transform: translateY(-2px);
}

.oneshot-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass);
    border-radius: 10px;
}

.oneshot-content {
    flex: 1;
}

.oneshot-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.oneshot-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.oneshot-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent);
}

.oneshot-price span {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-muted);
}

.info-tooltip {
    position: relative;
    display: inline-block;
    margin-left: 6px;
    cursor: pointer;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    transition: 0.2s;
}

.info-tooltip:hover {
    color: white;
}

.tooltip-text {
    visibility: hidden;
    opacity: 0;
    width: 240px;
    background: rgba(20, 20, 20, 1);
    color: white;
    text-align: left;
    padding: 10px 12px;
    border-radius: 10px;
    position: absolute;
    z-index: 100;
    bottom: 140%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 13px;
    line-height: 1.4;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.35);
    transition: 0.2s ease;
    white-space: normal;
}

.info-tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

.tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 7px;
    border-style: solid;
    border-color: rgba(20, 20, 20, 0.95) transparent transparent transparent;
}

/* Pricing Table */
.pricing-table-container {
    /* overflow-x: auto; */
    border-radius: 16px;
    border: 1px solid var(--border);
    background: var(--bg-card);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
}

.pricing-table th,
.pricing-table td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border);
}

.pricing-table thead th {
    padding: 2rem 1.5rem;
    background: var(--bg-tertiary);
    position: relative;
}

.pricing-table .feature-col {
    border-top-left-radius: 16px;
    width: 30%;
}

.pricing-table .plan-col {
    border-top-right-radius: 16px;
    width: calc(70% / 3);
}

.pricing-table .plan-col.featured {
    background: rgba(201, 162, 39, 0.05);
    border-left: 1px solid var(--accent);
    border-right: 1px solid var(--accent);
}

.pricing-table thead .plan-col.featured {
    border-top: 2px solid var(--accent);
}

.pricing-table tbody tr:last-child .plan-col.featured {
    border-bottom: 2px solid var(--accent);
}

.popular-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    padding: 0.35rem 0.85rem;
    background: var(--accent);
    color: #000;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-header-cell {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.plan-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
}

.plan-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.plan-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-muted);
}

.plan-promo {
    display: inline-block;
    font-size: 1.1rem;
    color: var(--accent);
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    background: rgba(201, 162, 39, 0.1);
    border-radius: 100px;
    margin-top: 0.5rem;
}

.feature-name {
    text-align: left;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.pricing-table tbody td {
    font-size: 1.1rem;
    color: var(--text-primary);
}

.pricing-table .check {
    color: #4ade80;
    font-size: 1.1rem;
}

.pricing-table .cross {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.pricing-table .priority {
    color: var(--accent);
    font-weight: 600;
}

.cta-row td {
    padding: 1.5rem;
    border-bottom: none;
}

.table-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.table-btn:hover {
    border-color: var(--accent);
    background: rgba(201, 162, 39, 0.1);
}

.table-btn.primary {
    background: var(--accent);
    color: #000;
    border: none;
}

.table-btn.primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--accent-glow);
}

/* ============ ANIMATIONS ============ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============ PRICING MOBILE CARDS ============ */
.pricing-mobile-cards {
    display: none;
}

.pricing-mobile-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.pricing-mobile-card.featured {
    border: 2px solid var(--accent);
    background: rgba(201, 162, 39, 0.03);
}

.mobile-popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #000;
    padding: 0.35rem 1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-card-header {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 1.5rem;
}

.mobile-card-header h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.mobile-card-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.mobile-card-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
}

.mobile-card-promo {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.35rem 0.75rem;
    background: rgba(201, 162, 39, 0.15);
    color: var(--accent);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
}

.mobile-card-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.mobile-feature {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-feature:last-child {
    border-bottom: none;
}

.mobile-feature-name {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.mobile-feature-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.mobile-feature-value.check {
    color: #4ade80;
}

.mobile-feature-value.cross {
    color: var(--text-muted);
}

.mobile-card-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    text-align: center;
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.mobile-card-btn:hover {
    border-color: var(--accent);
    background: rgba(201, 162, 39, 0.1);
}

.mobile-card-btn.primary {
    background: var(--accent);
    color: #000;
    border: none;
}

.mobile-card-btn.primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--accent-glow);
}

/* ============ MOBILE MENU ============ */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 2rem;
    padding: 2rem;
}

.mobile-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.mobile-menu a:not(.btn):hover {
    color: var(--accent);
}

.mobile-menu .btn {
    margin-top: 1rem;
}

body.menu-open {
    overflow: hidden;
}

/* Enterprise Section Styling */
.pricing-enterprise {
    margin-top: 4rem;
    padding: 0 1rem;
}

.enterprise-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    transition: all 0.3s ease;
}

.enterprise-card:hover {
    border-color: rgba(255, 208, 0, 0.3);
    transform: translateY(-2px);
}

.enterprise-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.enterprise-content {
    flex: 1;
}

.enterprise-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
}

.enterprise-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin: 0;
}

@media (max-width: 768px) {
    .enterprise-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .enterprise-icon {
        font-size: 2.5rem;
    }

    .enterprise-content h3 {
        font-size: 1.25rem;
    }

    .enterprise-content p {
        font-size: 0.95rem;
    }
}

/* ============ LANGUAGE SWITCHER ============ */
.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.85rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-right: 1rem;
}

.lang-switch:hover {
    border-color: var(--accent);
    color: var(--text-primary);
    background: rgba(201, 162, 39, 0.1);
}

.lang-flag {
    font-size: 1rem;
}

.lang-text {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.lang-switch-mobile {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary) !important;
    text-decoration: none;
    font-size: 1.25rem !important;
    padding: 0.5rem 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.lang-switch-mobile:hover {
    border-color: var(--accent);
    color: var(--text-primary) !important;
}

/* Fix button-header to properly align lang switch and CTA */
.button-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

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

.lang-flag {
    width: 20px;
    height: 15px;
    object-fit: cover;
}

/* Mobile adjustments */
@media (max-width: 900px) {
    @media (max-width: 900px) {
        .logo-img {
            height: 32px;
        }
    }

    .lang-switch {
        display: none;
    }

    .lang-switch-mobile {
        margin-top: 1rem;
    }
}

/* ============ RESPONSIVE ============ */

/* Tablet Large - 1200px */
@media (max-width: 1200px) {

    .hotel-content,
    .yacht-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .restaurant-tour-section {
        grid-template-columns: 1fr;
    }

    .hotel-details,
    .yacht-details {
        padding: 2rem;
    }

    .use-case {
        padding: 3rem 2rem;
    }

    .pricing-section {
        padding: 4rem 2rem;
    }
}

/* Tablet - 1024px */
@media (max-width: 1024px) {
    .hero {
        padding: 8rem 3rem 3rem;
    }

    .hero h1 {
        font-size: clamp(2rem, 5vw, 3.5rem);
    }

    .hotel-mockup,
    .yacht-mockup,
    .restaurant-mockup {
        max-width: 100%;
    }

    .restaurant-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card:last-child {
        grid-column: 1 / -1;
        max-width: 450px;
        margin: 0 auto;
    }
}

/* Mobile Large - 900px */
@media (max-width: 900px) {

    /* Header */
    header {
        padding: 1rem 1.5rem;
    }

    .logo-header {
        width: auto;
        font-size: 1.25rem;
    }

    .logo-icon {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .menu-header,
    .button-header {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    /* Hero */
    .hero {
        padding: 7rem 1.5rem 3rem;
    }

    .hero h1 {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }

    /* Demos */
    .demos-grid {
        grid-template-columns: 1fr;
    }

    /* Use Cases */
    .use-case {
        padding: 2rem 1rem;
        min-height: auto;
        overflow: hidden;
    }

    /* Hotel Section */
    .hotel-mockup {
        border-radius: 12px;
        overflow: hidden;
    }

    .hotel-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1rem;
    }

    .hotel-logo {
        font-size: 1.25rem;
    }

    .hotel-nav {
        width: 100%;
        overflow-x: auto;
        gap: 1.5rem;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .hotel-nav::-webkit-scrollbar {
        display: none;
    }

    .hotel-nav a {
        white-space: nowrap;
        font-size: 0.9rem;
    }

    .hotel-book-btn {
        width: 100%;
        text-align: center;
        padding: 0.75rem 1.5rem;
    }

    .hotel-content {
        padding: 1rem;
        gap: 1.5rem;
    }

    .hotel-gallery {
        gap: 0.75rem;
    }

    .hotel-main-image {
        height: 250px;
        border-radius: 8px;
    }

    .hotel-thumbnails {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
    }

    .hotel-thumb {
        height: 60px;
        border-radius: 6px;
    }

    .hotel-details {
        padding: 1.5rem;
    }

    .hotel-name {
        font-size: 1.5rem;
    }

    .hotel-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .hotel-amenities {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .hotel-amenity {
        font-size: 0.85rem;
        padding: 0.5rem;
    }

    .hotel-cta {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hotel-cta .btn {
        width: 100%;
        justify-content: center;
    }

    /* Yacht Section */
    .yacht-mockup {
        border-radius: 12px;
        overflow: hidden;
    }

    .yacht-header {
        padding: 1.5rem 1rem;
    }

    .yacht-title {
        font-size: 1.5rem;
    }

    .yacht-subtitle {
        font-size: 0.9rem;
    }

    .yacht-content {
        padding: 1rem;
    }

    .yacht-tour-wrapper {
        height: 300px;
        border-radius: 8px;
    }

    .yacht-details {
        padding: 1.5rem;
    }

    .yacht-details h2 {
        font-size: 1.5rem;
    }

    .yacht-specs {
        grid-template-columns: repeat(2, 1fr);
    }

    .yacht-amenities {
        grid-template-columns: 1fr;
    }

    .yacht-cta {
        flex-direction: column;
    }

    .yacht-cta .btn {
        width: 100%;
        justify-content: center;
    }

    /* Restaurant Section */
    .restaurant-mockup {
        border-radius: 12px;
        overflow: hidden;
    }

    .restaurant-header {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }

    .restaurant-name {
        font-size: 1.25rem;
    }

    .restaurant-nav {
        overflow-x: auto;
        gap: 1.5rem;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .restaurant-nav::-webkit-scrollbar {
        display: none;
    }

    .restaurant-book-btn {
        width: 100%;
        padding: 0.75rem;
    }

    .restaurant-content {
        padding: 1rem;
    }

    .restaurant-tour-section {
        height: 300px;
        border-radius: 8px;
    }

    .restaurant-info {
        padding: 1.5rem;
    }

    .restaurant-info h2 {
        font-size: 1.5rem;
    }

    .restaurant-features {
        grid-template-columns: 1fr;
    }

    .restaurant-menu {
        padding: 1.5rem;
    }

    .restaurant-menu h3 {
        font-size: 1.25rem;
    }

    .restaurant-cta {
        flex-direction: column;
    }

    .restaurant-cta .btn {
        width: 100%;
        justify-content: center;
    }

    /* Pricing */
    .pricing-section {
        padding: 3rem 1.5rem;
    }

    .pricing-header h2 {
        font-size: 2rem;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .pricing-card:last-child {
        grid-column: auto;
        max-width: 100%;
    }

    .oneshot-grid {
        grid-template-columns: 1fr;
    }

    /* Show mobile cards, hide desktop table */
    .pricing-mobile-cards {
        display: block;
    }

    .pricing-table-container {
        display: none;
    }

    /* CTA Section */
    .cta-section {
        padding: 3rem 1.5rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Mobile Medium - 640px */
@media (max-width: 640px) {
    .hero {
        padding: 6rem 1rem 2rem;
    }

    .hero h1 {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .use-case {
        padding: 2rem 1rem;
    }

    .hotel-mockup,
    .yacht-mockup,
    .restaurant-mockup {
        border-radius: 8px;
    }

    .hotel-details h2,
    .yacht-details h2,
    .restaurant-info h2 {
        font-size: 1.5rem;
    }

    .hotel-amenities,
    .yacht-amenities {
        grid-template-columns: 1fr;
    }

    .pricing-section {
        padding: 3rem 1rem;
    }

    .pricing-header h2,
    .cta-content h2 {
        font-size: 1.75rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .pricing-table {
        font-size: 0.8rem;
    }

    .tooltip-text {
        width: 200px;
        font-size: 12px;
        padding: 8px 10px;
    }
}

/* Mobile Small - 480px */
@media (max-width: 480px) {
    header {
        padding: 1rem;
    }

    .logo-header {
        font-size: 1.1rem;
    }

    .logo-icon {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }

    .hero {
        padding: 5rem 1rem 2rem;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }

    .hotel-header,
    .yacht-header,
    .restaurant-header {
        padding: 1rem;
    }

    .hotel-logo,
    .yacht-title,
    .restaurant-name {
        font-size: 1.25rem;
    }

    .hotel-details,
    .yacht-details,
    .restaurant-info {
        padding: 1rem;
    }

    .hotel-thumbnails {
        grid-template-columns: 1fr;
    }

    .pricing-header h2,
    .cta-content h2 {
        font-size: 1.5rem;
    }

    .pricing-card h3 {
        font-size: 1.25rem;
    }

    .pricing-card .price {
        font-size: 2rem;
    }

    .oneshot-card {
        padding: 1rem;
    }

    .plan-price {
        font-size: 1.25rem;
    }

    .cta-section {
        padding: 2.5rem 1rem;
    }
}

/* Mobile Extra Small - 375px */
@media (max-width: 375px) {
    .hero h1 {
        font-size: 1.35rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .logo-header span {
        display: none;
    }

    .pricing-table {
        min-width: 650px;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 0.5rem 0.35rem;
        font-size: 0.75rem;
    }

    .plan-name {
        font-size: 0.9rem;
    }

    .plan-price {
        font-size: 1.1rem;
    }

    .feature-name {
        font-size: 0.75rem;
    }

    .table-btn {
        padding: 0.4rem 0.75rem;
        font-size: 0.75rem;
    }
}