/* ===== CSS Variables ===== */
:root {
    --color-primary: #2563EB;
    --color-primary-dark: #1D4ED8;
    --color-primary-light: #EFF6FF;
    --color-success: #22C55E;
    --color-success-light: #DCFCE7;
    --color-danger: #EF4444;
    --color-danger-light: #FEE2E2;
    --color-warning: #FBBF24;
    --color-text: #1F2937;
    --color-text-secondary: #6B7280;
    --color-text-light: #9CA3AF;
    --color-background: #FBFBFD;
    --color-white: #FFFFFF;
    --color-border: #E5E7EB;
    --color-border-light: #F3F4F6;

    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 9999px;

    --transition-fast: 150ms ease;
    --transition-base: 200ms ease;
    --transition-slow: 300ms ease;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-background);
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

/* ===== Container ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text);
}

h1 {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: var(--font-family);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 2px 4px rgba(37, 99, 235, 0.2);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background: var(--color-white);
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.btn-secondary:hover {
    background: var(--color-border-light);
    border-color: var(--color-text-light);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
    border-radius: var(--radius-xl);
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(251, 251, 253, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border-light);
    transition: all var(--transition-base);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text-secondary);
    transition: color var(--transition-fast);
}

.nav-links a:hover {
    color: var(--color-text);
}

.nav-cta {
    display: flex;
    align-items: center;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    padding: 24px;
    z-index: 999;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-menu-links a {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text-secondary);
    padding: 8px 0;
}

.mobile-menu-links .btn {
    margin-top: 8px;
}

/* ===== Hero Section ===== */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(180deg, var(--color-white) 0%, var(--color-background) 100%);
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-text h1 {
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--color-text-secondary);
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--color-text-secondary);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

/* Phone Mockup */
.phone-mockup {
    position: relative;
    width: 280px;
    height: 580px;
    background: var(--color-text);
    border-radius: 40px;
    padding: 12px;
    box-shadow: var(--shadow-2xl);
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 24px;
    background: var(--color-text);
    border-radius: 12px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--color-white);
    border-radius: 32px;
    overflow: hidden;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 48px 20px 16px;
    background: var(--color-primary);
    color: var(--color-white);
}

.app-time {
    font-size: 14px;
    font-weight: 500;
}

.app-title {
    font-size: 16px;
    font-weight: 600;
}

.app-content {
    padding: 24px 20px;
    text-align: center;
}

.app-greeting {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 4px;
}

.app-date {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin-bottom: 20px;
}

.app-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--color-success-light);
    color: var(--color-success);
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
}

.status-indicator {
    width: 8px;
    height: 8px;
    background: var(--color-success);
    border-radius: 50%;
}

.status-indicator.active {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.app-clock {
    font-size: 40px;
    font-weight: 700;
    color: var(--color-text);
    font-variant-numeric: tabular-nums;
    margin-bottom: 20px;
}

.app-times {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 24px;
}

.time-item {
    text-align: center;
}

.time-label {
    display: block;
    font-size: 12px;
    color: var(--color-text-secondary);
    margin-bottom: 4px;
}

.time-value {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text);
}

.app-btn-pause,
.app-btn-exit {
    display: block;
    width: 100%;
    padding: 14px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    margin-bottom: 12px;
}

.app-btn-pause {
    background: var(--color-border-light);
    color: var(--color-text);
}

.app-btn-exit {
    background: var(--color-primary);
    color: var(--color-white);
}

/* Floating Cards */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    font-size: 14px;
    font-weight: 500;
    animation: float 3s ease-in-out infinite;
}

.card-1 {
    top: 80px;
    left: -60px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 120px;
    right: -40px;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ===== Trust Strip ===== */
.trust-strip {
    padding: 32px 0;
    background: var(--color-white);
    border-top: 1px solid var(--color-border-light);
    border-bottom: 1px solid var(--color-border-light);
    text-align: center;
}

.trust-text {
    font-size: 16px;
    color: var(--color-text-secondary);
    margin-bottom: 8px;
}

.trust-text strong {
    color: var(--color-text);
}

.trust-industries {
    font-size: 14px;
    color: var(--color-text-light);
}

.trust-industries .dot {
    margin: 0 8px;
    color: var(--color-border);
}

/* ===== Problem Section ===== */
.problem-section {
    padding: 100px 0;
    background: var(--color-white);
}

.problem-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.problem-content h2 {
    margin-bottom: 24px;
}

.problem-intro {
    font-size: 18px;
    color: var(--color-text-secondary);
    margin-bottom: 32px;
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.problem-list li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 16px;
    color: var(--color-text);
}

.solution-box {
    padding: 32px;
    background: var(--color-primary-light);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.solution-box p {
    font-size: 18px;
    color: var(--color-text);
    margin: 0;
}

/* ===== How It Works ===== */
.how-it-works {
    padding: 100px 0;
    background: var(--color-background);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--color-primary-light);
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.step-card {
    position: relative;
    padding: 40px 32px;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border-light);
    text-align: center;
    transition: all var(--transition-base);
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-border);
}

