/* Modern CSS Reset & Variables */
:root {
    --primary: #0f172a;        /* Deep Dark Slate */
    --primary-light: #1e293b;  /* Slate 800 */
    --primary-blue: #1e3a8a;   /* Tech Blue */
    --accent: #0ea5e9;         /* Cyan / Teal Accent */
    --accent-glow: rgba(14, 165, 233, 0.15);
    --text-main: #334155;      /* Slate 700 */
    --text-muted: #64748b;     /* Slate 500 */
    --text-light: #f8fafc;     /* Slate 50 */
    --bg-white: #ffffff;
    --bg-light: #f8fafc;       /* Slate 50 */
    --bg-card: #ffffff;
    --border-color: #e2e8f0;   /* Slate 200 */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -2px rgba(0,0,0,0.04);
    --shadow-accent: 0 10px 25px -5px rgba(14, 165, 233, 0.25);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-white);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 700;
    line-height: 1.25;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button, input, textarea {
    font-family: inherit;
    outline: none;
}

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

.highlight-text {
    color: var(--accent);
    background: linear-gradient(135deg, #0ea5e9 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-cyan {
    color: var(--accent) !important;
}

.hidden {
    display: none !important;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, #0ea5e9 0%, #1e3a8a 100%);
    color: white;
    box-shadow: 0 4px 14px rgba(14, 165, 233, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.6);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--bg-light);
    border-color: var(--text-muted);
}

.btn-block {
    width: 100%;
}

.btn-icon {
    width: 18px;
    height: 18px;
    transition: var(--transition);
}

.btn-primary:hover .btn-icon {
    transform: translateX(4px);
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    height: 70px;
    box-shadow: var(--shadow-sm);
    background-color: rgba(255, 255, 255, 0.95);
}

.header-container {
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: linear-gradient(135deg, #0ea5e9 0%, #1e3a8a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.logo-svg {
    width: 22px;
    height: 22px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 1.25rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
}

.logo-subtitle {
    font-size: 0.7rem;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-main);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #0ea5e9 0%, #2563eb 100%);
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary);
}

.mobile-nav-toggle svg {
    width: 28px;
    height: 28px;
}

/* Mobile Nav Menu */
.mobile-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: var(--shadow-lg);
}

.mobile-nav-link {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    padding: 8px 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.mobile-nav-link:hover {
    color: var(--accent);
    padding-left: 8px;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 100px;
    background-color: var(--bg-light);
    overflow: hidden;
}

.hero-bg-gradients {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}

.orb-1 {
    top: -10%;
    right: 5%;
    width: 400px;
    height: 400px;
    background-color: var(--accent);
    animation: pulse 8s infinite alternate;
}

.orb-2 {
    bottom: -10%;
    left: -5%;
    width: 500px;
    height: 500px;
    background-color: var(--primary-blue);
    animation: pulse 12s infinite alternate;
}

@keyframes pulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background-color: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 50px;
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
}

.badge-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-blue);
    letter-spacing: 0.5px;
}

