/* Font imports from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

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

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #fdfcfd;
    color: #151515;
}

/* Header */
.header {
    background-color: #ffffff;
    border-bottom: 1px solid #f5f5f5;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 16px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.logo-text {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    font-size: 20px;
}

.logo-black {
    color: #151515;
}

.logo-orange {
    color: #ff6b35;
}

.logo-white {
    color: #ffffff;
}

.header-nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    color: #151515;
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #ff6b35;
}

/* Hero Section */
.hero {
    min-height: 65vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 80px 50px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.portal-video {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 0;
    width: auto;
    height: auto;
    max-width: 50%;
    opacity: 0.8;
}

.hero-title {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.015em;
    margin-bottom: 24px;
    max-width: 1200px;
    color: #151515;
    position: relative;
    z-index: 1;
}

.industry-word {
    background-color: #ff6b35;
    color: #ffffff;
    padding: 0.1em 0.3em;
    display: inline-block;
    text-align: center;
    transition: width 0.3s ease;
}

.industry-text {
    display: inline-block;
}

.hero-subtitle {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    font-weight: 400;
    line-height: 1.5;
    color: #737373;
    margin-bottom: 40px;
    max-width: 700px;
    position: relative;
    z-index: 1;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 16px;
    background-color: transparent;
    color: #151515;
    text-decoration: none;
    border-radius: 4px;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    transition: all 0.2s ease;
    border: 1px solid #151515;
    position: relative;
    z-index: 1;
}

.cta-button::after {
    content: '→';
    font-size: 1.2rem;
    color: #ff6b35;
    transition: transform 0.2s ease;
}

.cta-button:hover {
    background-color: #151515;
    color: #ffffff;
    transform: translateY(-1px);
}

.cta-button:hover::after {
    transform: translateX(4px);
}

/* Features Section */
.features {
    padding: 120px 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.features-title {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.015em;
    color: #151515;
    text-align: center;
    margin-bottom: 80px;
}

.gray-text {
    color: #a1a1a1;
}

.orange-text {
    color: #ff6b35;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background-color: #f5f5f5;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-icon {
    margin-bottom: 16px;
}

.icon-placeholder {
    width: 120px;
    height: 120px;
    background-color: #e5e5e5;
    border-radius: 12px;
}

.feature-icon-img {
    width: 80px;
    height: 80px;
    padding: 8px;
    object-fit: contain;
    border-radius: 12px;
    background-color: #f4f0e8;
    opacity: 0.8;
}

.feature-card-title {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
    color: #151515;
    margin: 0;
}

.feature-number {
    color: #ff6b35;
}

.feature-card-description {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    color: #737373;
    margin: 0;
}

/* Mobile responsive */
@media (max-width: 1199px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 809px) {
    .header-container {
        padding: 16px 24px;
    }

    .header-nav {
        display: none;
    }

    .hero {
        padding: 60px 24px;
        min-height: 60vh;
    }

    .hero-title {
        margin-bottom: 20px;
    }

    .hero-subtitle {
        margin-bottom: 32px;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .portal-video {
        display: none;
    }

    .features {
        padding: 80px 24px;
    }

    .features-title {
        margin-bottom: 48px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-card {
        padding: 32px 24px;
    }

    .icon-placeholder {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 32px 20px;
    }
}

/* Expertise Section */
.expertise {
    padding: 120px 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.expertise-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.expertise-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.expertise-title {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.015em;
    color: #151515;
}

.expertise-subtitle {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    font-size: 18px;
    font-weight: 400;
    color: #737373;
}

.expertise-description {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #737373;
}

.expertise-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.expertise-card {
    background-color: #000;
    border-radius: 0;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 27px;
    left: 24px;
    width: 3px;
    height: 3px;
    background-color: #ff6b35;
    box-shadow:
        0 5px 0 #ff6b35,
        0 10px 0 #ff6b35,
        5px 0 0 #ff6b35,
        5px 5px 0 #ff6b35,
        5px 10px 0 #ff6b35;
}

.expertise-card-title {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    padding-left: 20px;
}

.expertise-card-description {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #737373;
    margin: 0;
}

/* Mobile responsive for expertise */
@media (max-width: 809px) {
    .expertise {
        padding: 80px 24px;
    }

    .expertise-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .expertise-right {
        grid-template-columns: 1fr;
    }
}

/* Stats Section */
.stats {
    padding: 100px 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background-color: #e5e5e5;
}

.stat-item {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background-color: #fdfcfd;
    padding: 60px 40px;
}

.stat-number {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 400;
    line-height: 1;
    color: #ff6b35;
}

.stat-label {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    font-size: 18px;
    font-weight: 400;
    color: #151515;
    text-transform: lowercase;
}

.stat-description {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 13px;
    line-height: 1.5;
    color: #737373;
    margin-top: 4px;
}

/* Mobile responsive for stats */
@media (max-width: 809px) {
    .stats {
        padding: 80px 24px;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 1px;
    }
}

/* Usecases Section */
.usecases {
    padding: 120px 0;
    max-width: 1400px;
    margin: 0 auto;
}

.usecases-container {
    background-color: #000000;
    background-image: radial-gradient(circle, #3b3a3a 1px, transparent 1px);
    background-size: 35px 35px;
    padding: 80px 50px;
    margin: 0 50px;
}

.usecases-title {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.015em;
    color: #ffffff;
    text-align: center;
    margin-bottom: 48px;
}

.usecases-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.nav-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid #333333;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.nav-arrow:hover {
    background-color: #1a1a1a;
    border-color: #ff6b35;
    color: #ff6b35;
}

.usecases-scroll {
    display: flex;
    gap: 24px;
    overflow-x: hidden;
    scroll-behavior: smooth;
    position: relative;
}

.usecase-card {
    width: 100%;
    background-color: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 16px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 100px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-sizing: border-box;
}

.usecase-card:hover {
    border-color: #2a2a2a;
    transform: translateY(-4px);
}

.usecase-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.usecase-industry {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 13px;
    color: #ff6b35;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.usecase-industry::before {
    content: '';
    width: 4px;
    height: 4px;
    background-color: #ff6b35;
}

.usecase-card-title {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.2;
    color: #ffffff;
    margin: 0;
}

.usecase-section {
    margin-top: 24px;
}

.usecase-section-title {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    font-size: 14px;
    font-weight: 400;
    color: #ff6b35;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.usecase-section-text {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    color: #a1a1a1;
    margin: 0;
}

.usecase-metrics-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 280px;
}

.usecase-metrics {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 70px;
}

.metric-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.metric-value {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    font-size: 28px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1;
}

.metric-label {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #737373;
    line-height: 1.4;
}

.usecase-image {
    flex-shrink: 0;
    width: 240px;
}

.usecase-image .image-placeholder {
    width: 100%;
    height: 180px;
    background-color: #1a1a1a;
    border-radius: 12px;
    border: 1px solid #2a2a2a;
}

/* Mobile responsive for usecases */
@media (max-width: 809px) {
    .usecases {
        padding: 80px 0;
    }

    .usecases-container {
        padding: 60px 24px;
        margin: 0;
    }

    .usecases-title {
        margin-bottom: 32px;
    }

    .usecases-nav {
        margin-bottom: 32px;
    }

    .usecase-card {
        min-width: 100%;
        flex-direction: column;
        padding: 32px 24px;
        grid-template-columns: 1fr;
        gap: 0;
    }

    .usecase-metrics-container {
        min-width: unset;
        margin-top: 0;
    }

    .usecase-content {
        margin-bottom: 24px;
    }

    .usecase-image {
        width: 100%;
    }

    .usecase-image .image-placeholder {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .usecase-card {
        min-width: 100%;
    }
}

/* Security Section */
.security {
    padding: 120px 50px;
    background-color: #fafafa;
}

.security-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.security-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.security-title {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.015em;
    color: #151515;
}

.security-subtitle {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #737373;
    margin: 0;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.security-card {
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.3s ease;
}

.security-card:hover {
    border-color: #ff6b35;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.security-icon {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.security-card-title {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    font-size: 20px;
    font-weight: 400;
    color: #151515;
    margin: 0;
}

.security-card-description {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #737373;
    margin: 0;
}

.security-footer {
    text-align: center;
    padding: 32px;
    background-color: #ffffff;
    border-radius: 16px;
    border: 1px solid #e5e5e5;
}

.security-footer-text {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    color: #151515;
    margin: 0;
}

.security-footer-link {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    color: #ff6b35;
    text-decoration: none;
    transition: color 0.2s ease;
}

.security-footer-link:hover {
    color: #e55a25;
}

/* Mobile responsive for security */
@media (max-width: 809px) {
    .security {
        padding: 80px 24px;
    }

    .security-container {
        gap: 48px;
    }

    .security-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .security-card {
        padding: 32px 24px;
    }
}

/* Team Section */
.team {
    padding: 120px 50px;
    max-width: 1400px;
    margin: 0 auto;
    background-color: #fdfcfd;
}

.team-container {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.team-title {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.015em;
    color: #151515;
    text-align: left;
    margin: 0;
}

.team-subtitle {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #737373;
    text-align: left;
    margin: 0;
    margin-top: -48px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.team-card {
    background-color: #0a0a0a;
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.3s ease;
    border: 1px solid #1a1a1a;
}

.team-card:hover {
    border-color: #ff6b35;
    background-color: #0f0f0f;
}

.team-member-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.team-member-name {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    font-size: 24px;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
}

.team-member-role {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #ff6b35;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
}

.team-member-description {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #a1a1a1;
    margin: 0;
}

.team-member-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    color: #ffffff;
    text-decoration: none;
    margin-top: 8px;
    transition: all 0.2s ease;
    padding: 8px 12px;
    border: 1px solid #1a1a1a;
    background-color: transparent;
}

.team-member-linkedin:hover {
    color: #ff6b35;
    border-color: #ff6b35;
}

.team-member-linkedin svg {
    transition: fill 0.2s ease;
}

/* Mobile responsive for team */
@media (max-width: 1199px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 809px) {
    .team {
        padding: 80px 24px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .team-card {
        padding: 32px 24px;
    }
}

/* Blog Section */
.blog {
    padding: 120px 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.blog-container {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.blog-title {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.015em;
    color: #151515;
    text-align: center;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.blog-card {
    background-color: #f5f5f5;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    background-color: #efefef;
}

.blog-card-title {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3;
    color: #151515;
    margin: 0;
}

.blog-card-description {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #737373;
    margin: 0;
    flex: 1;
}

.blog-card-link {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    color: #ff6b35;
    margin-top: auto;
}

/* Mobile responsive for blog */
@media (max-width: 809px) {
    .blog {
        padding: 80px 24px;
    }

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

/* Footer */
.footer {
    background-color: #0a0a0a;
    border-top: 1px solid #1a1a1a;
    padding: 120px 50px 60px;
    margin-top: 200px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 120px;
    margin-bottom: 80px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.footer-logo-text {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    font-size: 20px;
}

.footer-tagline {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    color: #737373;
    margin: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
}

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

.footer-column-title {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 8px 0;
}

.footer-link {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    color: #737373;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #ff6b35;
}

.footer-contact {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    color: #737373;
    margin: 0 0 8px 0;
    line-height: 1.6;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid #1a1a1a;
}

.footer-copyright {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 13px;
    color: #737373;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 24px;
}

.footer-social-link {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 13px;
    color: #737373;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-social-link:hover {
    color: #ff6b35;
}

/* Mobile responsive for footer */
@media (max-width: 809px) {
    .footer {
        padding: 60px 24px 32px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .footer-links {
        grid-template-columns: 1fr;
    }
}

/* Blog Article Pages */
.blog-article {
    padding: 80px 50px 120px;
    max-width: 900px;
    margin: 0 auto;
}

.blog-article-container {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.blog-article-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 32px;
    border-bottom: 1px solid #e5e5e5;
}

.blog-article-category {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #ff6b35;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-article-title {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.015em;
    color: #151515;
    margin: 0;
}

.blog-article-meta {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    color: #737373;
    margin: 0;
}

.blog-article-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.blog-article-intro {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #151515;
    margin: 0;
}

.blog-article-content h2 {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.3;
    color: #151515;
    margin: 32px 0 16px 0;
}

.blog-article-content h3 {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.3;
    color: #151515;
    margin: 24px 0 12px 0;
}

.blog-article-content p {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #151515;
    margin: 0;
}

.blog-article-content ul,
.blog-article-content ol {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #151515;
    padding-left: 24px;
    margin: 0;
}

.blog-article-content li {
    margin: 8px 0;
}

.blog-article-content strong {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    color: #ff6b35;
}

.blog-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin: 32px 0;
    padding: 40px;
    background-color: #f5f5f5;
    border-radius: 12px;
}

.blog-stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
}

.blog-stat-value {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    font-size: 32px;
    font-weight: 400;
    color: #ff6b35;
    line-height: 1;
}

.blog-stat-label {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    color: #737373;
    line-height: 1.4;
}

.blog-article-cta {
    margin-top: 48px;
    padding: 48px;
    background-color: #f5f5f5;
    border-radius: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.blog-article-cta h3 {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    font-size: 24px;
    font-weight: 400;
    color: #151515;
    margin: 0;
}

.blog-article-cta p {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    color: #737373;
    margin: 0;
}

/* Mobile responsive for blog articles */
@media (max-width: 809px) {
    .blog-article {
        padding: 60px 24px 80px;
    }

    .blog-stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 32px 24px;
    }

    .blog-article-cta {
        padding: 32px 24px;
    }
}

/* Booking Page Styles */
.booking-section {
    padding: 80px 50px 120px;
    max-width: 1200px;
    margin: 0 auto;
}

.booking-container {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.booking-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.booking-title {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.015em;
    color: #151515;
    margin: 0;
}

.booking-subtitle {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.25rem;
    color: #737373;
    margin: 0;
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.booking-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.booking-info-title {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    font-size: 1.5rem;
    font-weight: 400;
    color: #151515;
    margin: 0;
}

.booking-info-text {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #555555;
    margin: 0;
}

.booking-info-list {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #555555;
    margin: 0;
    padding-left: 24px;
}

.booking-info-list li {
    margin-bottom: 8px;
}

.calendar-placeholder {
    min-height: 100vh;
}

.calendar-placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.calendar-placeholder-text {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    color: #999999;
    margin: 0;
}

.footer-simple {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 40px 0;
}

/* Mobile responsive for booking page */
@media (max-width: 809px) {
    .booking-section {
        padding: 60px 24px 80px;
    }

    .booking-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .calendar-placeholder {
        min-height: 400px;
    }
}