.step-number {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-primary);
    opacity: 0.5;
}

.step-icon {
    margin-bottom: 24px;
}

.step-card h3 {
    margin-bottom: 12px;
}

.step-card p {
    font-size: 15px;
    color: var(--color-text-secondary);
}

/* ===== Features Section ===== */
.features-section {
    padding: 100px 0;
    background: var(--color-white);
}

.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.feature-block:last-child {
    margin-bottom: 0;
}

.feature-block.reverse {
    direction: rtl;
}

.feature-block.reverse > * {
    direction: ltr;
}

.feature-tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--color-primary-light);
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.feature-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

.feature-content > p {
    font-size: 16px;
    color: var(--color-text-secondary);
    margin-bottom: 24px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--color-text);
}

.feature-highlight {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-primary);
    margin: 0;
}

/* Feature Visuals */
.feature-visual {
    display: flex;
    justify-content: center;
}

.feature-phone {
    position: relative;
    width: 260px;
    height: 520px;
    background: var(--color-text);
    border-radius: 36px;
    padding: 10px;
    box-shadow: var(--shadow-xl);
}

.phone-notch {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 22px;
    background: var(--color-text);
    border-radius: 12px;
    z-index: 10;
}

.feature-screen {
    width: 100%;
    height: 100%;
    background: var(--color-white);
    border-radius: 28px;
    overflow: hidden;
}

.screen-header {
    display: flex;
    justify-content: space-between;
    padding: 40px 16px 12px;
    font-size: 13px;
    color: var(--color-text-secondary);
}

.screen-content {
    padding: 40px 20px;
    text-align: center;
}

.big-check {
    margin-bottom: 24px;
}

.screen-message {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-success);
    margin-bottom: 8px;
}

.screen-time {
    font-size: 14px;
    color: var(--color-text-secondary);
}

/* Security Visual */
.security-visual {
    padding: 48px;
    background: var(--color-primary-light);
    border-radius: var(--radius-2xl);
    text-align: center;
}

.shield-icon {
    margin-bottom: 32px;
}

.security-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.security-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    font-size: 14px;
    font-weight: 500;
}

/* Hours Chart */
.hours-chart {
    padding: 32px;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border-light);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    font-size: 15px;
    font-weight: 600;
}

.chart-badge {
    padding: 4px 10px;
    background: var(--color-border-light);
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 500;
    color: var(--color-text-secondary);
}

.chart-bars {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 160px;
    margin-bottom: 20px;
    gap: 12px;
}

.chart-bar {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.chart-bar .bar {
    width: 100%;
    background: var(--color-primary);
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    position: relative;
}

.bar-extra {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--color-warning);
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.chart-bar span {
    font-size: 12px;
    font-weight: 500;
    color: var(--color-text-secondary);
}

.chart-legend {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 16px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--color-text-secondary);
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 3px;
}

.legend-color.regular {
    background: var(--color-primary);
}

.legend-color.extra {
    background: var(--color-warning);
}

.chart-total {
    display: flex;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--color-border-light);
    font-size: 14px;
    color: var(--color-text-secondary);
}

.chart-total strong {
    color: var(--color-text);
}

/* Dashboard Preview */
.dashboard-preview {
    padding: 24px;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border-light);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.dash-title {
    font-size: 16px;
    font-weight: 600;
}

.dash-date {
    font-size: 13px;
    color: var(--color-text-secondary);
}

.dashboard-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.stat-card {
    padding: 16px;
    background: var(--color-primary-light);
    border-radius: var(--radius-lg);
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--color-primary);
}

.stat-label {
    font-size: 12px;
    color: var(--color-text-secondary);
}

.dashboard-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--color-border-light);
    border-radius: var(--radius-lg);
}

.avatar {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 12px;
    font-weight: 600;
    border-radius: 50%;
}

.item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.item-name {
    font-size: 14px;
    font-weight: 500;
}

.item-status {
    font-size: 12px;
    color: var(--color-text-secondary);
}

.item-status.active {
    color: var(--color-success);
}

.item-status.break {
    color: var(--color-warning);
}

.item-hours {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
}

/* Reports Visual */
.reports-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.report-doc {
    width: 280px;
    padding: 24px;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border-light);
}

.doc-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 13px;
    font-weight: 500;
}

.doc-preview {
    margin-bottom: 16px;
}

.doc-line {
    height: 8px;
    background: var(--color-border-light);
    border-radius: 4px;
    margin-bottom: 8px;
}

.doc-line.short {
    width: 60%;
}

.doc-line.medium {
    width: 80%;
}

.doc-table {
    margin-top: 16px;
}

.table-row {
    height: 24px;
    background: var(--color-border-light);
    margin-bottom: 4px;
    border-radius: 4px;
}

