/*
 * Prism GMS — styles.css
 * Convention: base/layout/components first; all @media queries are grouped at the bottom.
 */
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

:root {
    --primary-color: #0ea5e9;
    --primary-dark: #0284c7;
    --secondary-color: #06b6d4;
    --accent-color: #14b8a6;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-dark: #111827;
    --border-color: #e5e7eb;
    --gradient-1: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    --gradient-2: linear-gradient(135deg, #06b6d4 0%, #14b8a6 100%);
    --gradient-3: linear-gradient(135deg, #3b82f6 0%, #0ea5e9 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
    position: relative;
}
.hero-side-img img {
    width: 100%;
}
.logo-img-footer {
    width: 100%;
    margin-bottom: 20px;
}
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(14, 165, 233, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(6, 182, 212, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(20, 184, 166, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.1), transparent);
    pointer-events: none;
    z-index: 0;
}

/* Scroll progress bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gradient-1);
    z-index: 9999;
    transition: width 0.1s ease;
    box-shadow: 0 2px 4px rgba(102, 126, 234, 0.4);
}

/* Background light effects */
.hero-background::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(14, 165, 233, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(6, 182, 212, 0.15) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    width: 100%;
}

/* Navigation - Connecteam Style */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    z-index: 1000;
    padding: 1.25rem 0;
    box-shadow: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, box-shadow, padding, background;
    border-bottom: 1px solid rgba(0, 0, 0, 0);
}
/* Updated Visual Content */
.visual-content {
    min-height: 250px;
    padding: 1rem 0;
}

/* Chart Styles */
.chart-container {
    width: 100%;
    height: 100%;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 200px;
    padding: 1rem 0;
    gap: 0.5rem;
}

.chart-bar-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: flex-end;
}

.chart-bar {
    width: 100%;
    background: linear-gradient(180deg, #0ea5e9 0%, #06b6d4 100%);
    border-radius: 8px 8px 0 0;
    position: relative;
    transition: all 0.3s ease;
    min-height: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 0.5rem;
    box-shadow: 0 2px 8px rgba(14, 165, 233, 0.2);
}

.chart-bar:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.bar-value {
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
}

.bar-label {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.chart-legend {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.85rem;
}

.legend-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

/* Payroll Graph */
.payroll-graph {
    position: relative;
    height: 250px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
    border-radius: 12px;
    padding: 2rem;
}

.payroll-data-point {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.data-circle {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.data-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-align: center;
}

.data-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
}

/* Line Chart */
.line-chart-container {
    width: 100%;
    height: 250px;
    padding: 1rem;
}

.line-chart {
    width: 100%;
    height: 180px;
    margin-bottom: 1rem;
}

.chart-svg {
    width: 100%;
    height: 100%;
}

.chart-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawLine 2s ease-out forwards;
}

.chart-area {
    animation: fadeInArea 2s ease-out forwards;
}

.chart-point {
    animation: scaleIn 0.5s ease-out forwards;
    animation-delay: 1.5s;
    opacity: 0;
}

.chart-point:nth-child(1) { animation-delay: 1.5s; }
.chart-point:nth-child(2) { animation-delay: 1.7s; }
.chart-point:nth-child(3) { animation-delay: 1.9s; }
.chart-point:nth-child(4) { animation-delay: 2.1s; }

.chart-labels {
    display: flex;
    justify-content: space-around;
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.chart-title {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    font-weight: 500;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes fadeInArea {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Circular Progress Chart */
.progress-chart-container {
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 250px;
    gap: 2rem;
}

.circular-progress {
    flex-shrink: 0;
}

.progress-svg {
    width: 140px;
    height: 140px;
}

.progress-circle {
    animation: progressAnimation 2s ease-out forwards;
    stroke-dashoffset: 314;
}

.progress-text {
    font-size: 1.5rem;
    font-weight: 700;
    fill: var(--text-primary);
}

.progress-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: var(--bg-secondary);
    border-radius: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.stat-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}

@keyframes progressAnimation {
    from {
        stroke-dashoffset: 314;
    }
    to {
        stroke-dashoffset: 94;
    }
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.navbar.sticky {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    padding: 0.75rem 20px;
    background: rgba(255, 255, 255, 0);
    box-shadow: none;
    border-bottom: none;
}

.navbar.scrolled::before {
    opacity: 1;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.5rem 1.5rem;
    border-radius: 0;
    background-color: transparent;
    pointer-events: auto;
    width: 100%;
    box-sizing: border-box;
}

.navbar.scrolled .nav-content {
    background-color: #ccc;
    border-radius: 30px;
    padding: 0.75rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .nav-content {
    background-color: #ccc;
    border-radius: 30px;
    padding: 0.75rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo a:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 38px;
    width: auto;
    display: block;
    transition: all 0.3s ease;
}

.navbar.scrolled .logo-img {
    height: 34px;
}

/* Footer logo styling */
.footer .logo-img {
    height: 45px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    margin-bottom: 20px;
}

.footer .logo a:hover .logo-img {
    opacity: 1;
    transform: scale(1.05);
}

/* Legacy text logo styles (for backwards compatibility) */
.logo h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.logo-accent {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: rgba(31, 41, 55, 0.9);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 0;
    display: block;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.navbar.scrolled .nav-menu a {
    color: var(--text-secondary);
    text-shadow: none;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--text-primary);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.9);
}

.navbar.scrolled .nav-menu a:hover,
.navbar.scrolled .nav-menu a.active {
    color: var(--text-primary);
    text-shadow: none;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    transform: scaleX(1);
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-secondary {
    padding: 0.625rem 1.25rem;
    background: var(--text-primary);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.navbar.scrolled .btn-secondary {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: var(--text-primary);
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 10001;
    position: relative;
    background: transparent;
    border: none;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    -webkit-user-select: none;
    pointer-events: auto;
    outline: none;
}

.hamburger span {
    width: 24px;
    height: 2.5px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

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

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

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

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-outline {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--text-primary);
    color: white;
}

.btn-secondary:hover {
    background: var(--text-primary);
    opacity: 0.9;
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
    will-change: transform;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(14, 165, 233, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(6, 182, 212, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(20, 184, 166, 0.08) 0%, transparent 50%);
    animation: rotate 25s linear infinite;
    pointer-events: none;
    opacity: 0.6;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
    will-change: transform;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--gradient-1);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--gradient-2);
    bottom: -150px;
    right: -150px;
    animation-delay: 5s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--gradient-3);
    top: 50%;
    right: 10%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    max-width: 100%;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    word-wrap: break-word;
    max-width: 100%;
    box-sizing: border-box;
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.8;
    word-wrap: break-word;
    max-width: 100%;
    box-sizing: border-box;
}

.hero-subheadline {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-weight: 500;
    word-wrap: break-word;
    max-width: 100%;
    box-sizing: border-box;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    line-height: 1.4;
    display: block;
    word-wrap: break-word;
}

/* Dashboard Preview */
.dashboard-preview {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow-xl);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.3s ease;
    will-change: transform;
}

.dashboard-preview:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.dashboard-header {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.dashboard-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
}

.dashboard-dot:nth-child(1) {
    background: #ff5f56;
}

.dashboard-dot:nth-child(2) {
    background: #ffbd2e;
}

.dashboard-dot:nth-child(3) {
    background: #27c93f;
}

.dashboard-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.dashboard-card {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease;
}

.dashboard-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.card-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.card-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.hero-text {
    will-change: transform, opacity;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    text-align: left;
}

.hero-visual {
    will-change: transform, opacity;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease-out;
}

.fade-in-left {
    animation: fadeInLeft 0.8s ease-out;
}

.slide-in {
    animation: slideIn 0.6s ease-out;
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

.pulse-delay {
    animation: pulse 2s ease-in-out infinite;
    animation-delay: 0.3s;
}

.pulse-delay-2 {
    animation: pulse 2s ease-in-out infinite;
    animation-delay: 0.6s;
}

/* What is Prism GMS Section */
.what-is-section {
    padding: 60px 0;
    background: var(--bg-secondary);
}

.what-is-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.what-is-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 0;
}

/* Key Features Section */
.key-features-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.key-features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.3), transparent);
}

