/* =========================================================
   SmartDesk Hospitality
   Global Professional Styles
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f4f7fb;
    color: #1f2937;
}


/* =========================================================
   REGISTRATION PAGE
   ========================================================= */

.register-page {
    min-height: 100vh;
    display: flex;
    background: #f4f7fb;
}


/* =========================================================
   LEFT BRAND PANEL
   ========================================================= */

.register-brand {
    width: 42%;
    min-height: 100vh;
    background: linear-gradient(
    145deg,
    #0f766e 0%,
    #116e68 55%,
    #0b5f59 100%
);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.register-brand::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    top: -180px;
    right: -150px;
}

.register-brand::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(96, 165, 250, 0.08);
    bottom: -140px;
    left: -120px;
}

.brand-content {
    width: 100%;
    max-width: 500px;
    position: relative;
    z-index: 2;
}


/* =========================================================
   BRAND LOGO
   ========================================================= */

/* =====================================================
   SMARTDESK HERO LOGO EFFECT
   ===================================================== */

.brand-logo {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 22px;
    position: relative;
    animation: logoFloat 4s ease-in-out infinite;
}

.brand-logo::before {
    content: "";
    position: absolute;
    width: 105px;
    height: 105px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.18);
    filter: blur(24px);
    z-index: 0;
    animation: logoGlow 3s ease-in-out infinite;
}

.brand-logo img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    display: block;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.28));
}

/* Floating Hero Animation */

@keyframes logoFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Soft Glow Animation */

@keyframes logoGlow {
    0%,
    100% {
        opacity: 0.45;
        transform: scale(0.92);
    }

    50% {
        opacity: 0.85;
        transform: scale(1.08);
    }
}
/* =====================================================
   BRAND CONTENT
   ===================================================== */

.brand-content {
    margin-top: -620px;
}

.brand-content h1 {
    margin: 0;
    font-size: 48px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -1px;
}

.brand-content h2 {
    margin-top: 8px;
    font-size: 25px;
    line-height: 1.2;
    font-weight: 500;
    color: #bfdbfe;
}

.brand-content > p {
    margin-top: 25px;
    max-width: 440px;
    font-size: 17px;
    line-height: 1.7;
    color: #dbeafe;
}

/* =========================================================
   BRAND FEATURES
   ========================================================= */

.brand-features {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-item > span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.feature-item strong {
    display: block;
    font-size: 15px;
    margin-bottom: 5px;
}

.feature-item small {
    display: block;
    font-size: 13px;
    line-height: 1.5;
    color: #bfdbfe;
}


/* =========================================================
   RIGHT REGISTRATION PANEL
   ========================================================= */

.register-panel {
    width: 58%;
    min-height: 100vh;
    padding: 50px 60px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow-y: auto;
}

.register-card {
    width: 100%;
    max-width: 720px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 42px;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
}


/* =========================================================
   REGISTRATION HEADER
   ========================================================= */

.register-header {
    margin-bottom: 32px;
}

.welcome-text {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #2563eb;
    margin-bottom: 10px;
}

.register-header h2 {
    font-size: 29px;
    line-height: 1.25;
    color: #111827;
}

.register-header p {
    margin-top: 9px;
    font-size: 14px;
    line-height: 1.6;
    color: #6b7280;
}


/* =========================================================
   FORM SECTION
   ========================================================= */

.form-section-title {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    padding-bottom: 10px;
    margin-top: 28px;
    margin-bottom: 18px;
    border-bottom: 1px solid #e5e7eb;
}

.form-row {
    width: 100%;
    margin-bottom: 18px;
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}


/* =========================================================
   FORM GROUP
   ========================================================= */

.form-group {
    width: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 7px;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 9px;
    background: #ffffff;
    color: #111827;
    font-size: 14px;
    padding: 12px 13px;
    outline: none;
    transition: 0.2s ease;
}

.form-group input,
.form-group select {
    height: 46px;
}

.form-group textarea {
    resize: vertical;
    min-height: 90px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.10);
}


/* =========================================================
   TERMS
   ========================================================= */

