/* DijiPOS Premium B2B SaaS Styles */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --clr-main-bg: #f8fafc; /* Crisp light slate */
    --clr-surface: #ffffff;
    --clr-surface-light: #f1f5f9; /* Cool light gray */
    --clr-primary: #FF6B00; /* DijiPOS Orange */
    --clr-primary-hover: #e56000;
    --clr-accent: #0f172a; /* Deep Corporate Navy */
    --clr-text-main: #1e293b; /* Dark slate text */
    --clr-text-muted: #475569; /* Medium slate */
    --clr-border: #e2e8f0;
    
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    
    --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-glow: 0 10px 25px rgba(255, 107, 0, 0.15);
}

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

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.text-center { text-align: center; }
.text-gradient {
    color: var(--clr-primary);
}
.text-accent { color: var(--clr-accent); }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-fast);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--clr-primary);
    color: white;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    background: var(--clr-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(255, 107, 0, 0.5);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--clr-primary);
    color: var(--clr-primary);
}

.btn-outline:hover {
    background: var(--clr-primary);
    color: white;
    box-shadow: var(--shadow-glow);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--clr-border);
    transition: var(--transition-fast);
    padding: 20px 0;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--clr-text-main);
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    font-size: 1rem;
    color: var(--clr-text-muted);
    transition: var(--transition-fast);
}

.nav-links a:hover {
    color: var(--clr-primary);
}

.nav-links a.btn:hover {
    color: white;
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--clr-text-main);
    font-size: 1.5rem;
    cursor: pointer;
}

.nav-links.active {
    display: flex !important;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    padding: 20px 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    align-items: center;
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(15, 23, 42, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: -1;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.hero-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 107, 0, 0.1);
    color: var(--clr-accent);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 107, 0, 0.2);
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--clr-text-muted);
    margin-bottom: 35px;
    max-width: 90%;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--clr-border);
}

.hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.05);
    pointer-events: none;
}

/* Logos Section */
.trusted-by {
    padding: 40px 0;
    border-top: 1px solid var(--clr-border);
    border-bottom: 1px solid var(--clr-border);
    background: var(--clr-surface);
}

.logos-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
    opacity: 0.6;
}

.logos-grid i {
    font-size: 2.5rem;
    color: var(--clr-text-muted);
}

/* Features Section */
.section {
    padding: 100px 0;
}

.section.bg-soft-corporate {
    background-color: var(--clr-surface-light);
    border-top: 1px solid var(--clr-border);
    border-bottom: 1px solid var(--clr-border);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    color: var(--clr-primary);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    padding: 40px 30px;
    border-radius: 16px;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--clr-primary);
    box-shadow: var(--shadow-glow);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 107, 0, 0.1);
    color: var(--clr-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.feature-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-text {
    color: var(--clr-text-muted);
    font-size: 1rem;
}

/* Pricing Section */
.pricing-section {
    background: var(--clr-surface);
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background: var(--clr-main-bg);
    border: 1px solid var(--clr-border);
    border-radius: 16px;
    padding: 40px 30px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.pricing-card.popular {
    border-color: var(--clr-primary);
    box-shadow: 0 0 30px rgba(255, 107, 0, 0.15);
    transform: scale(1.05);
}

.pricing-header {
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 1px solid var(--clr-border);
    padding-bottom: 20px;
}

.pricing-tier {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--clr-text-muted);
    margin-bottom: 10px;
}

.pricing-target {
    font-size: 0.9rem;
    color: var(--clr-accent);
}

.pricing-features {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.pricing-features li {
    padding: 12px 0;
    color: var(--clr-text-muted);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.pricing-features li i {
    color: var(--clr-primary);
    margin-top: 4px;
}

/* CTA Section */
.cta-section {
    background: var(--clr-accent);
    padding: 80px 0;
    border-radius: 24px;
    text-align: center;
    margin: 100px 5%;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.cta-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    border-top: 1px solid var(--clr-border);
    padding: 60px 0 20px;
    background: var(--clr-surface);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    display: block;
}

.footer-brand span {
    color: var(--clr-primary);
}

.footer-desc {
    color: var(--clr-text-muted);
    max-width: 300px;
}

.corp-notice {
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 107, 0, 0.05);
    border-left: 4px solid var(--clr-primary);
    border-radius: 4px 8px 8px 4px;
    display: inline-block;
}

.corp-notice p {
    font-size: 0.9rem;
    color: var(--clr-text-main);
    font-weight: 500;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--clr-text-muted);
    transition: var(--transition-fast);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--clr-border);
    color: var(--clr-text-muted);
    font-size: 0.9rem;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    .hero {
        padding: 120px 0 60px;
    }
    .pricing-card.popular {
        transform: scale(1);
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .mobile-toggle {
        display: block;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .section-title {
        font-size: 2rem;
    }
}