.key-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.key-feature-card {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.key-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.key-feature-card:hover::before {
    transform: scaleX(1);
}

.key-feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.key-feature-card:hover::after {
    opacity: 1;
}

.key-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(14, 165, 233, 0.15);
    border-color: rgba(14, 165, 233, 0.2);
}

.key-feature-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.key-feature-card:hover .key-feature-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.15) 0%, rgba(6, 182, 212, 0.15) 100%);
}

.key-feature-icon {
    font-size: 2.5rem;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.key-feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.key-feature-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Key Features Section */
.key-features-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.key-features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.3), transparent);
}

.key-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.key-feature-card {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.key-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.key-feature-card:hover::before {
    transform: scaleX(1);
}

.key-feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.key-feature-card:hover::after {
    opacity: 1;
}

.key-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(14, 165, 233, 0.15);
    border-color: rgba(14, 165, 233, 0.2);
}

.key-feature-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.key-feature-card:hover .key-feature-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.15) 0%, rgba(6, 182, 212, 0.15) 100%);
}

.key-feature-icon {
    font-size: 2.5rem;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.key-feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.key-feature-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Features Overview */
.features-overview {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--bg-secondary) 100%);
    will-change: transform;
    transition: transform 0.3s ease;
    position: relative;
}

.features-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.3), transparent);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    will-change: transform, opacity;
    position: relative;
}

.section-header.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-1);
    border-radius: 2px;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    position: relative;
}



.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(14, 165, 233, 0.1);
    will-change: transform, opacity;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.15);
    border-color: rgba(14, 165, 233, 0.3);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    border-radius: 20px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.15) 0%, rgba(6, 182, 212, 0.15) 100%);
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.2);
}

.feature-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.3;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.feature-card:hover h3 {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
    flex-grow: 1;
    min-height: 80px;
}

.feature-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
    font-size: 1.05rem;
}

.feature-link::after {
    content: '→';
    transition: transform 0.3s ease;
    display: inline-block;
}

.feature-link:hover {
    gap: 0.75rem;
    color: var(--primary-dark);
}

.feature-link:hover::after {
    transform: translateX(5px);
}

/* Why Choose Section */
.why-choose {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, #ffffff 100%);
    will-change: transform;
    transition: transform 0.3s ease;
    position: relative;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.3), transparent);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.benefit-item {
    text-align: center;
    padding: 3rem 2.5rem;
    background: white;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(14, 165, 233, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    will-change: transform, opacity;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-item::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.benefit-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.15);
    border-color: rgba(14, 165, 233, 0.3);
}

.benefit-item:hover::before {
    transform: scaleX(1);
}

.benefit-item:hover::after {
    opacity: 1;
}

.benefit-item.animate-in {
    opacity: 1 !important;
    transform: translateX(0) !important;
}