.terms-row {
    margin-top: 25px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    cursor: pointer;
    font-size: 13px;
    line-height: 1.5;
    color: #6b7280;
}

.checkbox-label input {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: #2563eb;
}


/* =========================================================
   MESSAGE
   ========================================================= */

.register-message {
    min-height: 20px;
    margin-top: 15px;
    font-size: 13px;
    line-height: 1.5;
}


/* =========================================================
   REGISTER BUTTON
   ========================================================= */

.register-btn {
    width: 100%;
    height: 48px;
    margin-top: 12px;
    border: none;
    border-radius: 9px;
    background: #2563eb;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s ease;
}

.register-btn:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

.register-btn:active {
    transform: translateY(0);
}

.register-btn:disabled {
    background: #93c5fd;
    cursor: not-allowed;
    transform: none;
}


/* =========================================================
   LOGIN LINK
   ========================================================= */

.login-link {
    text-align: center;
    margin-top: 22px;
    font-size: 13px;
    color: #6b7280;
}

.login-link a {
    color: #2563eb;
    font-weight: 700;
    text-decoration: none;
}

.login-link a:hover {
    text-decoration: underline;
}


/* =========================================================
   RESPONSIVE DESIGN
   ========================================================= */

@media (max-width: 1000px) {

    .register-brand {
        width: 38%;
        padding: 35px;
    }

    .register-panel {
        width: 62%;
        padding: 35px;
    }

    .register-card {
        padding: 32px;
    }

    .brand-content h1 {
        font-size: 40px;
    }

    .brand-content h2 {
        font-size: 22px;
    }
}


@media (max-width: 760px) {

    .register-page {
        display: block;
    }

    .register-brand {
        width: 100%;
        min-height: auto;
        padding: 40px 25px;
    }

    .register-brand::before,
    .register-brand::after {
        display: none;
    }

    .brand-content {
        max-width: 650px;
    }

    .brand-content h1 {
        font-size: 38px;
    }

    .brand-content > p {
        font-size: 15px;
    }

    .brand-features {
        margin-top: 30px;
        gap: 18px;
    }

    .register-panel {
        width: 100%;
        min-height: auto;
        padding: 25px 15px 40px;
    }

    .register-card {
        padding: 25px 20px;
        border-radius: 14px;
    }

    .two-column {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .two-column .form-group {
        margin-bottom: 18px;
    }

    .register-header h2 {
        font-size: 25px;
    }
}


@media (max-width: 450px) {

    .register-brand {
        padding: 30px 20px;
    }

    .brand-logo {
        width: 60px;
        height: 60px;
        font-size: 23px;
    }

    .brand-content h1 {
        font-size: 32px;
    }

    .brand-content h2 {
        font-size: 20px;
    }

    .register-panel {
        padding: 15px 10px 30px;
    }

    .register-card {
        padding: 22px 16px;
    }

    .register-header h2 {
        font-size: 23px;
    }
}
/* =========================================================
   SMARTDESK HOSPITALITY
   HOME PAGE STYLES
   ========================================================= */


/* =========================================================
   GLOBAL CONTAINER
   ========================================================= */

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}


/* =========================================================
   SITE HEADER
   ========================================================= */

.site-header {
    width: 100%;
    height: 76px;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


/* =========================================================
   SITE LOGO
   ========================================================= */

.site-logo {
    display: flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-mark {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: #2563eb;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text strong {
    font-size: 16px;
    color: #111827;
    font-weight: 800;
}

.logo-text small {
    margin-top: 3px;
    font-size: 10px;
    color: #2563eb;
    font-weight: 700;
    letter-spacing: 0.7px;
}


/* =========================================================
   MAIN NAVIGATION
   ========================================================= */

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav a {
    color: #4b5563;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: 0.2s ease;
}

.main-nav a:hover {
    color: #2563eb;
}


/* =========================================================
   HEADER ACTIONS
   ========================================================= */

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.login-btn {
    height: 40px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #374151;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    border-radius: 8px;
    transition: 0.2s ease;
}

.login-btn:hover {
    background: #f3f4f6;
}

.header-register-btn {
    height: 40px;
    padding: 0 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2563eb;
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    border-radius: 8px;
    transition: 0.2s ease;
}

.header-register-btn:hover {
    background: #1d4ed8;
}


/* =========================================================
   HERO SECTION
   ========================================================= */

.hero-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(37, 99, 235, 0.10),
            transparent 32%
        ),
        linear-gradient(
            180deg,
            #f8fbff 0%,
            #ffffff 100%
        );
    padding: 100px 0 90px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
}

