@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #111827;
}

.gradient-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #e5e7eb;
}

.landing-nav-container {
    position: relative;
}

.landing-nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
}

@media (min-width: 640px) {
    .landing-nav-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .landing-nav-container {
        padding: 0 2rem;
    }
}

.landing-nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

@media (min-width: 768px) {
    .landing-nav-inner {
        height: 5rem;
    }
}

.landing-nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.landing-nav-brand img {
    height: 2rem;
    width: auto;
}

@media (min-width: 768px) {
    .landing-nav-brand img {
        height: 2.5rem;
    }
}

.landing-nav-brand span {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
}

@media (min-width: 768px) {
    .landing-nav-brand span {
        font-size: 1.5rem;
    }
}

.landing-nav-links {
    display: none;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .landing-nav-links {
        display: flex;
    }
}

.landing-nav-link {
    color: #4b5563;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.landing-nav-link:hover {
    color: #111827;
}

.landing-nav-cta {
    background: linear-gradient(to right, #4f46e5, #9333ea);
    color: white;
    padding: 0.625rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.landing-nav-cta:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.landing-mobile-menu-btn {
    display: block;
    color: #4b5563;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

@media (min-width: 768px) {
    .landing-mobile-menu-btn {
        display: none;
    }
}

.landing-mobile-menu {
    display: none;
    background-color: white;
    border-top: 1px solid #e5e7eb;
    padding: 1rem;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.landing-mobile-menu.show {
    display: block !important;
}

.landing-mobile-menu a {
    display: block;
    color: #4b5563;
    font-weight: 500;
    text-decoration: none;
    padding: 0.75rem 0;
    transition: color 0.2s;
}

.landing-mobile-menu a:hover {
    color: #111827;
}

/* Hero Section */
.landing-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 4rem;
}

@media (min-width: 768px) {
    .landing-hero {
        padding-top: 5rem;
    }
}

.landing-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0.05;
}

.landing-hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 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='%23667eea' fill-opacity='0.05'%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");
}

.landing-hero-container {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 5rem 1rem;
    width: 100%;
}

@media (min-width: 768px) {
    .landing-hero-container {
        padding: 8rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .landing-hero-container {
        padding: 8rem 2rem;
    }
}

.landing-hero-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .landing-hero-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.landing-hero-content {
    text-align: center;
}

@media (min-width: 1024px) {
    .landing-hero-content {
        text-align: left;
    }
}

.landing-hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #e0e7ff;
    color: #4338ca;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.landing-hero-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #111827;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .landing-hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .landing-hero-title {
        font-size: 3.75rem;
    }
}

.landing-hero-description {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.75;
}

@media (min-width: 768px) {
    .landing-hero-description {
        font-size: 1.25rem;
    }
}

.landing-hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .landing-hero-actions {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .landing-hero-actions {
        justify-content: flex-start;
    }
}

.landing-btn-primary {
    background: linear-gradient(to right, #4f46e5, #9333ea);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
    transform: scale(1);
}

.landing-btn-primary:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: scale(1.05);
}

.landing-btn-secondary {
    background: white;
    border: 2px solid #d1d5db;
    color: #374151;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
}

.landing-btn-secondary:hover {
    border-color: #4f46e5;
    color: #4f46e5;
}

.landing-hero-features {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    font-size: 0.875rem;
    color: #6b7280;
}

@media (min-width: 1024px) {
    .landing-hero-features {
        justify-content: flex-start;
    }
}

.landing-hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.landing-hero-feature svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #10b981;
}

.landing-hero-mockup {
    position: relative;
    display: none;
}

@media (min-width: 1024px) {
    .landing-hero-mockup {
        display: block;
    }
}