.benefit-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    border-radius: 24px;
    position: relative;
    z-index: 1;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.1);
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.15) rotate(5deg);
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.15) 0%, rgba(6, 182, 212, 0.15) 100%);
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.25);
}

.benefit-item h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    line-height: 1.3;
}

.benefit-item:hover h3 {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefit-item p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
    margin: 0;
}

/* ROI Section - Modern Design Without Cards */
.roi-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.roi-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.roi-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    line-height: 1.2;
}

.roi-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #0ea5e9 50%, transparent 100%);
    border-radius: 2px;
}

.roi-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.roi-benefits {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.roi-benefit {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 0;
    transition: all 0.3s ease;
}

.roi-benefit:hover {
    transform: translateX(8px);
}

.roi-benefit-icon {
    font-size: 2.5rem;
    line-height: 1;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.roi-benefit:hover .roi-benefit-icon {
    transform: scale(1.1);
}

.roi-benefit-content {
    flex: 1;
}

.roi-benefit-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.roi-benefit-content p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: var(--bg-secondary);
    will-change: transform;
    transition: transform 0.3s ease;
    overflow: visible;
}

.testimonials .container {
    max-width: 1400px;
    overflow: visible;
}

.testimonials-slider-wrapper {
    position: relative;
    padding: 3rem 0;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.slider-container {
    overflow: hidden;
    width: 100%;
    padding: 1rem 0;
    flex: 1;
    order: 2;
    position: relative;
}

.slider-nav {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    border: 2px solid rgba(14, 165, 233, 0.2);
    color: #0ea5e9;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.slider-nav:hover {
    background: #0ea5e9;
    color: white;
    border-color: #0ea5e9;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.3);
}

.slider-nav:active {
    transform: scale(0.95);
}

.slider-nav svg {
    width: 20px;
    height: 20px;
}

.slider-nav-prev {
    order: 1;
}

.slider-nav-next {
    order: 3;
}

.testimonials-slider {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    gap: 1.5rem;
    padding: 0;
    margin: 0;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(14, 165, 233, 0.1);
    width: calc((100% - 4.5rem) / 4);
    min-width: calc((100% - 4.5rem) / 4);
    max-width: calc((100% - 4.5rem) / 4);
    flex-shrink: 0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    margin: 0;
}









.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(14, 165, 233, 0.15);
    border-color: rgba(14, 165, 233, 0.3);
}

.testimonial-card.animate-in {
    opacity: 1 !important;
    transform: scale(1) !important;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2.5rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(14, 165, 233, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dot:hover {
    background: rgba(14, 165, 233, 0.5);
    transform: scale(1.2);
}

.slider-dot.active {
    background: var(--primary-color);
    width: 32px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(14, 165, 233, 0.4);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    max-width: 50px;
    max-height: 50px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    flex-shrink: 0;
    aspect-ratio: 1 / 1;
    line-height: 1;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
}

.author-role {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Stats Section */
.stats-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.03) 0%, rgba(6, 182, 212, 0.03) 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(14, 165, 233, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.stats-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.stat-box {
    text-align: center;
    padding: 2.5rem;
    position: relative;
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

.stat-box:nth-child(2) .stat-icon {
    animation-delay: 0.5s;
}

.stat-box:nth-child(3) .stat-icon {
    animation-delay: 1s;
}

.stat-box:nth-child(4) .stat-icon {
    animation-delay: 1.5s;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    line-height: 1;
}

.stat-suffix {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-top: 1rem;
    font-weight: 500;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background: var(--bg-primary);
}

.hiw-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hiw-card {
    --hiw-card-border: rgba(14, 165, 233, 0.15);
    position: relative;
    padding: 1.75rem 1.5rem;
    background: var(--bg-primary);
    border: 1px solid var(--hiw-card-border);
    border-radius: 16px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    overflow: hidden;
}

.hiw-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.hiw-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -12px rgba(14, 165, 233, 0.2);
    border-color: rgba(14, 165, 233, 0.35);
}

.hiw-card:hover::before {
    opacity: 0.04;
}

.hiw-card:focus-within {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.hiw-card-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--gradient-1);
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.35);
}

.hiw-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.625rem;
    position: relative;
    z-index: 1;
    line-height: 1.3;
}

.hiw-card-desc {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* How It Works - responsive */




/* Comparison Section */
.comparison-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.comparison-wrapper {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.comparison-column {
    padding: 3rem;
    border-radius: 24px;
    position: relative;
}

.before-column {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05) 0%, rgba(220, 38, 38, 0.05) 100%);
    border: 2px solid rgba(239, 68, 68, 0.1);
}

.after-column {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
    border: 2px solid rgba(14, 165, 233, 0.1);
}

.comparison-header h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.before-column .comparison-header h3 {
    color: #ef4444;
}

.after-column .comparison-header h3 {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.comparison-item:hover {
    transform: translateX(5px);
}

.comparison-item:last-child {
    border-bottom: none;
}

.comparison-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.comparison-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem 0;
}

.divider-line {
    width: 2px;
    height: 100%;
    background: var(--gradient-1);
    min-height: 400px;
}

.divider-arrow {
    font-size: 3rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    animation: pulse 2s ease-in-out infinite;
}

/* Partners Section */
.partners-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.partner-item {
    padding: 2rem;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-secondary);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    position: relative;
    overflow: hidden;
}

.partner-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    opacity: 0.05;
    transition: left 0.4s ease;
}

.partner-item:hover {
    border-color: var(--primary-color);
    color: var(--text-primary);
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.15);
}

.partner-item:hover::before {
    left: 0;
}




