:root {
    --primary: #00E5FF;
    --primary-hover: #00B8D4;
    --secondary: #651FFF;
    --bg-dark: #0A0F1A;
    --bg-light: #F4F7FB;
    --surface-dark: rgba(255, 255, 255, 0.05);
    --surface-border: rgba(255,255,255, 0.1);
    --text-main: #FFFFFF;
    --text-muted: #A0AEC0;
    --text-dark: #1A202C;
    --text-dark-muted: #4A5568;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #ffffff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center { text-align: center; }
.mb-2 { margin-bottom: 1rem; }
.mt-4 { margin-top: 2rem; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}
.btn-primary {
    background-color: var(--primary);
    color: var(--bg-dark);
}
.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 229, 255, 0.3);
}
.btn-outline {
    background: transparent;
    border: 1px solid var(--text-main);
    color: var(--text-main);
}
.btn-outline:hover {
    background: var(--text-main);
    color: var(--bg-dark);
}
.btn-secondary {
    background-color: var(--secondary);
    color: #fff;
}
.btn-secondary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(101, 31, 255, 0.3);
}
.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 15, 26, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--surface-border);
    transition: var(--transition);
}
.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}
.logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
    text-decoration: none;
    letter-spacing: 0.5px;
}
.logo span {
    color: var(--primary);
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}
.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}
.nav-links a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: url('assets/hero.png') no-repeat center center/cover;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10, 15, 26, 0.9) 0%, rgba(10, 15, 26, 0.4) 100%);
}
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}
.hero h1 {
    font-size: 3.5rem;
    color: var(--text-main);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}
.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
}
.hero-actions {
    display: flex;
    gap: 1rem;
}

/* Sections General */
.section {
    padding: 6rem 0;
}
.section-dark {
    background-color: var(--bg-dark);
    color: var(--text-main);
}
.section-light {
    background-color: var(--bg-light);
}
.section-header {
    margin-bottom: 4rem;
}
.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.section-header p {
    font-size: 1.125rem;
    color: var(--text-dark-muted);
    max-width: 600px;
    margin: 0 auto;
}
.section-dark .section-header p {
    color: var(--text-muted);
}
.section-subtitle {
     font-size: 1.125rem;
     color: var(--text-dark-muted);
     margin-bottom: 3rem;
}

/* Cards Grid (Start Business) */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.card {
    background: #fff;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}
.hover-up:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.card-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}
.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.card p {
    color: var(--text-dark-muted);
    margin-bottom: 1.5rem;
}
.card-link {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.card-link i {
    transition: var(--transition);
}
.card-link:hover i {
    transform: translateX(4px);
}

/* Compliance Calendar Layout */
.calendar-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.calendar-layout h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.calendar-layout > .calendar-content p {
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-size: 1.125rem;
}

.timeline {
    list-style: none;
    position: relative;
    padding-left: 1.5rem;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255,255,255,0.1);
}
.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: -1.5rem;
    top: 0.25rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
    transform: translateX(-50%);
    box-shadow: 0 0 10px var(--primary);
}
.timeline-date {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.timeline-body h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #fff;
}
.timeline-body p {
    color: var(--text-muted);
    margin-bottom: 0;
}

.calendar-image img {
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 1px solid var(--surface-border);
}

/* Floating animation */
.floating {
    animation: floating 6s ease-in-out infinite;
}
@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Tools Grid */
.bg-gradient {
    background: linear-gradient(135deg, #f4f7fb 0%, #e2e8f0 100%);
}
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.tool-card {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition);
    border: 1px solid transparent;
}
.tool-card:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(0,229,255,0.15);
    transform: translateY(-4px);
}
.tool-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-right: 1.5rem;
    background: rgba(0,229,255,0.1);
    height: 60px;
    width: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tool-info h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}
.tool-info p {
    font-size: 0.875rem;
    color: var(--text-dark-muted);
}

/* Trust Stats */
.trust-container { margin: 3rem auto; }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
.stat-item {
    text-align: center;
}
.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}
.stat-label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark-muted);
}

/* Footer */
footer {
    background: #05080E;
    color: var(--text-muted);
    padding: 4rem 0 0;
}
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}
.footer-brand h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.footer-brand span { color: var(--primary); }
.footer-links h4, .footer-contact h4 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a { color: var(--text-muted); text-decoration: none; transition: var(--transition); }
.footer-links a:hover { color: var(--primary); }
.footer-contact p { margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.5rem;}
.footer-contact i { color: var(--primary); }
.footer-bottom {
    background: #020408;
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.875rem;
}

/* Animations Triggered by JS */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in-up.active {
    opacity: 1;
    transform: translateY(0);
}
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* Responsive Grid */
@media (max-width: 992px) {
    .calendar-layout { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.8rem; }
    .footer-content { grid-template-columns: 1fr; gap: 2rem;}
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero h1 { font-size: 2.2rem; }
}

/* Comparison Table */
.comparison-table-wrapper {
    overflow-x: auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    padding: 2rem;
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1.5rem;
}
.comparison-table th, .comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--surface-border);
}
.comparison-table th {
    background-color: var(--bg-light);
    color: var(--text-dark);
    font-weight: 700;
}
.text-success { color: #38A169; }
.text-danger { color: #E53E3E; }

/* Wizard Modal */
.modal {
    display: none; 
    position: fixed; 
    z-index: 2000; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(10, 15, 26, 0.8);
    backdrop-filter: blur(5px);
}
.modal-content {
    background-color: #fff;
    margin: 10% auto; 
    padding: 3rem;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    animation: modalSlideIn 0.4s ease-out;
}
@keyframes modalSlideIn {
    from { transform: translateY(-30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.close-wizard {
    color: #a0aec0;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}
.close-wizard:hover {
    color: var(--text-dark);
}
.wizard-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}
.wizard-actions button {
    width: 100%;
    text-align: left;
    padding: 1rem;
}
.wizard-header p {
    color: var(--text-dark-muted);
}
.wizard-step h3 {
    font-size: 1.25rem;
    margin-top: 1rem;
}

/* Pros-Cons Grid */
.pros-cons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}
.pros-cons-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-top: 4px solid var(--primary);
    transition: var(--transition);
}
.pros-cons-card.branch-card {
    border-top-color: var(--secondary);
}
.pros-cons-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.pros-cons-title {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
}
.pros-title {
    color: #38A169;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.cons-title {
    color: #E53E3E;
    font-size: 1.125rem;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.pros-cons-card p {
    color: var(--text-dark-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Tabs for Compliance Calendar */
.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.tab-btn {
    background: transparent;
    border: 2px solid var(--border-color);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark-muted);
    cursor: pointer;
    transition: var(--transition);
}
.tab-btn:hover, .tab-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}
.tab-content {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.calendar-table {
    width: 100%;
    border-collapse: collapse;
}
.calendar-table th {
    background: var(--bg-light);
    color: var(--text-dark);
    font-weight: 600;
    text-align: left;
    padding: 1rem;
    border-bottom: 2px solid var(--primary);
}
.calendar-table td {
    padding: 1.25rem 1rem;
    border-bottom: 1px solid var(--border-color);
    vertical-align: top;
    color: var(--text-dark-muted);
}
.calendar-table tr:hover {
    background: rgba(0,0,0,0.01);
}
.calendar-table tr:last-child td {
    border-bottom: none;
}
.calendar-table h4 {
    color: var(--text-dark);
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}
.cal-date {
    display: inline-block;
    background: rgba(0, 229, 255, 0.1);
    color: var(--accent);
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}
.cal-remark {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #a0aec0;
}