.landing-mockup-card {
    position: relative;
    background: linear-gradient(to bottom right, #eef2ff, #faf5ff);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: rotate(3deg);
    transition: transform 0.5s;
}

.landing-mockup-card:hover {
    transform: rotate(0deg);
}

.landing-mockup-inner {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.landing-mockup-header {
    background-color: #f3f4f6;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.landing-mockup-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 9999px;
}

.landing-mockup-dot-red {
    background-color: #ef4444;
}

.landing-mockup-dot-yellow {
    background-color: #eab308;
}

.landing-mockup-dot-green {
    background-color: #22c55e;
}

.landing-mockup-body {
    padding: 1.5rem;
}

.landing-mockup-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.landing-mockup-line {
    height: 1rem;
    background-color: #e5e7eb;
    border-radius: 0.25rem;
}

.landing-mockup-line-1 {
    width: 75%;
}

.landing-mockup-line-2 {
    width: 50%;
}

.landing-mockup-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.landing-mockup-box {
    height: 6rem;
    border-radius: 0.5rem;
}

.landing-mockup-box-1 {
    background: linear-gradient(to bottom right, #c7d2fe, #a5b4fc);
}

.landing-mockup-box-2 {
    background: linear-gradient(to bottom right, #e9d5ff, #d8b4fe);
}

.landing-mockup-box-3 {
    background: linear-gradient(to bottom right, #fce7f3, #fbcfe8);
}

.landing-mockup-badge {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    transform: rotate(-6deg);
    border: 2px solid #e0e7ff;
}

.landing-mockup-badge-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.landing-mockup-badge-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(to bottom right, #6366f1, #9333ea);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
}

.landing-mockup-badge-text {
    font-weight: 600;
    color: #111827;
}

.landing-mockup-badge-subtext {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Section Styles */
.landing-section {
    padding: 5rem 1rem;
}

@media (min-width: 768px) {
    .landing-section {
        padding: 8rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .landing-section {
        padding: 8rem 2rem;
    }
}

.landing-container {
    max-width: 1280px;
    margin: 0 auto;
}

.landing-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.landing-section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .landing-section-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .landing-section-title {
        font-size: 3rem;
    }
}

.landing-section-description {
    font-size: 1.125rem;
    color: #4b5563;
    max-width: 42rem;
    margin: 0 auto;
}

/* Features Grid */
.landing-features-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .landing-features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .landing-features-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.landing-feature-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
}

.landing-feature-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.landing-feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.2s;
}

.landing-feature-card:hover .landing-feature-icon {
    transform: scale(1.1);
}

.landing-feature-icon-indigo {
    background: linear-gradient(to bottom right, #6366f1, #9333ea);
}

.landing-feature-icon-blue {
    background: linear-gradient(to bottom right, #3b82f6, #06b6d4);
}

.landing-feature-icon-green {
    background: linear-gradient(to bottom right, #22c55e, #10b981);
}

.landing-feature-icon-orange {
    background: linear-gradient(to bottom right, #f97316, #ef4444);
}

.landing-feature-icon-pink {
    background: linear-gradient(to bottom right, #ec4899, #f43f5e);
}

.landing-feature-icon-yellow {
    background: linear-gradient(to bottom right, #eab308, #f59e0b);
}

.landing-feature-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: white;
}

.landing-feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
}

.landing-feature-description {
    color: #4b5563;
    line-height: 1.75;
}

/* UI Mockups Section */
.landing-mockups-grid {
    display: grid;
    gap: 2rem;
    margin-top: 4rem;
}

@media (min-width: 768px) {
    .landing-mockups-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.landing-mockup-item {
    position: relative;
}

.landing-mockup-item:nth-child(2) {
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .landing-mockup-item:nth-child(2) {
        margin-top: 0;
    }
}

.landing-mockup-item:nth-child(3) {
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .landing-mockup-item:nth-child(3) {
        margin-top: 4rem;
    }
}

.landing-mockup-wrapper {
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: scale(1);
    transition: all 0.3s;
}

.landing-mockup-item:hover .landing-mockup-wrapper {
    transform: scale(1.05);
}

.landing-mockup-wrapper-indigo {
    background: linear-gradient(to bottom right, #eef2ff, #faf5ff);
}

.landing-mockup-wrapper-blue {
    background: linear-gradient(to bottom right, #eff6ff, #ecfeff);
}

.landing-mockup-wrapper-green {
    background: linear-gradient(to bottom right, #f0fdf4, #ecfdf5);
}

.landing-mockup-label {
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
}

/* Values Section */
.landing-values-section {
    background: linear-gradient(to bottom right, #eef2ff, #faf5ff, #fdf2f8);
}

.landing-values-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .landing-values-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .landing-values-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.landing-value-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
    text-align: center;
}

.landing-value-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.landing-value-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.875rem;
}

.landing-value-icon-indigo {
    background: linear-gradient(to bottom right, #6366f1, #9333ea);
}

.landing-value-icon-blue {
    background: linear-gradient(to bottom right, #3b82f6, #06b6d4);
}

.landing-value-icon-green {
    background: linear-gradient(to bottom right, #22c55e, #10b981);
}

.landing-value-icon-orange {
    background: linear-gradient(to bottom right, #f97316, #ef4444);
}

.landing-value-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
}

.landing-value-description {
    color: #4b5563;
    line-height: 1.75;
}

/* Thought Leadership Section */
.landing-articles-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .landing-articles-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.landing-article-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
    overflow: hidden;
}

.landing-article-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.landing-article-image {
    height: 12rem;
    position: relative;
    overflow: hidden;
}

.landing-article-image-indigo {
    background: linear-gradient(to bottom right, #6366f1, #9333ea);
}

.landing-article-image-blue {
    background: linear-gradient(to bottom right, #3b82f6, #06b6d4);
}

.landing-article-image-green {
    background: linear-gradient(to bottom right, #22c55e, #10b981);
}

.landing-article-image-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.2);
    transition: background-color 0.2s;
}

.landing-article-card:hover .landing-article-image-overlay {
    background-color: rgba(0, 0, 0, 0.3);
}

.landing-article-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
}

.landing-article-badge span {
    display: inline-block;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.landing-article-badge-indigo {
    color: #4338ca;
}

.landing-article-badge-blue {
    color: #1e40af;
}

.landing-article-badge-green {
    color: #15803d;
}

.landing-article-content {
    padding: 1.5rem;
}

.landing-article-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
    transition: color 0.2s;
}

.landing-article-card:hover .landing-article-title-indigo {
    color: #4f46e5;
}

.landing-article-card:hover .landing-article-title-blue {
    color: #2563eb;
}

.landing-article-card:hover .landing-article-title-green {
    color: #16a34a;
}

.landing-article-description {
    color: #4b5563;
    margin-bottom: 1rem;
    line-height: 1.75;
}

.landing-article-meta {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: #6b7280;
}

.landing-article-meta span:not(:last-child)::after {
    content: '•';
    margin: 0 0.5rem;
}

/* CTA Section */
.landing-cta {
    background: linear-gradient(to right, #4f46e5, #9333ea);
    position: relative;
    overflow: hidden;
    padding: 5rem 1rem;
}

@media (min-width: 768px) {
    .landing-cta {
        padding: 8rem 1.5rem;
    }
}

.landing-cta-pattern {
    position: absolute;
    inset: 0;
    background-image: 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.1'%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");
}

.landing-cta-container {
    position: relative;
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
}

.landing-cta-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .landing-cta-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .landing-cta-title {
        font-size: 3rem;
    }
}

.landing-cta-description {
    font-size: 1.25rem;
    color: #c7d2fe;
    margin-bottom: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.landing-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .landing-cta-actions {
        flex-direction: row;
    }
}

.landing-btn-white {
    background: white;
    color: #4f46e5;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
    transform: scale(1);
}

.landing-btn-white:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: scale(1.05);
}

.landing-btn-outline {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
}

.landing-btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Footer */
.landing-footer {
    background-color: #111827;
    color: #d1d5db;
    padding: 3rem 1rem;
}

.landing-footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

.landing-footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .landing-footer-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.landing-footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.landing-footer-brand img {
    height: 2rem;
    width: auto;
}

.landing-footer-brand span {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.landing-footer-description {
    font-size: 0.875rem;
    color: #9ca3af;
}

.landing-footer-title {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
}

.landing-footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.landing-footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s;
}

.landing-footer-links a:hover {
    color: white;
}

.landing-footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
    color: #9ca3af;
}

/* Background Colors */
.landing-bg-gray-50 {
    background-color: #f9fafb;
}

.landing-bg-white {
    background-color: #ffffff;
}

/* Utility Classes */
.landing-text-center {
    text-align: center;
}

.landing-text-left {
    text-align: left;
}

.landing-mb-4 {
    margin-bottom: 1rem;
}

.landing-mb-6 {
    margin-bottom: 1.5rem;
}

.landing-mb-8 {
    margin-bottom: 2rem;
}

.landing-mt-4 {
    margin-top: 1rem;
}

.landing-mt-6 {
    margin-top: 1.5rem;
}

.landing-mt-8 {
    margin-top: 2rem;
}

.landing-mt-12 {
    margin-top: 3rem;
}

.landing-mt-16 {
    margin-top: 4rem;
}

/* Auth Pages Styles */
.landing-auth-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-size: cover;
    position: relative;
}

.landing-auth-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
}

.landing-auth-container {
    position: relative;
    max-width: 28rem;
    width: 100%;
    z-index: 1;
}

.landing-auth-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

@media (min-width: 640px) {
    .landing-auth-card {
        padding: 2.5rem;
    }
}

.landing-auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.landing-auth-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.landing-auth-logo img {
    height: 2.5rem;
    width: auto;
}

.landing-auth-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.landing-auth-subtitle {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

.landing-form-group {
    margin-bottom: 1.5rem;
}

.landing-form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #111827;
    margin-bottom: 0.5rem;
}

.landing-form-label-link {
    float: right;
    font-size: 0.875rem;
    font-weight: 500;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: opacity 0.2s;
}

.landing-form-label-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.landing-form-input {
    width: 100%;
    height: 3rem;
    padding: 0 1rem;
    border: 1px solid #d1d5da;
    border-radius: 0.5rem;
    font-size: 1rem;
    color: #111827;
    background-color: transparent;
    transition: all 0.2s;
}

.landing-form-input:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.landing-form-input::placeholder {
    color: #9ca3af;
}

.landing-form-input-group {
    position: relative;
}

.landing-form-input-group .landing-form-input {
    padding-right: 3rem;
}

.landing-form-toggle-password {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing-form-toggle-password:hover {
    color: #111827;
}

.landing-form-toggle-password svg {
    width: 1.5rem;
    height: 1.5rem;
}

.landing-form-checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.landing-form-checkbox {
    width: 1rem;
    height: 1rem;
    border: 1px solid #d1d5da;
    border-radius: 0.25rem;
    cursor: pointer;
}

.landing-form-checkbox-label {
    font-size: 0.875rem;
    color: #111827;
    font-weight: 500;
    cursor: pointer;
}

.landing-form-button {
    width: 100%;
    height: 3rem;
    background: linear-gradient(to right, #4f46e5, #9333ea);
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 0.5rem;
}

.landing-form-button:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.landing-form-button:active {
    transform: translateY(0);
}

.landing-form-footer {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.landing-form-footer-link {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s;
}

.landing-form-footer-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.landing-form-error {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

.landing-form-select {
    width: 100%;
    height: 3rem;
    padding: 0 1rem;
    border: 1px solid #d1d5da;
    border-radius: 0.5rem;
    font-size: 1rem;
    color: #111827;
    background-color: white;
    transition: all 0.2s;
}

.landing-form-select:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.landing-form-file {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #d1d5da;
    border-radius: 0.5rem;
    font-size: 0.875rem;
}

.landing-form-fieldset {
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.landing-form-legend {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    padding: 0 0.5rem;
}

.landing-form-row {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .landing-form-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.landing-form-row-single {
    margin-bottom: 1rem;
}

.landing-form-input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    pointer-events: none;
}

.landing-form-input-with-icon {
    padding-left: 3rem;
}

.landing-demo-section {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.landing-demo-title {
    text-align: center;
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
}

.landing-demo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.75rem;
}

.landing-demo-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    background: white;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    color: #111827;
    font-size: 0.875rem;
    font-weight: 500;
}

.landing-demo-button:hover {
    border-color: #6366f1;
    background: #f9fafb;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.landing-demo-button i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.landing-clearfix {
    clear: both;
}

/* Select2 Customization for Landing */
.landing-auth-card .select2-container {
    width: 100% !important;
}

.landing-auth-card .select2-container--default .select2-selection--single {
    height: 3rem;
    border: 1px solid #d1d5da;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
}

.landing-auth-card .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 3rem;
    padding-left: 3rem;
    color: #111827;
}

.landing-auth-card .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 3rem;
    right: 1rem;
}

.landing-auth-card .select2-container--default.select2-container--focus .select2-selection--single,
.landing-auth-card .select2-container--default.select2-container--open .select2-selection--single {
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.landing-auth-card .select2-dropdown {
    border: 1px solid #d1d5da;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Register Form Specific */
.landing-register-form {
    max-width: 100%;
}

.landing-register-form fieldset {
    margin-bottom: 2rem;
}

.landing-register-form fieldset:last-of-type {
    margin-bottom: 0;
}

/* Input with icon positioning fix */
.landing-form-input-with-icon {
    padding-left: 3rem !important;
}

/* Demo buttons styling */
.landing-demo-button {
    min-height: 80px;
}

.landing-demo-button i {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: #6366f1;
}

/* Responsive adjustments for register form */
@media (max-width: 768px) {
    .landing-auth-container[style*="max-width: 56rem"] {
        max-width: 100% !important;
    }
    
    .landing-form-row {
        grid-template-columns: 1fr !important;
    }
}

/* Ensure Bootstrap modals are hidden by default */
.modal {
    display: none;
    position: fixed;
    z-index: 1050;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
}

.modal.fade {
    opacity: 0;
    transition: opacity 0.15s linear;
}

.modal.fade.show {
    opacity: 1;
    display: block !important;
}

.modal.show {
    display: block !important;
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 10px;
    pointer-events: none;
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.3rem;
    outline: 0;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: #000;
}

.modal-backdrop.fade {
    opacity: 0;
}

.modal-backdrop.show {
    opacity: 0.5;
}

/* Ensure clock_in_clock_out_modal is hidden unless explicitly shown */
#clock_in_clock_out_modal {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

#clock_in_clock_out_modal.show,
#clock_in_clock_out_modal.fade.show {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Also ensure modal backdrop is hidden by default */
.modal-backdrop {
    display: none !important;
}

.modal-backdrop.show {
    display: block !important;
}