.hero-headline {
    font-size: 3.25rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-subheadline {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Dashboard Mock Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.tech-card-glow {
    position: relative;
    width: 100%;
    max-width: 480px;
    background: radial-gradient(circle at 10% 20%, rgba(14, 165, 233, 0.05) 0%, rgba(30, 58, 138, 0.02) 90%);
    border-radius: 20px;
    padding: 12px;
    box-shadow: var(--shadow-lg);
}

.tech-card-glow::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1.5px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.4), rgba(30, 58, 138, 0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.dashboard-preview {
    background-color: var(--primary);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.3);
}

.dash-header {
    background-color: rgba(255, 255, 255, 0.03);
    padding: 12px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 6px;
}

.dash-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot-red { background-color: #ef4444; }
.dot-yellow { background-color: #f59e0b; }
.dot-green { background-color: #10b981; }

.dash-title {
    color: rgba(255,255,255,0.6);
    font-size: 0.75rem;
    font-weight: 500;
    margin-left: 8px;
    font-family: var(--font-heading);
}

.dash-body {
    padding: 24px;
}

.dash-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.dash-stat {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 16px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
}

.stat-label {
    color: rgba(255,255,255,0.4);
    font-size: 0.75rem;
    margin-bottom: 4px;
}

.stat-value {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.stat-sub {
    color: var(--accent);
    font-size: 0.7rem;
    margin-top: 4px;
}

.dash-chart-placeholder {
    height: 100px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0 10px;
    border-bottom: 1px dashed rgba(255,255,255,0.1);
}

.chart-bar {
    width: 14%;
    background: linear-gradient(to top, var(--primary-blue), var(--accent));
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    animation: growBar 1.5s ease-out forwards;
    transform-origin: bottom;
}

.bar-1 { height: 40%; animation-delay: 0.1s; }
.bar-2 { height: 65%; animation-delay: 0.2s; }
.bar-3 { height: 50%; animation-delay: 0.3s; }
.bar-4 { height: 85%; animation-delay: 0.4s; }
.bar-5 { height: 75%; animation-delay: 0.5s; }

@keyframes growBar {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
}

/* Sections Global Styling */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
}

.section-header.text-left {
    text-align: left;
    margin: 0 0 30px;
}

.section-subtitle {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    font-weight: 700;
    display: inline-block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.section-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #0ea5e9 0%, #1e3a8a 100%);
    border-radius: 2px;
    margin: 0 auto;
}

.section-header.text-left .section-divider {
    margin: 0;
}

/* About Us Section */
.about-section {
    background-color: var(--bg-white);
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text-column {
    display: flex;
    flex-direction: column;
}

.about-lead {
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.about-description {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.license-card {
    display: flex;
    gap: 20px;
    background-color: var(--bg-light);
    border-left: 4px solid var(--accent);
    padding: 24px;
    border-radius: 0 12px 12px 0;
    box-shadow: var(--shadow-sm);
}

.license-icon svg {
    width: 32px;
    height: 32px;
}

.license-details h4 {
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.license-details p {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
}

.license-details .license-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-top: 2px;
}

.about-features-column {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.feature-item {
    display: flex;
    gap: 20px;
}

.feature-icon-container {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background-color: rgba(14, 165, 233, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-container svg {
    width: 24px;
    height: 24px;
}

.feature-info h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.feature-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Core Offerings Section */
.offerings-section {
    background-color: var(--bg-light);
}

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

.offering-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.offering-card:hover {
    transform: translateY(-8px);
    border-color: rgba(14, 165, 233, 0.4);
    box-shadow: var(--shadow-accent);
}

.offering-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

.offering-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(37, 99, 235, 0.05) 100%);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.offering-icon svg {
    width: 26px;
    height: 26px;
}

.offering-title {
    font-size: 1.35rem;
    line-height: 1.3;
}

.offering-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
    flex-grow: 1;
}

.offering-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.offering-list li {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.list-bullet {
    width: 16px;
    height: 16px;
    color: var(--accent);
}

/* Business Operations Section */
.operations-section {
    background-color: var(--bg-white);
}

.operations-intro {
    text-align: center;
    max-width: 700px;
    margin: -30px auto 60px;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.timeline-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    padding-top: 20px;
}

.timeline-container::before {
    content: '';
    position: absolute;
    top: 45px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent) 0%, rgba(226, 232, 240, 0.8) 100%);
    z-index: 0;
}

.timeline-step {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-number-container {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition);
}

.timeline-step:hover .step-number-container {
    border-color: var(--accent);
    box-shadow: 0 0 15px var(--accent-glow);
    background-color: var(--bg-light);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary-light);
}

.timeline-step:hover .step-number {
    color: var(--accent);
}

.step-content {
    padding: 0 10px;
}

.step-title {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.step-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Contact Section */
.contact-section {
    background-color: var(--bg-light);
}

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

.contact-info-column {
    display: flex;
    flex-direction: column;
}

.contact-lead {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-method-item {
    display: flex;
    gap: 20px;
}

.contact-method-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background-color: rgba(14, 165, 233, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-method-icon svg {
    width: 22px;
    height: 22px;
}

.contact-method-text {
    display: flex;
    flex-direction: column;
}

.method-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 2px;
}

.method-value {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary);
}

a.method-value:hover {
    color: var(--accent);
}

/* Inquiry Form Card */
.contact-card-form {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.contact-card-form h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.form-sub {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 8px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-light);
    color: var(--primary);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--accent);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
}

/* Footer Section */
.footer {
    background-color: var(--primary);
    color: rgba(255,255,255,0.7);
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 60px;
}

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

.logo-icon-light {
    background: linear-gradient(135deg, #0ea5e9 0%, #2563eb 100%);
}

.logo-title-light {
    color: white;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 320px;
}

.footer-links-col h4, .footer-compliance-col h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 24px;
    font-family: var(--font-heading);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 6px;
}

.footer-compliance-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.compliance-item {
    font-size: 0.9rem;
    line-height: 1.5;
}

.compliance-item strong {
    color: white;
    font-weight: 600;
}

.footer-bottom {
    margin-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 16px;
}

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

.footer-bottom-links a {
    color: rgba(255,255,255,0.5);
}

.footer-bottom-links a:hover {
    color: white;
}

/* Responsiveness (Mobile First / Queries) */

@media (max-width: 1024px) {
    .hero-headline {
        font-size: 2.75rem;
    }
    
    .offerings-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-left: 20px;
    }
    
    .timeline-container::before {
        top: 0;
        left: 26px;
        width: 2px;
        height: 90%;
        background: linear-gradient(180deg, var(--accent) 0%, rgba(226, 232, 240, 0.8) 100%);
    }
    
    .timeline-step {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
        gap: 24px;
    }
    
    .step-number-container {
        margin-bottom: 0;
        flex-shrink: 0;
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-nav-toggle {
        display: block;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .offerings-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer {
        padding-top: 60px;
    }
    
    .footer-bottom {
        margin-top: 40px;
    }
}
