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

:root {
    --primary-blue: #101d2d;
    --primary-purple: #101d2d;
    --gradient-start: #101d2d;
    --gradient-mid: #14283a;
    --gradient-end: #182f42;
    --hero-gradient-start: #0d1621;
    --hero-gradient-end: #101d2d;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --text-lighter: #9ca3af;
    --white: #ffffff;
    --background: #f9fafb;
    --background-light: #f3f4f6;
    --border-color: #e5e7eb;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
}

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

.navbar {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-dark);
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

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

.logo-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
}

.logo-tagline {
    font-size: 13px;
    color: var(--text-light);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}

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

.nav-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 5px 0;
    transition: all 0.3s;
    border-radius: 3px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: right 0.3s ease;
    overflow-y: auto;
    padding: 80px 24px 24px;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s;
}

.mobile-menu-overlay.active {
    opacity: 1;
}

.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.mobile-nav-menu li {
    margin-bottom: 8px;
}

.mobile-nav-menu a {
    display: block;
    padding: 12px 16px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    border-radius: 8px;
    transition: background 0.3s;
}

.mobile-nav-menu a:hover {
    background: var(--background);
    color: var(--primary-blue);
}

.mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-nav-actions .btn-primary,
.mobile-nav-actions .btn-text {
    width: 100%;
    text-align: center;
    justify-content: center;
}

.btn-text {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    padding: 8px 16px;
    transition: color 0.3s;
}

.btn-text:hover {
    color: var(--primary-blue);
}