.cta-section {
    padding: 80px 0;
    background: var(--gradient-1);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 35px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.cta-section .btn-primary {
    background: white;
    color: var(--primary-color);
}

.cta-section .btn-outline {
    border-color: white;
    color: white;
}

.cta-section .btn-outline:hover {
    background: white;
    color: var(--primary-color);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer ul {
    padding-left: 0px !important;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

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

/* Page Header */
.page-header {
    padding: 140px 0 60px;
    text-align: center;
    background: var(--bg-secondary);
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

/* Features Detail Page */
.detailed-features {
    padding: 80px 0;
}

.feature-detail {
    margin-bottom: 6rem;
    will-change: transform, opacity;
}

.feature-detail.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.feature-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-detail.reverse .feature-detail-content {
    direction: rtl;
}

.feature-detail.reverse .feature-detail-content > * {
    direction: ltr;
}

.feature-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--gradient-1);
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-detail-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.feature-detail-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.feature-detail-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
    box-shadow: var(--shadow-lg);
}

.feature-visual-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.visual-header {
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.visual-content {
    min-height: 200px;
}

.schedule-item {
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 8px;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-weight: 500;
}

.tracking-map {
    position: relative;
    height: 200px;
    background: var(--bg-secondary);
    border-radius: 8px;
}

.tracking-point {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-color);
    border: 3px solid white;
    box-shadow: var(--shadow-md);
}

.tracking-point:nth-child(1) {
    top: 30%;
    left: 20%;
}

.tracking-point:nth-child(2) {
    top: 60%;
    right: 30%;
}

.tracking-point:nth-child(3) {
    bottom: 20%;
    left: 50%;
}

.tracking-point.active {
    animation: pulse 2s ease-in-out infinite;
}

.report-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 8px;
    margin-bottom: 0.75rem;
}

.report-icon {
    font-size: 1.5rem;
}

.report-text {
    color: var(--text-primary);
    font-weight: 500;
}

.mobile-card {
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--text-primary);
    font-weight: 600;
}

.chart-bar {
    display: inline-block;
    width: 50px;
    background: var(--gradient-1);
    border-radius: 4px 4px 0 0;
    margin: 0 10px;
    vertical-align: bottom;
}

.compliance-item {
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 8px;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-weight: 500;
}

.additional-features {
    padding: 80px 0;
    background: var(--bg-secondary);
}