.hero-content {
    max-width: 570px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 50px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.7px;
}

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #2563eb;
}

.hero-content h1 {
    margin-top: 22px;
    font-size: 60px;
    line-height: 1.05;
    letter-spacing: -2.5px;
    color: #111827;
    font-weight: 800;
}

.hero-content h1 span {
    color: #2563eb;
}

.hero-description {
    margin-top: 24px;
    max-width: 520px;
    font-size: 17px;
    line-height: 1.75;
    color: #6b7280;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
}

.primary-btn,
.secondary-btn {
    min-height: 48px;
    padding: 0 20px;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: 0.2s ease;
}

.primary-btn {
    background: #2563eb;
    color: #ffffff;
}

.primary-btn:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

.primary-btn span {
    font-size: 17px;
}

.secondary-btn {
    background: #ffffff;
    color: #374151;
    border: 1px solid #d1d5db;
}

.secondary-btn:hover {
    border-color: #2563eb;
    color: #2563eb;
}

.hero-note {
    margin-top: 24px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    line-height: 1.6;
    color: #6b7280;
}

.hero-note span {
    color: #2563eb;
    font-weight: 800;
}


/* =========================================================
   HERO DASHBOARD VISUAL
   ========================================================= */

.hero-visual {
    width: 100%;
    display: flex;
    justify-content: center;
}

.dashboard-window {
    width: 100%;
    max-width: 540px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid #dbe3ef;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.14);
    overflow: hidden;
    transform: perspective(1200px) rotateY(-3deg);
}

.window-header {
    height: 42px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f8fafc;
    border-bottom: 1px solid #e5e7eb;
}

.window-dots {
    display: flex;
    gap: 5px;
}

.window-dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #cbd5e1;
}

.window-title {
    font-size: 10px;
    color: #64748b;
    font-weight: 600;
}

.mini-dashboard {
    min-height: 340px;
    display: flex;
    background: #f8fafc;
}

.mini-sidebar {
    width: 125px;
    padding: 16px 10px;
    background: #0f172a;
    flex-shrink: 0;
}

.mini-logo {
    width: 30px;
    height: 30px;
    margin: 0 auto 20px;
    border-radius: 8px;
    background: #2563eb;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800;
}

.mini-menu {
    padding: 9px 8px;
    margin-bottom: 4px;
    border-radius: 6px;
    color: #94a3b8;
    font-size: 8px;
    font-weight: 600;
}

.mini-menu.active {
    background: rgba(255, 255, 255, 0.10);
    color: #ffffff;
}

.mini-main {
    flex: 1;
    padding: 20px;
    min-width: 0;
}

.mini-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.mini-top small {
    display: block;
    font-size: 7px;
    color: #94a3b8;
    font-weight: 800;
    letter-spacing: 0.6px;
}

.mini-top h3 {
    margin-top: 4px;
    font-size: 17px;
    color: #1e293b;
}

.mini-date {
    padding: 6px 9px;
    border: 1px solid #e2e8f0;
    border-radius: 5px;
    background: #ffffff;
    font-size: 7px;
    color: #64748b;
}

.mini-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 18px;
}

.mini-stat {
    padding: 12px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}

.mini-stat small {
    display: block;
    font-size: 7px;
    color: #94a3b8;
}

.mini-stat strong {
    display: block;
    margin-top: 5px;
    font-size: 18px;
    color: #1e293b;
}

.mini-chart {
    margin-top: 10px;
    padding: 14px;
    height: 130px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}

