
* {
    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;
}
body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}
/* ============ HEADER ============ */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 4rem;
    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 {
    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;
}
nav {
    display: flex;
    align-items: center;
    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: 8rem 4rem 4rem;
    display: flex;
    flex-direction: column;
    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 auto 4rem;
    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 {
    padding: 8rem 4rem;
    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 {
    max-width: 700px;
    margin: 0 auto;
}
.cta-section h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.cta-section 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: 8rem 4rem;
    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 {
    max-width: 1100px;
    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(3, 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);
}

/* 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 {
    width: 35%;
}

.pricing-table .plan-col {
    width: calc(65% / 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.1rem;
    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);
}

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

.pricing-table tbody td {
    font-size: 0.95rem;
    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);
    }
}
/* ============ RESPONSIVE ============ */
@media (max-width: 1200px) {
    .hotel-content,
    .yacht-content {
        grid-template-columns: 1fr;
    }
    .restaurant-tour-section {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 900px) {
    header {
        padding: 1rem 2rem;
    }
    nav {
        display: none;
    }
    .hero {
        padding: 6rem 2rem 2rem;
    }
    .demos-grid {
        grid-template-columns: 1fr;
    }
    .use-case {
        padding: 2rem 1rem;
    }
    .hotel-thumbnails {
        grid-template-columns: repeat(2, 1fr);
    }
    .yacht-amenities {
        grid-template-columns: 1fr;
    }
    .cta-section {
        padding: 4rem 2rem;
    }
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    .pricing-section {
        padding: 4rem 1.5rem;
    }

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

    .pricing-table-container {
        margin: 0 -1.5rem;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }

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

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

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

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

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