/* Pricing Page */
.pricing-section {
    padding: 80px 0;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.toggle-label {
    font-weight: 600;
    color: var(--text-primary);
}

.save-badge {
    background: var(--gradient-1);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.85rem;
    margin-left: 0.5rem;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--border-color);
    transition: 0.4s;
    border-radius: 34px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider {
    background: var(--gradient-1);
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(26px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    will-change: transform, opacity;
}

.pricing-card.animate-in {
    opacity: 1 !important;
    transform: scale(1) !important;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-1);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.pricing-header p {
    color: var(--text-secondary);
}

.pricing-price {
    text-align: center;
    margin-bottom: 2rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.pricing-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.comparison-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comparison-table th,
.comparison-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background: var(--bg-secondary);
    font-weight: 600;
    color: var(--text-primary);
}

.comparison-table td {
    color: var(--text-secondary);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.faq-section {
    padding: 80px 0;
}

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

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    will-change: transform, opacity;
}

.faq-item.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Contact Page */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.contact-info > p {
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.contact-methods {
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.method-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border-radius: 12px;
}

.method-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.method-content p {
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.contact-link {
    color: inherit;
    font-weight: inherit;
    text-decoration: none;
    word-break: break-all;
}

.contact-link:hover {
    text-decoration: underline;
    color: var(--primary-color);
}

.social-links h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    padding: 0.75rem 1.5rem;
    background: var(--bg-secondary);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.contact-form-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-success {
    padding: 1rem;
    background: #10b981;
    color: white;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
}

.about-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Contact page — tighter typography on small screens */


/* Features page — tighter typography on small screens */


.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.about-stat {
    text-align: center;
}

/* Performance optimizations for scroll animations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Reduce motion for users who prefer it */


/* Timeline Section */
.timeline-section {
    padding: 80px 0;
    background: var(--bg-secondary);
    position: relative;
}

.timeline-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 2rem 0;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    padding-left: 100px;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.timeline-item.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marker-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: white;
    border: 4px solid var(--primary-color);
    box-shadow: 0 0 0 8px rgba(14, 165, 233, 0.1), 0 4px 12px rgba(14, 165, 233, 0.3);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-item:hover .marker-dot {
    transform: scale(1.3);
    box-shadow: 0 0 0 12px rgba(14, 165, 233, 0.15), 0 6px 20px rgba(14, 165, 233, 0.4);
}

.marker-line {
    position: absolute;
    left: 10px;
    top: 20px;
    width: 3px;
    height: calc(100% + 4rem);
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    z-index: 1;
    display: none;
}

.timeline-item:last-child .marker-line {
    display: none;
}

.timeline-content {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(14, 165, 233, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-1);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.timeline-item:hover .timeline-content {
    transform: translateX(10px);
    box-shadow: 0 12px 40px rgba(14, 165, 233, 0.15);
    border-color: rgba(14, 165, 233, 0.3);
}

.timeline-item:hover .timeline-content::before {
    transform: scaleY(1);
}

.timeline-year {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--gradient-1);
    color: white;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

.timeline-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.timeline-item:hover .timeline-content h3 {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.timeline-badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.timeline-badge {
    padding: 0.5rem 1rem;
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary-color);
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-badge {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.timeline-stats {
    padding: 80px 0;
    background: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2.5rem;
    background: var(--bg-secondary);
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.stat-card:hover {
    transform: translateY(-8px);
    background: white;
    border-color: rgba(14, 165, 233, 0.2);
    box-shadow: 0 12px 40px rgba(14, 165, 233, 0.1);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-weight: 500;
}

/* Legal Section */
.legal-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.legal-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    position: sticky;
    top: 80px;
    z-index: 100;
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
}

.legal-nav-item {
    padding: 0.75rem 1.5rem;
    background: var(--bg-secondary);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.legal-nav-item:hover,
.legal-nav-item.active {
    background: var(--gradient-1);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-document {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
    scroll-margin-top: 120px;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.legal-document.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.legal-header {
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 1.5rem;
    margin-bottom: 2.5rem;
}

.legal-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-updated {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.legal-body {
    line-height: 1.8;
}

.legal-body h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.legal-body h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.legal-body p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.legal-body ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.legal-body li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

.legal-body a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.legal-body a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Timeline / stats — all viewport overrides live in @media at bottom of file */

.timeline-stats {
    padding: 80px 0;
    background: white;
}

/* Stats Section - New Homepage Stats */
.stats-section .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.stats-section .stat-box {
    text-align: center;
    padding: 3rem 2rem;
    position: relative;
    background: white;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.stats-section .stat-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(14, 165, 233, 0.15);
    border-color: rgba(14, 165, 233, 0.2);
}

.stats-section .stat-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.stats-section .stat-box:nth-child(2) .stat-icon {
    animation-delay: 0.5s;
}

.stats-section .stat-box:nth-child(3) .stat-icon {
    animation-delay: 1s;
}

.stats-section .stat-box:nth-child(4) .stat-icon {
    animation-delay: 1.5s;
}

.stats-section .stat-number-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0;
    margin: 1rem 0;
    line-height: 1;
}

.stats-section .stat-number {
    font-size: 4.5rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    line-height: 1;
    min-width: fit-content;
}

.stats-section .stat-suffix {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    line-height: 1;
}

.stats-section .stat-label {
    font-size: 1.15rem;
    color: var(--text-primary);
    margin-top: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* =============================================================================
   Responsive — all @media queries (kept at bottom of stylesheet)
   ============================================================================= */

@media (max-width: 968px) {
    .feature-detail-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-detail.reverse .feature-detail-content {
        direction: ltr;
    }

    /* Stack text above image on mobile (reverse rows have image first in DOM) */
    .feature-detail.reverse .feature-detail-text {
        order: 1;
    }

    .feature-detail.reverse .feature-detail-visual {
        order: 2;
    }

    .chart-bars {
        height: 180px;
    }

    .bar-value {
        font-size: 0.7rem;
    }

    .bar-label {
        font-size: 0.7rem;
    }

    .payroll-graph {
        height: 220px;
        padding: 1.5rem;
    }

    .data-value {
        font-size: 1.1rem;
    }

    .progress-chart-container {
        flex-direction: column;
        height: auto;
        gap: 1.5rem;
    }

    .progress-svg {
        width: 120px;
        height: 120px;
    }

    .line-chart-container {
        height: 220px;
    }
}

@media (max-width: 480px) {
    .chart-bars {
        height: 150px;
        gap: 0.25rem;
    }

    .chart-bar {
        min-height: 15px;
    }

    .bar-value {
        font-size: 0.65rem;
    }

    .bar-label {
        font-size: 0.65rem;
    }

    .payroll-graph {
        height: 200px;
        padding: 1rem;
    }

    .data-label {
        font-size: 0.7rem;
    }

    .data-value {
        font-size: 1rem;
    }

    .data-circle {
        width: 12px;
        height: 12px;
    }

    .line-chart-container {
        height: 200px;
        padding: 0.5rem;
    }

    .progress-svg {
        width: 100px;
        height: 100px;
    }

    .progress-text {
        font-size: 1.2rem;
    }

    .stat-row {
        padding: 0.5rem 0.75rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .stat-value {
        font-size: 1rem;
    }
}

@media (min-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    .testimonial-card {
        padding: 3rem;
    }
}

@media (max-width: 1024px) {
    .testimonial-card {
        width: calc((100% - 3rem) / 3);
        min-width: calc((100% - 3rem) / 3);
        max-width: calc((100% - 3rem) / 3);
    }
}

@media (max-width: 768px) {
    .testimonials-slider-wrapper {
        padding: 1rem 0;
        gap: 0.5rem;
    }

    .testimonials-slider {
        gap: 1rem;
    }

    .testimonial-card {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        padding: 1.5rem;
    }

    .slider-nav {
        width: 36px;
        height: 36px;
        display: flex; /* Keep arrows visible on tablet */
    }

    .slider-nav svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
        max-width: 100%;
        box-sizing: border-box;
        width: 100%;
    }

    .hero {
        padding: 100px 0 60px;
        overflow-x: hidden;
        width: 100%;
    }

    .hero-content {
        display: block;
        padding: 0;
        margin: 0 auto;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .hero-text {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0 auto;
        text-align: center;
        box-sizing: border-box;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
        text-align: center;
        padding: 0;
        margin: 0 auto 1rem auto;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    .hero-subheadline {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        text-align: center;
        padding: 0;
    }

    .what-is-content p {
        font-size: 0.95rem;
        padding: 0 1rem;
    }

    .roi-section {
        padding: 60px 0;
    }

    .roi-title {
        font-size: 2rem;
    }

    .roi-description {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }

    .roi-benefits {
        gap: 2.5rem;
    }

    .roi-benefit {
        gap: 1.5rem;
    }

    .roi-benefit-icon {
        font-size: 2rem;
        width: 50px;
        height: 50px;
    }

    .roi-benefit-content h3 {
        font-size: 1.3rem;
    }

    .roi-benefit-content p {
        font-size: 1rem;
    }

    .middle-cta-content h2 {
        font-size: 1.75rem;
    }

    .middle-cta-content p {
        font-size: 1rem;
    }

    .hero-cta {
        gap: 0.5rem;
    }

    .hero-cta .btn-primary,
    .hero-cta .btn-outline {
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
    }

    .stat-item {
        flex: 1;
        min-width: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0.5rem;
    }

    .stat-number {
        font-size: 1.75rem;
        line-height: 1.2;
        margin-bottom: 0.75rem;
        display: block;
    }

    .stat-label {
        font-size: 0.85rem;
        margin-top: 0;
        line-height: 1.4;
        display: block;
        word-wrap: break-word;
        text-align: center;
    }

    .testimonial-card {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
    }

    .slider-nav {
        display: none; /* Hide arrows on mobile, use swipe instead */
    }

    .section-title {
        font-size: 1.5rem;
    }

    .container {
        padding: 0 1rem;
    }

    .key-features-section {
        padding: 60px 0;
    }

    .key-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .key-feature-card {
        padding: 1.75rem;
    }

    .key-feature-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .key-feature-icon {
        font-size: 1.75rem;
    }

    .key-feature-card h3 {
        font-size: 1.15rem;
    }

    .key-feature-card p {
        font-size: 0.9rem;
    }

    .stats-section .stat-box {
        padding: 1.75rem 1.25rem;
        width: 100%;
        max-width: 100%;
    }

    .stats-section .stat-number {
        font-size: 3rem;
    }

    .stats-section .stat-suffix {
        font-size: 1.75rem;
    }

    .stats-section .stat-icon {
        font-size: 2.5rem;
    }

    .stats-section .stat-label {
        font-size: 0.95rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 992px) {
    .hiw-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .hiw-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hiw-card {
        padding: 1.25rem 1.25rem;
    }

    .hiw-card-title {
        font-size: 1.125rem;
    }

    .hiw-card-desc {
        font-size: 0.875rem;
    }
}

@media (max-width: 1024px) {
    .stats-section .stats-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }

    .stats-section .stat-box {
        width: 100%;
        max-width: 100%;
    }

    .key-features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .comparison-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .comparison-divider {
        flex-direction: row;
        padding: 2rem 0;
    }

    .comparison-divider .divider-line {
        width: 100%;
        height: 2px;
        min-height: 2px;
    }

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

@media (max-width: 768px) {
    .stats-section .stats-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    .stats-section .stat-box {
        padding: 2rem 1.5rem;
        width: 100%;
        max-width: 100%;
    }

    .stats-section .stat-number {
        font-size: 3.5rem;
    }

    .stats-section .stat-suffix {
        font-size: 2rem;
    }

    .stats-section .stat-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .stats-section .stat-label {
        font-size: 1rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .comparison-column {
        padding: 2rem;
    }

    .partners-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-page .page-header {
        padding: 100px 0 2rem;
    }

    .contact-page .page-title {
        font-size: 1.65rem;
        line-height: 1.25;
    }

    .contact-page .page-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
        padding: 0 0.25rem;
    }

    .contact-page .contact-section {
        padding: 48px 0;
    }

    .contact-page .contact-info h2 {
        font-size: 1.5rem;
    }

    .contact-page .contact-info > p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .contact-page .quote-notice {
        padding: 1rem !important;
        margin: 1.25rem 0 !important;
    }

    .contact-page .quote-notice h3 {
        font-size: 1rem !important;
    }

    .contact-page .quote-notice p {
        font-size: 0.875rem !important;
        line-height: 1.5 !important;
    }

    .contact-page .contact-methods {
        margin-bottom: 2rem;
    }

    .contact-page .contact-method {
        gap: 1rem;
        margin-bottom: 1.25rem;
    }

    .contact-page .method-icon {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
        flex-shrink: 0;
    }

    .contact-page .method-content h3 {
        font-size: 1rem;
    }

    .contact-page .method-content p {
        font-size: 0.875rem;
    }

    .contact-page .social-links h3 {
        font-size: 1rem;
    }

    .contact-page .social-icon {
        padding: 0.5rem 0.85rem;
        font-size: 0.8rem;
    }

    .contact-page .contact-form-wrapper {
        padding: 1.25rem;
    }

    .contact-page .contact-form {
        gap: 1rem;
    }

    .contact-page .form-group label {
        font-size: 0.875rem;
    }

    .contact-page .form-group input,
    .contact-page .form-group select,
    .contact-page .form-group textarea {
        font-size: 0.9rem;
        padding: 0.65rem 0.75rem;
    }

    .contact-page .about-section {
        padding: 48px 0;
    }

    .contact-page .about-content h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .contact-page .about-content p {
        font-size: 0.9rem;
        line-height: 1.65;
        margin-bottom: 1rem;
    }

    .contact-page .cta-section .cta-content h2 {
        font-size: 1.35rem;
        line-height: 1.3;
    }

    .contact-page .cta-section .cta-content p {
        font-size: 0.9rem;
    }

    .contact-page .cta-buttons .btn-large {
        font-size: 0.875rem;
        padding: 0.7rem 1.1rem;
    }

    .contact-page .form-success {
        font-size: 0.85rem;
        padding: 0.75rem;
    }
}

@media (max-width: 768px) {
    .features-page .page-header {
        padding: 100px 0 2rem;
    }

    .features-page .page-title {
        font-size: 1.65rem;
        line-height: 1.25;
    }

    .features-page .page-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
        padding: 0 0.25rem;
    }

    .features-page .detailed-features {
        padding: 48px 0;
    }

    .features-page .feature-detail {
        margin-bottom: 4rem;
    }

    .features-page .feature-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.85rem;
    }

    .features-page .feature-detail-text h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .features-page .feature-detail-text p {
        font-size: 0.9rem;
        line-height: 1.65;
        margin-bottom: 1.25rem;
    }

    .features-page .feature-list li {
        font-size: 0.875rem;
        padding: 0.55rem 0;
    }

    .features-page .feature-detail-img {
        border-radius: 12px;
    }

    .features-page .cta-section .cta-content h2 {
        font-size: 1.35rem;
        line-height: 1.3;
    }

    .features-page .cta-section .cta-content p {
        font-size: 0.9rem;
    }

    .features-page .cta-buttons .btn-large {
        font-size: 0.875rem;
        padding: 0.7rem 1.1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

@media (max-width: 968px) {
    .container {
        padding: 0 1rem;
        max-width: 100%;
        box-sizing: border-box;
    }

    .nav-content {
        padding: 0.5rem 0;
        margin: 0;
        width: 100%;
        justify-content: space-between;
    }

    .logo {
        margin-right: auto;
        flex-shrink: 0;
    }

    .hamburger {
        display: flex !important;
        margin-left: auto;
        margin-right: 0;
        padding-right: 0;
        flex-shrink: 0;
    }

    .hero-subheadline {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        text-align: center;
        padding: 0;
    }

    .what-is-section {
        padding: 40px 0;
    }

    .what-is-content p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .key-features-section {
        padding: 80px 0;
    }

    .key-features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .key-feature-card {
        padding: 2.5rem;
    }

    .key-feature-icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .key-feature-icon {
        font-size: 2rem;
    }

    .key-feature-card h3 {
        font-size: 1.3rem;
    }

    .key-feature-card p {
        font-size: 1rem;
    }

    .roi-section {
        padding: 60px 0;
    }

    .roi-title {
        font-size: 1.75rem;
    }

    .roi-description {
        font-size: 1rem;
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }

    .roi-benefits {
        gap: 2rem;
        padding: 0 1rem;
    }

    .roi-benefit {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        text-align: left;
    }

    .roi-benefit-icon {
        font-size: 1.75rem;
        width: 45px;
        height: 45px;
    }

    .roi-benefit-content h3 {
        font-size: 1.2rem;
    }

    .roi-benefit-content p {
        font-size: 0.95rem;
    }

    .middle-cta-section {
        padding: 60px 0;
    }

    .middle-cta-content h2 {
        font-size: 2rem;
    }

    .middle-cta-content p {
        font-size: 1.1rem;
    }

    .hero-subheadline {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .what-is-content p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .roi-section {
        padding: 60px 0;
    }

    .roi-title {
        font-size: 1.75rem;
    }

    .roi-description {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }

    .roi-benefits {
        gap: 2rem;
    }

    .roi-benefit {
        flex-direction: column;
        gap: 1rem;
    }

    .roi-benefit-icon {
        font-size: 1.75rem;
        width: 45px;
        height: 45px;
    }

    .roi-benefit-content h3 {
        font-size: 1.2rem;
    }

    .roi-benefit-content p {
        font-size: 0.95rem;
    }

    .middle-cta-content h2 {
        font-size: 2rem;
    }

    .middle-cta-content p {
        font-size: 1.1rem;
    }

    .hero-content {
        display: block;
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0;
        overflow: visible;
        justify-items: center;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
        word-wrap: break-word;
        padding: 0;
        margin: 0 auto 1rem auto;
        max-width: 100%;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
        padding: 0;
        margin: 0 auto 1.5rem auto;
        max-width: 100%;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
    }

    .hero-text {
        width: 100%;
        max-width: 100%;
        padding: 0;
        box-sizing: border-box;
        overflow: visible;
        text-align: center;
        margin: 0 auto;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }

    .hero-cta .btn-primary,
    .hero-cta .btn-outline {
        width: 100%;
        max-width: 300px;
    }

    .stat-item {
        flex: 1 1 auto;
        min-width: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0.5rem;
        max-width: 100%;
    }

    .stat-number {
        font-size: 1.75rem;
        line-height: 1.2;
        margin-bottom: 0.75rem;
        display: block;
        word-wrap: break-word;
    }

    .stat-label {
        font-size: 0.85rem;
        margin-top: 0;
        line-height: 1.4;
        display: block;
        word-wrap: break-word;
        text-align: center;
    }

    .hero-visual {
        margin-top: 2rem;
    }

    .feature-detail-content {
        grid-template-columns: 1fr;
    }

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

    /* Bootstrap Offcanvas Customization */
    .offcanvas {
        background: linear-gradient(135deg, rgba(14, 165, 233, 0.98) 0%, rgba(6, 182, 212, 0.98) 100%);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        width: 85% !important;
        max-width: 320px !important;
    }

    .offcanvas-header {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 1.5rem;
    }

    .offcanvas-title {
        color: white;
        font-weight: 700;
        font-size: 1.5rem;
    }

    .btn-close {
        filter: invert(1);
        opacity: 0.8;
    }

    .btn-close:hover {
        opacity: 1;
    }

    .offcanvas-body {
        padding: 2rem 1.5rem;
    }

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

    .nav-menu-mobile li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        opacity: 0;
        transform: translateX(-20px);
        transition: all 0.3s ease;
    }

    .offcanvas.show .nav-menu-mobile li {
        opacity: 1;
        transform: translateX(0);
    }

    .offcanvas.show .nav-menu-mobile li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .offcanvas.show .nav-menu-mobile li:nth-child(2) {
        transition-delay: 0.15s;
    }

    .offcanvas.show .nav-menu-mobile li:nth-child(3) {
        transition-delay: 0.2s;
    }

    .offcanvas.show .nav-menu-mobile li:nth-child(4) {
        transition-delay: 0.25s;
    }

    .nav-menu-mobile a {
        display: block;
        padding: 1.25rem 0;
        color: white;
        font-weight: 600;
        font-size: 1.15rem;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .nav-menu-mobile a:hover,
    .nav-menu-mobile a.active {
        color: white;
        padding-left: 1rem;
        background: rgba(255, 255, 255, 0.15);
        border-radius: 8px;
    }

    .mobile-menu-actions {
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Hide desktop nav-menu on mobile, show Bootstrap offcanvas instead */
    .nav-menu {
        display: none;
    }

    /* Bootstrap Offcanvas Customization */
    .offcanvas {
        background: linear-gradient(135deg, rgba(14, 165, 233, 0.98) 0%, rgba(6, 182, 212, 0.98) 100%);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        width: 85% !important;
        max-width: 320px !important;
    }

    .offcanvas-header {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 1.5rem;
    }

    .offcanvas-title {
        color: white;
        font-weight: 700;
        font-size: 1.5rem;
    }

    .btn-close {
        filter: invert(1);
        opacity: 0.8;
    }

    .btn-close:hover {
        opacity: 1;
    }

    .offcanvas-body {
        padding: 2rem 1.5rem;
    }

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

    .nav-menu-mobile li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        opacity: 0;
        transform: translateX(-20px);
        transition: all 0.3s ease;
    }

    .offcanvas.show .nav-menu-mobile li {
        opacity: 1;
        transform: translateX(0);
    }

    .offcanvas.show .nav-menu-mobile li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .offcanvas.show .nav-menu-mobile li:nth-child(2) {
        transition-delay: 0.15s;
    }

    .offcanvas.show .nav-menu-mobile li:nth-child(3) {
        transition-delay: 0.2s;
    }

    .offcanvas.show .nav-menu-mobile li:nth-child(4) {
        transition-delay: 0.25s;
    }

    .nav-menu-mobile a {
        display: block;
        padding: 1.25rem 0;
        color: white;
        font-weight: 600;
        font-size: 1.15rem;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .nav-menu-mobile a:hover,
    .nav-menu-mobile a.active {
        color: white;
        padding-left: 1rem;
        background: rgba(255, 255, 255, 0.15);
        border-radius: 8px;
    }

    .mobile-menu-actions {
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
        pointer-events: none;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        opacity: 0;
        transform: translateX(-20px);
        transition: all 0.3s ease;
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-menu.active li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-menu.active li:nth-child(2) {
        transition-delay: 0.15s;
    }

    .nav-menu.active li:nth-child(3) {
        transition-delay: 0.2s;
    }

    .nav-menu.active li:nth-child(4) {
        transition-delay: 0.25s;
    }

    .nav-menu a {
        padding: 1.25rem 0;
        font-size: 1.15rem;
        width: 100%;
        display: block;
        color: white;
        font-weight: 600;
        text-shadow: none;
        transition: all 0.3s ease;
    }

    .nav-menu a::after {
        display: none;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        color: white;
        padding-left: 1rem;
        background: rgba(255, 255, 255, 0.15);
        border-radius: 8px;
        text-shadow: none;
    }

    .nav-content {
        padding: 0.5rem 1rem;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .hamburger {
        display: flex !important;
        z-index: 10001 !important;
        position: relative !important;
        pointer-events: auto !important;
        cursor: pointer !important;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
        touch-action: manipulation;
        -webkit-user-select: none;
        user-select: none;
        margin-left: auto;
        margin-right: 0;
        padding: 0.5rem;
    }

    .hamburger span {
        background: var(--text-primary);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        pointer-events: none;
    }

    .hamburger.active span {
        background: white;
    }

    .hamburger:active {
        opacity: 0.7;
    }

    .hamburger:focus {
        outline: 2px solid rgba(14, 165, 233, 0.5);
        outline-offset: 2px;
    }

    .nav-actions {
        display: none;
    }

    /* Mobile menu overlay */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(4px);
        z-index: 9998;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

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

    /* Section title responsive */
    .section-title {
        font-size: 1.75rem;
        word-wrap: break-word;
    }

    .section-description {
        font-size: 1rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .testimonials-slider-wrapper {
        padding: 1rem 0;
    }

    .testimonials-slider {
        gap: 1rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }

    .timeline-container::before {
        left: 20px;
    }

    .timeline-item {
        padding-left: 70px;
    }

    .timeline-marker {
        width: 40px;
        height: 40px;
    }

    .marker-dot {
        width: 16px;
        height: 16px;
        border-width: 3px;
    }

    .legal-nav {
        position: relative;
        top: 0;
        flex-direction: column;
    }

    .legal-document {
        padding: 2rem;
    }

    .legal-header h2 {
        font-size: 2rem;
    }
}