.chart-title {
    font-size: 8px;
    color: #475569;
    font-weight: 700;
}

.chart-bars {
    height: 80px;
    margin-top: 8px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
}

.chart-bars i {
    width: 18px;
    display: block;
    background: #bfdbfe;
    border-radius: 4px 4px 0 0;
}

.mini-channel {
    margin-top: 10px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}

.mini-channel span {
    font-size: 8px;
    color: #475569;
    font-weight: 700;
}

.mini-channel strong {
    font-size: 8px;
    color: #2563eb;
}


/* =========================================================
   INTRO SECTION
   ========================================================= */

.intro-section {
    padding: 95px 0 80px;
    background: #ffffff;
}

.intro-content {
    max-width: 800px;
    text-align: center;
}

.section-label {
    display: inline-block;
    font-size: 10px;
    color: #2563eb;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.intro-content h2,
.section-heading h2 {
    margin-top: 14px;
    color: #111827;
    font-size: 38px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.intro-content p {
    max-width: 650px;
    margin: 20px auto 0;
    color: #6b7280;
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   SOLUTIONS SECTION
   ========================================================= */

.solutions-section {
    padding: 90px 0;
    background: #f8fafc;
}

.section-heading {
    max-width: 700px;
    margin-bottom: 42px;
}

.section-heading p {
    margin-top: 15px;
    color: #6b7280;
    font-size: 15px;
    line-height: 1.7;
}

.section-heading.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.solution-card {
    position: relative;
    padding: 30px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    transition: 0.25s ease;
}

.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
}

.solution-card.featured {
    border-color: #93c5fd;
}

.solution-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eff6ff;
    border-radius: 12px;
    font-size: 21px;
}

.solution-tag {
    margin-top: 17px;
    display: inline-block;
    font-size: 9px;
    color: #2563eb;
    font-weight: 800;
    letter-spacing: 1px;
}

.solution-card h3 {
    margin-top: 18px;
    color: #111827;
    font-size: 21px;
}

.solution-card p {
    margin-top: 12px;
    color: #6b7280;
    font-size: 13px;
    line-height: 1.7;
}

.solution-card a {
    display: inline-block;
    margin-top: 22px;
    color: #2563eb;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
}


/* =========================================================
   FEATURES SECTION
   ========================================================= */

.features-section {
    padding: 100px 0;
    background: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.features-content h2 {
    margin-top: 14px;
    font-size: 40px;
    line-height: 1.15;
    letter-spacing: -1px;
    color: #111827;
}

.features-content > p {
    max-width: 500px;
    margin-top: 18px;
    color: #6b7280;
    font-size: 15px;
    line-height: 1.75;
}

.feature-list {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.feature-row {
    display: flex;
    align-items: flex-start;
    gap: 13px;
}

.feature-row > span {
    width: 25px;
    height: 25px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #eff6ff;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
}

.feature-row strong {
    display: block;
    color: #1f2937;
    font-size: 14px;
}

.feature-row p {
    margin-top: 5px;
    color: #6b7280;
    font-size: 12px;
    line-height: 1.5;
}


/* =========================================================
   OPERATIONS CARD
   ========================================================= */

.operations-card {
    padding: 28px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.06);
}

.operations-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.operations-header small {
    font-size: 9px;
    color: #64748b;
    font-weight: 800;
    letter-spacing: 1px;
}

.operations-header h3 {
    margin-top: 5px;
    color: #1e293b;
    font-size: 20px;
}

.status-pill {
    padding: 5px 9px;
    border-radius: 50px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 9px;
    font-weight: 800;
}

.inventory-room,
.inventory-available {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    border-bottom: 1px solid #e2e8f0;
}

.inventory-room strong,
.inventory-available strong {
    color: #1e293b;
    font-size: 17px;
}

.inventory-room div,
.inventory-available div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.inventory-room div strong,
.inventory-available div span {
    font-size: 13px;
    color: #334155;
}

.inventory-room small,
.inventory-available small {
    color: #94a3b8;
    font-size: 10px;
}

.inventory-available {
    border-bottom: none;
    margin-top: 2px;
    padding: 20px 15px;
    border-radius: 10px;
    background: #eff6ff;
}

.inventory-available strong {
    font-size: 24px;
    color: #2563eb;
}

.inventory-note {
    padding-top: 16px;
    color: #64748b;
    font-size: 10px;
    line-height: 1.6;
}


/* =========================================================
   CHANNELS SECTION
   ========================================================= */

.channels-section {
    padding: 100px 0;
    background: #f8fafc;
}

.channel-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.channel-card {
    min-height: 150px;
    padding: 22px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    text-align: center;
}

.channel-logo {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #eff6ff;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
}

.channel-card strong {
    margin-top: 12px;
    font-size: 12px;
    color: #1e293b;
}

.channel-card span {
    margin-top: 5px;
    font-size: 9px;
    color: #94a3b8;
}

.channel-disclaimer {
    margin-top: 25px;
    text-align: center;
    color: #94a3b8;
    font-size: 10px;
    line-height: 1.6;
}


/* =========================================================
   WORKFLOW SECTION
   ========================================================= */

.workflow-section {
    padding: 100px 0;
    background: #ffffff;
}

.workflow-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: start;
    gap: 12px;
}

.workflow-step {
    text-align: center;
}

.step-number {
    width: 46px;
    height: 46px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eff6ff;
    color: #2563eb;
    font-size: 11px;
    font-weight: 800;
}

.workflow-step h3 {
    margin-top: 16px;
    color: #1e293b;
    font-size: 14px;
}

.workflow-step p {
    margin-top: 8px;
    color: #6b7280;
    font-size: 11px;
    line-height: 1.6;
}

.workflow-line {
    width: 45px;
    height: 1px;
    margin-top: 23px;
    background: #dbeafe;
}


/* =========================================================
   ABOUT SECTION
   ========================================================= */

.about-section {
    padding: 80px 0;
    background: #f8fafc;
}

.about-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    padding: 55px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
}