.btn-primary {
    background: linear-gradient(135deg, #101d2d 0%, #14283a 100%);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0d1621 0%, #101d2d 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(16, 29, 45, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
    border-radius: 10px;
}

.btn-block {
    width: 100%;
    text-align: center;
}

.hero {
    background: linear-gradient(135deg, #0d1621 0%, #101d2d 50%, #14283a 100%);
    padding: 120px 0 80px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(107, 79, 191, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(79, 124, 255, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #101d2d 0%, #182f42 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    margin: 0 auto 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(to right, #2a4a66, #3d5f7f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.95);
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.hero-trust {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.stats-banner {
    background: rgba(107, 79, 191, 0.15);
    padding: 40px 0;
    color: rgba(255, 255, 255, 0.9);
}

.stats-grid-banner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item h3 {
    font-size: 24px;
    font-weight: 600;
}

.key-features {
    background: linear-gradient(135deg, #101d2d 0%, #14283a 100%);
    padding: 60px 0 80px;
}

.features-grid-main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card-large {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    color: var(--white);
    transition: all 0.3s;
}

.feature-card-large:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 20px;
}

.feature-icon.blue {
    background: linear-gradient(135deg, #101d2d 0%, #14283a 100%);
}

.feature-icon.purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.feature-icon.blue-alt {
    background: linear-gradient(135deg, #101d2d 0%, #0d1621 100%);
}

.feature-icon.pink {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
}

.feature-card-large h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 700;
}

.feature-card-large p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.cta-section {
    background: linear-gradient(135deg, #101d2d 0%, #14283a 100%);
    padding: 60px 0;
}

.cta-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 48px;
    text-align: center;
    color: var(--white);
}

.cta-box h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-box > p {
    font-size: 18px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-features {
    display: flex;
    gap: 40px;
    justify-content: center;
    font-size: 16px;
}

.cta-feature {
    color: rgba(255, 255, 255, 0.95);
}

.platform-features {
    background: var(--background);
    padding: 100px 0;
}

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

.section-badge {
    display: inline-block;
    background: rgba(16, 29, 45, 0.1);
    color: var(--primary-purple);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.text-gradient {
    background: linear-gradient(to right, var(--primary-blue), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px 24px;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon-small {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.feature-icon-small.blue {
    background: linear-gradient(135deg, #101d2d 0%, #14283a 100%);
}

.feature-icon-small.purple {
    background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
}

.feature-icon-small.blue-alt {
    background: linear-gradient(135deg, #101d2d 0%, #0d1621 100%);
}

.feature-icon-small.green {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.feature-icon-small.red {
    background: linear-gradient(135deg, #f43f5e 0%, #e11d48 100%);
}

.feature-icon-small.orange {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.feature-icon-small.pink {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
}

.feature-icon-small.cyan {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
    color: var(--text-dark);
}

.feature-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.advanced-capabilities {
    background: linear-gradient(135deg, #101d2d 0%, #14283a 100%);
    padding: 80px 0;
    color: var(--white);
    text-align: center;
}

.advanced-capabilities h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

.capabilities-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 60px;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.capability-item {
    text-align: center;
}

.capability-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 20px;
}

.capability-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.capability-item p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.workflow-section {
    background: var(--white);
    padding: 100px 0;
    text-align: center;
}

.workflow-section h2 {
    font-size: 42px;
    margin-bottom: 60px;
}

.workflow-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.workflow-step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    border-radius: 50%;
    color: var(--white);
    font-size: 28px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.workflow-step h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.workflow-step p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stat-box {
    background: var(--background);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.stat-box h3 {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.stat-box p {
    font-size: 16px;
    color: var(--text-light);
}

.how-it-works {
    background: var(--background);
    padding: 100px 0;
}

.how-it-works h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.stage-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s;
}

.stage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stage-number {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
}

.stage-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.stage-card p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.6;
}

.stage-card ul {
    list-style: none;
    padding: 0;
}

.stage-card li {
    font-size: 14px;
    color: var(--text-light);
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.stage-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

.dashboards-section {
    background: var(--white);
    padding: 100px 0;
}

.dashboards-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 20px;
}

.dashboard-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.dashboard-card {
    background: var(--background);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
}

.dashboard-card h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.dashboard-subtitle {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.dashboard-card ul {
    list-style: none;
    padding: 0;
}

.dashboard-card li {
    font-size: 15px;
    color: var(--text-light);
    padding: 10px 0;
    padding-left: 24px;
    position: relative;
}

.dashboard-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-size: 20px;
}

.system-features {
    background: var(--background);
    padding: 80px 0;
    text-align: center;
}

.system-features h2 {
    font-size: 42px;
    margin-bottom: 60px;
}

.system-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.system-feature {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px 16px;
}

.system-feature h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.system-feature p {
    font-size: 14px;
    color: var(--text-light);
}

.access-control {
    background: var(--white);
    padding: 80px 0;
}

.access-control h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 20px;
}

.access-tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.tier-card {
    background: var(--background);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
}

.tier-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.tier-card p {
    font-size: 16px;
    color: var(--text-light);
}

.pricing-section {
    background: var(--background);
    padding: 100px 0;
}

.pricing-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 20px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 32px;
    position: relative;
    transition: all 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-blue);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 28px;
    margin-bottom: 8px;
}

.pricing-subtitle {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 24px;
}

.price {
    margin-bottom: 32px;
}

.currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
}

.amount {
    font-size: 56px;
    font-weight: 800;
    color: var(--text-dark);
}

.amount-custom {
    font-size: 40px;
    font-weight: 800;
    color: var(--text-dark);
}

.period {
    font-size: 18px;
    color: var(--text-light);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

.pricing-features li {
    font-size: 15px;
    color: var(--text-light);
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
    font-size: 18px;
}

.all-plans-include {
    text-align: center;
    background: var(--white);
    padding: 48px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.all-plans-include h3 {
    font-size: 24px;
    margin-bottom: 24px;
}

.included-features {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.included-feature {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 500;
}

.contact-section {
    background: var(--white);
    padding: 100px 0;
}

.contact-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 20px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    margin-top: 60px;
}

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

.contact-card {
    background: var(--background);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.contact-card h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.contact-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
}

.contact-card small {
    font-size: 13px;
    color: var(--text-lighter);
    display: block;
    margin-top: 8px;
}

.contact-card.trust {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    color: var(--white);
    border: none;
}

.contact-card.trust h4 {
    color: var(--white);
}

.contact-card.trust p {
    color: rgba(255, 255, 255, 0.95);
}

.contact-form-wrapper {
    background: var(--background);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.contact-form .form-group {
    margin-bottom: 24px;
}

.contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-size: 14px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.contact-form textarea {
    resize: vertical;
}

.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

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

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

.footer-col p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 12px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

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

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 8px 0;
}

@media (max-width: 1200px) {
    .container {
        padding: 0 20px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 56px;
    }

    .hero-subtitle {
        font-size: 28px;
    }

    .section-title {
        font-size: 40px;
    }

    .platform-features,
    .workflow-section,
    .dashboards-section,
    .contact-section {
        padding: 80px 0;
    }
}

@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: block;
    }

    .mobile-menu,
    .mobile-menu-overlay {
        display: block;
    }

    .nav-menu,
    .nav-actions {
        display: none;
    }

    .hero {
        padding: 80px 0 50px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 24px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-icon {
        width: 100px;
        height: 100px;
        font-size: 50px;
    }

    .features-grid-main,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .capabilities-grid,
    .stats-row,
    .system-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .workflow-steps,
    .stages-grid,
    .dashboard-types,
    .access-tiers,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 36px;
    }

    .platform-features,
    .workflow-section,
    .dashboards-section,
    .contact-section,
    .how-it-works {
        padding: 60px 0;
    }

    .advanced-capabilities,
    .system-features,
    .access-control {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 60px 0 40px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-description {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .hero-icon {
        width: 80px;
        height: 80px;
        font-size: 40px;
        margin-bottom: 20px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
    }

    .stats-grid-banner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .stats-banner {
        padding: 30px 0;
    }

    .key-features,
    .advanced-capabilities {
        padding: 40px 0;
    }

    .features-grid-main,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card,
    .feature-card-large {
        padding: 24px 20px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-description {
        font-size: 16px;
    }

    .capabilities-grid,
    .workflow-steps,
    .stages-grid,
    .dashboard-types,
    .access-tiers,
    .pricing-grid,
    .stats-row,
    .system-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cta-box {
        padding: 32px 24px;
    }

    .cta-box h2 {
        font-size: 28px;
    }

    .cta-box > p {
        font-size: 16px;
    }

    .cta-features {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .platform-features,
    .workflow-section,
    .dashboards-section,
    .contact-section,
    .how-it-works,
    .pricing-section {
        padding: 50px 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .contact-form-wrapper {
        padding: 24px;
    }

    .included-features {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .all-plans-include {
        padding: 32px 24px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 12px;
    }

    .navbar {
        padding: 12px 0;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .logo-name {
        font-size: 18px;
    }

    .logo-tagline {
        font-size: 11px;
    }

    .hero {
        padding: 50px 0 30px;
    }

    .hero-title {
        font-size: 28px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-description {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .hero-icon {
        width: 70px;
        height: 70px;
        font-size: 35px;
        border-radius: 20px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 20px;
        font-size: 14px;
    }

    .btn-large {
        padding: 14px 24px;
        font-size: 15px;
    }

    .section-title {
        font-size: 24px;
    }

    .section-badge {
        font-size: 12px;
        padding: 6px 16px;
    }

    .section-description {
        font-size: 15px;
    }

    .feature-icon,
    .capability-icon {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }

    .feature-icon-small {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .feature-card h3,
    .feature-card-large h3 {
        font-size: 18px;
    }

    .feature-card p,
    .feature-card-large p {
        font-size: 14px;
    }

    .cta-section,
    .key-features,
    .advanced-capabilities {
        padding: 30px 0;
    }

    .cta-box {
        padding: 24px 16px;
    }

    .cta-box h2 {
        font-size: 22px;
    }

    .cta-box > p {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .platform-features,
    .workflow-section,
    .dashboards-section,
    .contact-section,
    .how-it-works,
    .pricing-section,
    .system-features,
    .access-control {
        padding: 40px 0;
    }

    .workflow-step h3,
    .stage-card h3,
    .dashboard-card h3 {
        font-size: 20px;
    }

    .workflow-step p,
    .stage-card p,
    .dashboard-card p {
        font-size: 14px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .pricing-card h3 {
        font-size: 24px;
    }

    .amount {
        font-size: 48px;
    }

    .amount-custom {
        font-size: 32px;
    }

    .stat-box h3 {
        font-size: 36px;
    }

    .footer {
        padding: 30px 0 15px;
    }

    .footer-col h4 {
        font-size: 16px;
    }

    .contact-form-wrapper {
        padding: 20px;
    }
}

@media (max-width: 375px) {
    .hero-title {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 22px;
    }

    .cta-box h2 {
        font-size: 20px;
    }

    .mobile-menu {
        width: 100%;
    }
}