.doc-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px;
    background: var(--color-success-light);
    border-radius: var(--radius-md);
    font-size: 13px;
    font-weight: 500;
    color: var(--color-success);
}

.download-action {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: var(--color-primary-light);
    border-radius: var(--radius-lg);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-primary);
}

/* Employee Portal */
.employee-portal {
    padding: 24px;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border-light);
    width: 300px;
}

.portal-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-border-light);
    margin-bottom: 20px;
}

.portal-avatar {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 16px;
    font-weight: 600;
    border-radius: 50%;
}

.portal-name {
    display: block;
    font-size: 16px;
    font-weight: 600;
}

.portal-role {
    font-size: 13px;
    color: var(--color-text-secondary);
}

.portal-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: var(--radius-lg);
    font-size: 14px;
    color: var(--color-text-secondary);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.menu-item:hover {
    background: var(--color-border-light);
}

.menu-item.active {
    background: var(--color-primary-light);
    color: var(--color-primary);
}

.portal-records {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.record-row {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    background: var(--color-border-light);
    border-radius: var(--radius-md);
    font-size: 13px;
}

.record-date {
    width: 60px;
    font-weight: 500;
}

.record-time {
    flex: 1;
    color: var(--color-text-secondary);
}

.record-total {
    font-weight: 600;
}

/* ===== Legal Section ===== */
.legal-section {
    padding: 100px 0;
    background: var(--color-text);
    color: var(--color-white);
}

.legal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.legal-text h2 {
    color: var(--color-white);
    margin-bottom: 32px;
}

.legal-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.legal-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 16px;
}

.legal-tagline {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
}

.legal-tagline strong {
    color: var(--color-white);
}

.legal-badges {
    display: flex;
    justify-content: center;
    gap: 48px;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.badge-item svg {
    opacity: 0.9;
}

.badge-item span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== Testimonials ===== */
.testimonials-section {
    padding: 100px 0;
    background: var(--color-background);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    padding: 32px;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border-light);
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary-light);
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 600;
    border-radius: 50%;
}

.author-name {
    display: block;
    font-size: 15px;
    font-weight: 600;
}

.author-company {
    font-size: 13px;
    color: var(--color-text-secondary);
}

/* ===== Final CTA ===== */
.final-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    text-align: center;
}

.cta-content h2 {
    color: var(--color-white);
    margin-bottom: 16px;
}

.cta-content > p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 500px;
    margin: 0 auto 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 28px;
    background: var(--color-white);
    color: var(--color-text);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.store-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.store-text {
    text-align: left;
}

.store-label {
    display: block;
    font-size: 11px;
    color: var(--color-text-secondary);
}

.store-name {
    font-size: 16px;
    font-weight: 600;
}

.cta-note {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== Footer ===== */
.footer {
    padding: 64px 0 32px;
    background: var(--color-white);
    border-top: 1px solid var(--color-border-light);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 64px;
    margin-bottom: 48px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--color-text-secondary);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-column a {
    display: block;
    font-size: 14px;
    color: var(--color-text-secondary);
    padding: 6px 0;
    transition: color var(--transition-fast);
}

.footer-column a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--color-border-light);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--color-text-light);
}

/* ===== Sticky CTA ===== */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 24px;
    background: var(--color-white);
    border-top: 1px solid var(--color-border);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 900;
}

.sticky-cta .btn {
    width: 100%;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .hero-text h1 {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-proof {
        justify-content: center;
    }

    .hero-image {
        order: -1;
    }

    .floating-card {
        display: none;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .feature-block {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .feature-block.reverse {
        direction: ltr;
    }

    .feature-content {
        text-align: center;
    }

    .feature-list li {
        justify-content: center;
    }

    .legal-content {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .legal-list li {
        justify-content: center;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .phone-mockup {
        width: 240px;
        height: 500px;
    }

    .steps-grid {
        gap: 24px;
    }

    .feature-block {
        margin-bottom: 80px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .store-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .sticky-cta {
        display: block;
    }

    .final-cta {
        padding-bottom: 180px;
    }

    .legal-badges {
        flex-direction: column;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .hero-proof {
        flex-direction: column;
        gap: 12px;
    }

    .trust-industries {
        display: none;
    }

    .problem-list li {
        font-size: 14px;
    }
}

/* ===== Animations ===== */
@media (prefers-reduced-motion: no-preference) {
    .step-card,
    .testimonial-card,
    .feature-block {
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.6s ease forwards;
    }

    .step-card:nth-child(1) { animation-delay: 0.1s; }
    .step-card:nth-child(2) { animation-delay: 0.2s; }
    .step-card:nth-child(3) { animation-delay: 0.3s; }

    .testimonial-card:nth-child(1) { animation-delay: 0.1s; }
    .testimonial-card:nth-child(2) { animation-delay: 0.2s; }
    .testimonial-card:nth-child(3) { animation-delay: 0.3s; }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