.about-box h2 {
    margin-top: 14px;
    color: #111827;
    font-size: 32px;
    line-height: 1.25;
    letter-spacing: -0.7px;
}

.about-box > p {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.cta-section {
    padding: 90px 0;
    background: #0f172a;
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.cta-box h2 {
    max-width: 650px;
    margin-top: 13px;
    color: #ffffff;
    font-size: 36px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.cta-box p {
    max-width: 600px;
    margin-top: 14px;
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.7;
}

.primary-btn.light {
    background: #ffffff;
    color: #1d4ed8;
    flex-shrink: 0;
}

.primary-btn.light:hover {
    background: #eff6ff;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    background: #020617;
    padding: 38px 0;
    color: #94a3b8;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
}

.footer-logo .logo-text strong {
    color: #ffffff;
}

.footer-brand p {
    margin-top: 12px;
    font-size: 10px;
    color: #64748b;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 22px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 10px;
    font-weight: 600;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-copy {
    text-align: right;
    font-size: 9px;
    color: #64748b;
}


/* =========================================================
   HOME PAGE RESPONSIVE
   ========================================================= */

@media (max-width: 1000px) {

    .main-nav {
        gap: 16px;
    }

    .hero-grid {
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .solution-grid {
        gap: 14px;
    }

    .features-grid {
        gap: 45px;
    }

    .channel-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .workflow-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }

    .workflow-line {
        display: none;
    }

    .about-box {
        gap: 40px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-links {
        justify-content: center;
    }

    .footer-copy {
        text-align: center;
    }
}


@media (max-width: 760px) {

    .site-header {
        height: auto;
        padding: 15px 0;
    }

    .header-inner {
        flex-wrap: wrap;
        gap: 14px;
    }

    .main-nav {
        order: 3;
        width: 100%;
        justify-content: center;
        padding-top: 8px;
        border-top: 1px solid #f1f5f9;
    }

    .header-actions {
        margin-left: auto;
    }

    .header-register-btn {
        padding: 0 12px;
    }

    .hero-section {
        padding: 65px 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        max-width: none;
    }

    .hero-content h1 {
        font-size: 45px;
    }

    .hero-visual {
        margin-top: 15px;
    }

    .dashboard-window {
        transform: none;
    }

    .intro-section,
    .solutions-section,
    .features-section,
    .channels-section,
    .workflow-section {
        padding: 70px 0;
    }

    .intro-content h2,
    .section-heading h2 {
        font-size: 31px;
    }

    .solution-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .features-content h2 {
        font-size: 34px;
    }

    .channel-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-box {
        grid-template-columns: 1fr;
        padding: 35px;
    }

    .cta-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-box h2 {
        font-size: 31px;
    }
}


@media (max-width: 450px) {

    .container {
        padding: 0 16px;
    }

    .main-nav {
        gap: 13px;
    }

    .main-nav a {
        font-size: 11px;
    }

    .login-btn {
        padding: 0 9px;
    }

    .header-register-btn {
        font-size: 11px;
    }

    .hero-content h1 {
        font-size: 38px;
        letter-spacing: -1.5px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
    }

    .mini-sidebar {
        width: 90px;
    }

    .mini-main {
        padding: 12px;
    }

    .mini-stats {
        gap: 5px;
    }

    .mini-stat {
        padding: 8px;
    }

    .mini-stat strong {
        font-size: 15px;
    }

    .channel-grid {
        grid-template-columns: 1fr 1fr;
    }

    .workflow-grid {
        grid-template-columns: 1fr;
    }

    .about-box {
        padding: 25px 20px;
    }

    .cta-section {
        padding: 70px 0;
    }
}
/* =========================================================
   SMARTDESK HOSPITALITY FULL BRAND LOGO
   ========================================================= */

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.site-logo-image {
    display: block;
    width: 52px;
    height: 52px;
    object-fit: contain;
    flex-shrink: 0;
}

.site-logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    line-height: 1;
}

.site-logo-text strong {
    display: block;
    color: #0f172a;
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.7px;
}

.site-logo-text small {
    display: block;
    margin-top: 6px;
    color: #0f766e;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 2.2px;
}


/* =========================================================
   FOOTER LOGO
   ========================================================= */

.footer-logo .site-logo-image {
    width: 46px;
    height: 46px;
}

.footer-logo .site-logo-text strong {
    color: #ffffff;
    font-size: 20px;
}

.footer-logo .site-logo-text small {
    font-size: 9px;
    letter-spacing: 1.8px;
}


/* =========================================================
   MOBILE LOGO
   ========================================================= */

@media (max-width: 450px) {

    .site-logo {
        gap: 9px;
    }

    .site-logo-image {
        width: 42px;
        height: 42px;
    }

    .site-logo-text strong {
        font-size: 20px;
    }

    .site-logo-text small {
        font-size: 9px;
        margin-top: 5px;
        letter-spacing: 1.8px;
    }

    .footer-logo .site-logo-image {
        width: 40px;
        height: 40px;
    }

}
/* =====================================================
   SMARTDESK HOSPITALITY - BRAND LOGO
   ===================================================== */

.brand-logo {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
/* =================================================
   HOME NAVIGATION
   SmartDesk Hospitality V12.0.0
   ================================================= */

.home-navigation {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 32px;
}

.home-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    min-width: 125px;
    height: 50px;
    padding: 0 20px;

    background: #1a6d67;
    color: #ffffff;

    text-decoration: none;
    font-size: 14px;
    font-weight: 700;

    border-radius: 12px;

    box-shadow: 0 10px 24px rgba(26,109,103,0.22);

    transition: all 0.25s ease;
}

.home-icon {
    font-size: 15px;
}

.home-link:hover {
    background: #145a55;
    color: #ffffff;

    transform: translateY(-2px);

    box-shadow: 0 12px 28px rgba(26,109,103,0.30);
}

.home-link:active {
    transform: translateY(0);
}

/* Mobile */

@media (max-width:768px){

    .home-navigation{
        justify-content:center;
        margin-bottom:24px;
    }

    .home-link{
        width:100%;
        max-width:220px;
    }

}