:root {
    --color-primary-deep: #1B2E5E;
    --color-primary-electric: #5B7FC7;
    --color-text-dark: #1B2E5E;
    --color-text-muted: #6B7280;
    --color-bg-light: #F5F7FB;
    --color-surface: #FFFFFF;
    --color-border: #E3E7F0;
    --gradient-primary: linear-gradient(135deg, #5B7FC7 0%, #1B2E5E 100%);
    --shadow-soft: 0 18px 45px rgba(27, 46, 94, 0.1);
    --shadow-card: 0 4px 20px rgba(27, 46, 94, 0.08);
    --shadow-hover: 0 24px 50px rgba(27, 46, 94, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-pill: 100px;
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 40px;
    --spacing-xl: 64px;
    --spacing-xxl: 100px;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease-out;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-dark);
    background-color: var(--color-surface);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-weight: 700;
    line-height: 1.2;
}

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.125rem, 2vw, 1.375rem);
    font-weight: 600;
}

h4 {
    font-size: 1rem;
    font-weight: 600;
}

p {
    margin: 0;
}

a {
    color: var(--color-primary-electric);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-primary-deep);
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-img {
    height: 36px;
    width: auto;
    mix-blend-mode: multiply;
}

.logo-img-footer {
    height: 28px;
}

.logo-icon {
    flex-shrink: 0;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary-deep);
    letter-spacing: -0.01em;
}

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

.nav-links a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-text-dark);
    transition: color var(--transition-fast);
}

.nav-links a:hover {
    color: var(--color-primary-electric);
}

.nav-cta {
    margin-left: 16px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text-dark);
    border-radius: 2px;
    transition: var(--transition-fast);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: var(--font-family);
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 14px rgba(28, 107, 255, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(28, 107, 255, 0.45);
    color: white;
}

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

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

.btn-white {
    background: white;
    color: var(--color-primary-deep);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    color: var(--color-primary-deep);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-primary-electric);
}

.link-arrow svg {
    transition: transform var(--transition-fast);
}

.link-arrow:hover svg {
    transform: translateX(4px);
}

.pill {
    display: inline-block;
    padding: 6px 14px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-primary-electric);
    background: rgba(28, 107, 255, 0.1);
    border-radius: var(--radius-pill);
}

.section {
    padding: 80px 0;
}

.section-light {
    background: var(--color-bg-light);
}

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

.section-intro {
    margin-top: 16px;
    font-size: 1.125rem;
    color: var(--color-text-muted);
}

.pricing-discount-note {
    margin-top: 12px;
    font-size: 0.9375rem;
    color: #9CA3AF;
    text-align: center;
}

.hero-section {
    padding-top: 120px;
    padding-bottom: 60px;
    background: linear-gradient(180deg, #F5F7FB 0%, #FFFFFF 100%);
}

.hero-section.hero-stacked {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-header {
    text-align: center;
    margin-bottom: 40px;
}

.hero-header h1 {
    max-width: 800px;
    margin: 0 auto 20px;
}

.hero-header .hero-subtitle {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-content {
    max-width: 520px;
}

.hero-content .pill {
    margin-bottom: 20px;
}

.hero-content h1 {
    margin-bottom: 20px;
    color: var(--color-text-dark);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-bottom: 28px;
}

.hero-features {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
    width: 100%;
}

.hero-feature-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 20px;
    background: rgba(245, 247, 251, 0.8);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    flex: 1 1 0;
    min-width: 0;
    transition: all var(--transition-fast);
}

.hero-feature-box:hover {
    background: rgba(245, 247, 251, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.hero-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #E8F4FF 0%, #D0E3F7 100%);
    border-radius: 10px;
    color: var(--color-primary-deep);
}

.hero-feature-icon svg {
    width: 20px;
    height: 20px;
}

.hero-feature-title {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-text-dark);
    text-align: center;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 48px;
    margin-bottom: 48px;
    width: 100%;
}

.trust-row {
    padding-top: 32px;
    border-top: 1px solid var(--color-border);
    text-align: center;
}

.trust-text {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-bottom: 16px;
}

.trust-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.trust-logo {
    height: 56px;
    width: auto;
    opacity: 1;
    transition: all var(--transition-fast);
}

.trust-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.trust-logo-placeholder {
    width: 80px;
    height: 32px;
    background: var(--color-bg-light);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
}

.hero-visual-fullwidth {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0 40px;
    overflow: visible;
}

.flow-diagram-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 20px 0;
    max-width: none;
    position: relative;
    transform: scale(1.1);
    transform-origin: center center;
}

.hero-bottom {
    width: 100%;
    text-align: center;
}

.hero-bottom .hero-features {
    justify-content: center;
    max-width: 500px;
    margin: 0 auto 32px;
}

.hero-bottom .hero-cta-group {
    justify-content: center;
}

.hero-bottom .trust-row {
    justify-content: center;
}

.flow-inputs-column,
.flow-outputs-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 2;
}

.flow-lines {
    width: 60px;
    height: 200px;
    flex-shrink: 0;
    overflow: visible;
}

.flow-lines-left {
    margin-right: -5px;
}

.flow-lines-right {
    margin-left: -5px;
}

.flow-input-card,
.flow-output-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: #FFFFFF;
    border: 1px solid var(--color-border);
    border-radius: 50px;
    box-shadow: 
        0 4px 16px rgba(27, 46, 94, 0.08),
        0 1px 4px rgba(0, 0, 0, 0.04);
    transition: all var(--transition-fast);
}

.flow-input-card:hover,
.flow-output-card:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 24px rgba(27, 46, 94, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.06);
}

.flow-card-icons {
    display: flex;
    align-items: center;
    gap: 4px;
}

.icon-circle {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #F0F4F8 0%, #E8ECF0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-deep);
}

.icon-circle-platform {
    width: 28px;
    height: 28px;
    background: #F3F4F6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.platform-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.platform-icon.zoom-icon {
    width: 28px;
    height: 28px;
}

.flow-output-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #E8F4FF 0%, #D0E3F7 100%);
    border-radius: 50%;
    color: var(--color-primary-deep);
}

.flow-card-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-dark);
    white-space: nowrap;
}

.flow-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    position: relative;
    padding-top: 50px;
}

.flow-hub {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.flow-hub-glow {
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: transparent;
    box-shadow: 
        0 0 0 0px rgba(91, 127, 199, 0.5),
        0 0 0 6px rgba(91, 127, 199, 0.25),
        0 0 0 14px rgba(91, 127, 199, 0.12),
        0 0 0 24px rgba(91, 127, 199, 0.06);
    animation: pulseRings 3s ease-in-out infinite;
}

.flow-hub-inner::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: rgba(91, 127, 199, 0.15);
    z-index: -1;
}

@keyframes pulseRings {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.08); opacity: 0.85; }
}

.flow-hub-inner {
    position: relative;
    z-index: 2;
    width: 80px;
    height: 80px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flow-hub-logo {
    width: 50px;
    height: auto;
    filter: drop-shadow(0 8px 24px rgba(91, 127, 199, 0.3)) drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

.flow-transcript-card {
    background: #FFFFFF;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    padding: 14px 16px;
    width: 260px;
    box-shadow: 
        0 8px 32px rgba(27, 46, 94, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.04);
    margin-top: 20px;
}

.transcript-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.transcript-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.transcript-speaker {
    display: flex;
    align-items: center;
    gap: 6px;
}

.speaker-dot {
    width: 8px;
    height: 8px;
    background: #22C55E;
    border-radius: 50%;
    animation: speakerPulse 2s ease-in-out infinite;
}

@keyframes speakerPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.speaker-name {
    font-size: 12px;
    font-weight: 500;
    color: var(--color-text-dark);
}

.speaker-time {
    font-size: 11px;
    color: var(--color-text-muted);
}

.transcript-text {
    font-size: 13px;
    line-height: 1.5;
    color: var(--color-text-dark);
}

.flow-ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--color-primary-electric) 0%, var(--color-primary-deep) 100%);
    border-radius: 100px;
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 
        0 8px 24px rgba(27, 46, 94, 0.25),
        0 2px 8px rgba(91, 127, 199, 0.3);
}

.voice-bars {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 16px;
}

.voice-bar {
    width: 3px;
    background: #FFFFFF;
    border-radius: 2px;
    animation: voiceWave 1s ease-in-out infinite;
}

.voice-bar:nth-child(1) {
    height: 8px;
    animation-delay: 0s;
}

.voice-bar:nth-child(2) {
    height: 14px;
    animation-delay: 0.15s;
}

.voice-bar:nth-child(3) {
    height: 10px;
    animation-delay: 0.3s;
}

.voice-bar:nth-child(4) {
    height: 6px;
    animation-delay: 0.45s;
}

@keyframes voiceWave {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.5); }
}

.mobile-card-title {
    font-size: 11px;
    font-weight: 700;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 8px 0;
}

.mobile-card-body {
    font-size: 12px;
    color: #374151;
    line-height: 1.5;
    margin: 0;
}

.mobile-card-list {
    margin: 0;
    padding: 0 0 0 16px;
    list-style: disc;
}

.mobile-card-list li {
    font-size: 12px;
    color: #374151;
    line-height: 1.5;
    margin-bottom: 4px;
}

.mobile-card-list li:last-child {
    margin-bottom: 0;
}

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

.mobile-action-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #374151;
    line-height: 1.5;
    margin-bottom: 6px;
}

.mobile-action-list li:last-child {
    margin-bottom: 0;
}

.action-check {
    width: 16px;
    height: 16px;
    background: #22C55E;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    flex-shrink: 0;
}

.action-pending {
    width: 16px;
    height: 16px;
    border: 2px solid #D1D5DB;
    border-radius: 50%;
    flex-shrink: 0;
}

.mobile-sync-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: #ECFDF5;
    border-radius: 8px;
    color: #059669;
    font-size: 11px;
    font-weight: 500;
}

.mobile-sync-badge svg {
    flex-shrink: 0;
}

.app-header-right {
    color: #6B7280;
}

.app-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 24px;
    border-bottom: 1px solid #EDE8E4;
}

.meta-line {
    font-size: 0.75rem;
    color: #6B7280;
}

.app-content {
    padding: 16px 20px;
}

.app-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.summary-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 14px 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.card-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: #1A1A1A;
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.card-body {
    font-size: 0.75rem;
    color: #374151;
    line-height: 1.5;
    margin: 0;
}

.card-list {
    margin: 0;
    padding: 0 0 0 16px;
    list-style: disc;
}

.card-list li {
    font-size: 0.75rem;
    color: #374151;
    line-height: 1.5;
    margin-bottom: 4px;
}

.card-list li:last-child {
    margin-bottom: 0;
}

.card-list-numbered {
    list-style: decimal;
}

.crm-sync-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 0 0;
    color: #9CA3AF;
    font-size: 0.6875rem;
}

.crm-sync-footer svg {
    color: #22C55E;
    flex-shrink: 0;
}

.summary-section {
    margin-bottom: 16px;
}

.summary-section:last-child {
    margin-bottom: 0;
}

.summary-heading {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1A1A1A;
    margin: 0 0 10px 0;
}

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

.summary-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 0.8125rem;
    line-height: 1.5;
    color: #374151;
}

.summary-list li:last-child {
    margin-bottom: 0;
}

.summary-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: #1A1A1A;
    border-radius: 50%;
}

.summary-list li strong {
    font-weight: 600;
    color: #1A1A1A;
}

.action-list li::before {
    background: var(--color-primary-electric);
}

.tier-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tier-tab {
    padding: 16px 32px;
    min-width: 140px;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text-muted);
    background: transparent;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
    text-align: center;
}

.tier-tab:hover {
    color: var(--color-primary-electric);
    border-color: var(--color-primary-electric);
    background: rgba(28, 107, 255, 0.04);
}

.tier-tab.active {
    color: var(--color-primary-electric);
    background: rgba(28, 107, 255, 0.1);
    border-color: transparent;
    font-weight: 600;
}

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

.feature-card {
    padding: 32px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    transition: all var(--transition-normal);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
    background: rgba(28, 107, 255, 0.1);
    border-radius: 50%;
    color: var(--color-primary-electric);
}

.feature-card h3 {
    margin-bottom: 12px;
    text-align: center;
}

.feature-card p {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
    text-align: center;
}

.process-flow {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 48px;
}

.process-step {
    flex: 1;
    max-width: 360px;
    display: flex;
    align-items: stretch;
}

.step-card {
    position: relative;
    background: #FFFFFF;
    border-radius: 20px;
    padding: 56px 28px 36px;
    text-align: center;
    box-shadow: 
        0 15px 40px rgba(27, 46, 94, 0.1),
        0 6px 16px rgba(0, 0, 0, 0.06);
    transition: all var(--transition-normal);
    width: 100%;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 20px 50px rgba(27, 46, 94, 0.15),
        0 8px 20px rgba(0, 0, 0, 0.08);
}

.step-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 1rem;
    font-weight: 700;
    color: #FFFFFF;
    background: var(--color-primary-electric);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(28, 107, 255, 0.3);
}

.step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #E8F4FF 0%, #D0E3F7 100%);
    border-radius: 50%;
    color: var(--color-primary-deep);
    box-shadow: 
        0 0 0 10px rgba(91, 127, 199, 0.08),
        0 4px 16px rgba(27, 46, 94, 0.12);
}

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

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

.step-card p {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.process-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-primary-electric);
    opacity: 0.5;
}

.process-arrow svg {
    width: 32px;
    height: 32px;
}

/* 5-Step Process Flow */
.section-subtext {
    max-width: 700px;
    margin: 0 auto;
    color: var(--color-text-muted);
    font-size: 1.125rem;
    line-height: 1.6;
    text-align: center;
}

.process-flow-5 {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 16px;
    padding-top: 20px;
}

.process-step-5 {
    flex: 1;
    max-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tier-badge-wrapper {
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.tier-badge {
    display: inline-block;
    padding: 10px 28px;
    font-size: 1rem;
    font-weight: 600;
    color: #FFFFFF;
    background: linear-gradient(135deg, #1C6BFF 0%, #003B82 100%);
    border-radius: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tier-badge-hidden {
    visibility: hidden;
}

.tier-badge-ultimate,
.tier-badge-pro {
    background: var(--color-primary-electric);
}

.step-card-5 {
    width: 100%;
    background: #FFFFFF;
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    box-shadow: 
        0 4px 20px rgba(27, 46, 94, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(227, 231, 240, 0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 220px;
}

.step-card-5:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 12px 32px rgba(27, 46, 94, 0.12),
        0 4px 12px rgba(0, 0, 0, 0.06);
}

.step-icon-5 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, #E8F4FF 0%, #D0E3F7 100%);
    border-radius: 50%;
    color: var(--color-primary-deep);
    box-shadow: 
        0 0 0 8px rgba(91, 127, 199, 0.06),
        0 4px 12px rgba(27, 46, 94, 0.1);
}

.step-icon-5 svg {
    width: 24px;
    height: 24px;
}

.step-card-5 h3 {
    margin-bottom: 10px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-dark);
    line-height: 1.3;
}

.step-card-5 p {
    color: var(--color-text-muted);
    font-size: 0.875rem;
    line-height: 1.55;
    flex-grow: 1;
}

.process-arrow-5 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-primary-electric);
    opacity: 0.4;
    padding-top: 100px;
}

.process-arrow-5 svg {
    width: 24px;
    height: 24px;
}

/* How It Works Section */
.section-how-it-works {
    background: var(--color-bg-soft);
}

.hiw-flow {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 20px;
    padding-top: 16px;
}

.hiw-step {
    flex: 1;
    max-width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hiw-badge-area {
    height: 28px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 8px;
}

.hiw-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    height: 22px;
    min-width: 60px;
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: white;
    background: var(--gradient-primary);
    border-radius: var(--radius-pill);
    white-space: nowrap;
    box-sizing: border-box;
}

.hiw-badge-row {
    display: flex;
    gap: 5px;
    justify-content: center;
}

.hiw-card {
    width: 100%;
    height: 300px;
    background: #FFFFFF;
    border-radius: 20px;
    padding: 32px 24px 28px;
    text-align: center;
    box-shadow: 
        0 4px 20px rgba(27, 46, 94, 0.06),
        0 1px 3px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--color-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}

.hiw-card:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 10px 28px rgba(27, 46, 94, 0.1),
        0 4px 10px rgba(0, 0, 0, 0.05);
}

.hiw-icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;
    max-width: 56px;
    max-height: 56px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #EBF4FF 0%, #DBEAFE 100%);
    border-radius: 50%;
    flex-shrink: 0;
}

.hiw-icon-container svg {
    width: 24px;
    height: 24px;
    max-width: 24px;
    max-height: 24px;
    flex-shrink: 0;
}

.hiw-card h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-dark);
    line-height: 1.3;
}

.hiw-card p {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
    line-height: 1.55;
    margin: 0;
}

.hiw-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hiw-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    align-self: center;
    height: 200px;
}

.hiw-arrow svg {
    width: 22px;
    height: 22px;
    stroke: #B4C6E7;
}

.crm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.benefit-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.benefit-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(28, 107, 255, 0.1);
    border-radius: 50%;
    color: var(--color-primary-electric);
}

.benefit-item h4 {
    margin-bottom: 6px;
}

.benefit-item p {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
}

.muted-note {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
    font-size: 0.875rem;
    color: var(--color-text-muted);
    font-style: italic;
}

#crm-sync {
    padding: 48px 0 16px;
}

#crm-sync .section-header {
    margin-bottom: 32px;
}

#crm-sync .crm-grid {
    align-items: flex-start;
}

.crm-visual {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.crm-image-wrapper {
    position: relative;
    display: inline-block;
    max-width: 520px;
}

.crm-image-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(ellipse at center, rgba(123, 163, 212, 0.3) 0%, rgba(168, 197, 232, 0.15) 40%, transparent 70%);
    filter: blur(40px);
    z-index: -1;
}

.crm-image {
    max-width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
}

.section-pricing {
    background: #FFFFFF;
}

.billing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin-bottom: 16px;
    background: #F1F5F9;
    border-radius: var(--radius-pill);
    padding: 4px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.toggle-option {
    padding: 10px 24px;
    font-size: 0.9375rem;
    font-weight: 500;
    border: none;
    background: transparent;
    color: var(--color-text-muted);
    cursor: pointer;
    border-radius: var(--radius-pill);
    transition: all 0.25s ease;
}

.toggle-option.active {
    background: var(--color-primary-electric);
    color: white;
    box-shadow: 0 2px 8px rgba(28, 107, 255, 0.25);
}

.toggle-option:hover:not(.active) {
    color: var(--color-text-dark);
}

.discount-banner {
    text-align: center;
    font-size: 0.9375rem;
    font-weight: 500;
    margin-bottom: 32px;
    height: 24px;
}

.monthly-banner {
    display: block;
    color: var(--color-primary-electric);
}

.annual-banner {
    display: none;
    color: #DC2626;
}

body.is-annual .monthly-banner {
    display: none;
}

body.is-annual .annual-banner {
    display: block;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

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

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 32px 24px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(27, 46, 94, 0.08);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    height: 480px;
    box-sizing: border-box;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(27, 46, 94, 0.08);
}

.pricing-card-featured {
    border: 2px solid var(--color-primary-electric);
    box-shadow: 0 4px 20px rgba(27, 46, 94, 0.08);
    background: #FFFFFF;
}

.pricing-card-featured:hover {
    box-shadow: 0 8px 28px rgba(27, 46, 94, 0.08);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 12px;
    font-size: 0.6875rem;
    font-weight: 600;
    color: white;
    background: var(--color-primary-electric);
    border-radius: var(--radius-pill);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.pricing-header {
    margin-bottom: 16px;
    text-align: center;
    height: 50px;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.plan-subtitle {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    white-space: nowrap;
}

.pricing-amount {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-bottom: 16px;
    height: 100px;
}

.original-price {
    font-size: 0.9375rem;
    color: #9CA3AF;
    text-decoration: line-through;
    height: 20px;
}

.original-price-hidden {
    visibility: hidden;
}

.price-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.current-price {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-text-dark);
}

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

.billing-note {
    font-size: 0.8125rem;
    color: #9CA3AF;
    height: 20px;
}

.pricing-amount-enterprise {
    height: 100px;
    justify-content: center;
}

.pricing-amount-enterprise .current-price,
.pricing-amount-enterprise .price-period {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
}

.price-row-stacked {
    flex-direction: column;
    align-items: center;
    gap: 0;
    line-height: 1.1;
}

.pricing-card .btn {
    margin-bottom: 20px;
}

.feature-list {
    flex: 1;
    margin-bottom: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.875rem;
    color: var(--color-text-dark);
    line-height: 1.5;
}

.check-icon {
    flex-shrink: 0;
    color: var(--color-primary-electric);
    margin-top: 2px;
}

.section-social-proof {
    background: linear-gradient(135deg, #f0f4ff 0%, #e8eeff 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.benefit-cards-panel {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 40px;
}

.benefit-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #FFFFFF;
    border-radius: 16px;
    padding: 32px 24px;
    flex: 1;
    max-width: 280px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f4ff;
    border-radius: 12px;
    margin-bottom: 16px;
    color: var(--color-primary-electric);
}

.benefit-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 6px;
}

.benefit-subtext {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin: 0;
}

.trust-bottom-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #FFFFFF;
    border-radius: 20px;
    padding: 40px 48px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.trust-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.trust-headline {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin: 0 0 12px 0;
}

.star-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 8px;
}

.trust-reviews {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin: 0;
}

.trust-right {
    display: flex;
    gap: 32px;
    align-items: center;
}

.compliance-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.compliance-badge svg {
    width: 64px;
    height: 64px;
}

.compliance-logo {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.compliance-badge-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: #6B7280;
    text-align: center;
}

.sp-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 130px;
    height: 160px;
    background: #FFFFFF;
    border: 1px solid #e5dfd0;
    border-radius: 16px;
    padding: 12px 8px 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.sp-badge-header {
    font-size: 8px;
    font-weight: 600;
    color: #5a5a6e;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 4px;
}

.sp-badge-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    background: #1C6BFF;
    color: white;
    font-size: 9px;
    font-weight: 700;
    border-radius: 3px;
}

.sp-badge-year {
    font-size: 11px;
    font-weight: 500;
    color: #888;
    margin-bottom: 6px;
}

.sp-badge-rank {
    font-size: 26px;
    font-weight: 700;
    color: #1C6BFF;
    line-height: 1;
    margin-bottom: 8px;
}

.sp-badge-category {
    font-size: 8px;
    font-weight: 600;
    color: #5a5a6e;
    letter-spacing: 0.3px;
    line-height: 1.3;
    text-transform: uppercase;
}

.section-security {
    background: #F8F6F3;
    padding: 80px 0;
}

.security-header {
    margin-bottom: 48px;
    text-align: center;
}

.security-header h2 {
    font-size: 2rem;
    font-weight: 400;
    color: var(--color-text-dark);
    line-height: 1.3;
    white-space: nowrap;
}

.compliance-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.compliance-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.compliance-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.badge-card {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-card svg {
    width: 100%;
    height: 100%;
}

.badge-label {
    font-size: 10px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

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

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

.cta-content h2 {
    color: white;
    margin-bottom: 16px;
}

.cta-content > p:first-of-type {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
}

.cta-subtext {
    margin-top: 20px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.site-footer {
    padding: 48px 0;
    background: var(--color-bg-light);
    border-top: 1px solid var(--color-border);
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.footer-brand .logo-text {
    font-size: 1rem;
}

.footer-nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.footer-nav a {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.footer-nav a:hover {
    color: var(--color-primary-electric);
}

.copyright {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    box-shadow: var(--shadow-card);
    color: var(--color-primary-electric);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-normal);
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--color-primary-electric);
    color: white;
    border-color: var(--color-primary-electric);
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in.stagger-1 {
    transition-delay: 0s;
}

.fade-in.stagger-2 {
    transition-delay: 0.2s;
}

.fade-in.stagger-3 {
    transition-delay: 0.4s;
}

.fade-in.stagger-4 {
    transition-delay: 0.6s;
}

.fade-in.stagger-5 {
    transition-delay: 0.8s;
}


@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-features {
        justify-content: center;
    }

    .trust-row {
        text-align: center;
    }

    .trust-logos {
        justify-content: center;
    }

    .flow-diagram-wrapper {
        transform: scale(0.85);
        transform-origin: center center;
        gap: 0;
    }

    .flow-transcript-card {
        width: 100%;
        max-width: 280px;
    }

    .crm-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .sp-top-strip {
        padding: 36px 40px;
        gap: 32px;
    }

    .sp-bottom-card {
        flex-direction: column;
        gap: 32px;
        padding: 36px 40px;
        align-items: flex-start;
    }

    .sp-card-left {
        max-width: 100%;
    }

    .sp-card-right {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .sp-headline {
        font-size: 28px;
    }

    .compliance-badges {
        gap: 16px;
    }

    .badge-card {
        width: 85px;
        height: 85px;
    }

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

    /* 5-Step Process Tablet */
    .process-flow-5 {
        gap: 10px;
    }

    .step-card-5 {
        padding: 20px 14px;
        min-height: 200px;
    }

    .step-card-5 h3 {
        font-size: 0.9rem;
    }

    .step-card-5 p {
        font-size: 0.8rem;
    }

    .process-arrow-5 {
        padding-top: 80px;
    }

    .process-arrow-5 svg {
        width: 20px;
        height: 20px;
    }

    /* How It Works Tablet */
    .hiw-flow {
        flex-wrap: wrap;
        gap: 32px 24px;
        justify-content: center;
    }

    .hiw-step {
        flex: 0 1 calc(50% - 40px);
        max-width: 280px;
    }

    .hiw-arrow {
        display: none;
    }

    .hiw-card {
        padding: 28px 20px;
        padding-top: 28px;
        border-radius: 24px;
    }

    .hiw-icon-container {
        width: 64px;
        height: 64px;
        min-width: 64px;
        min-height: 64px;
        max-width: 64px;
        max-height: 64px;
        border-radius: 18px;
    }

    .hiw-card h3 {
        font-size: 1rem;
    }

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

    .card-top-left {
        transform: translate(-55%, -15%);
    }

    .card-top-right {
        transform: translate(55%, -15%);
    }

    .card-bottom-left {
        transform: translate(-55%, 15%);
    }

    .card-bottom-right {
        transform: translate(55%, 15%);
    }

    .feature-float-card {
        width: 140px;
    }

    .feature-card-inner {
        padding: 14px;
        height: 150px;
    }

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

    .feature-icon-wrapper svg {
        width: 18px;
        height: 18px;
    }

    .feature-card-title {
        font-size: 13px;
    }

    .live-status-text {
        font-size: 9px;
    }

    .live-status,
    .live-status-placeholder {
        height: 22px;
    }
}

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

    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-links.is-active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        padding: 24px;
        background: var(--color-surface);
        border-bottom: 1px solid var(--color-border);
        box-shadow: var(--shadow-card);
    }

    .nav-links.is-active + .nav-cta {
        display: block;
        position: absolute;
        top: calc(72px + 200px);
        left: 24px;
        right: 24px;
    }

    .hero-section {
        padding-top: 120px;
        overflow-x: hidden;
    }

    .hero-visual {
        overflow: hidden;
        max-width: 100%;
    }

    .flow-diagram-wrapper {
        transform: scale(0.55);
        transform-origin: center center;
        margin: -60px 0;
    }

    .hero-features {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .hero-feature-box {
        padding: 12px 16px;
        min-width: 90px;
        flex: 0 1 auto;
    }

    .hero-feature-icon {
        width: 36px;
        height: 36px;
    }

    .hero-feature-icon svg {
        width: 18px;
        height: 18px;
    }

    .hero-feature-title {
        font-size: 0.75rem;
    }

    .tier-tabs {
        gap: 8px;
        margin-bottom: 24px;
        overflow-x: visible;
        justify-content: center;
        flex-wrap: wrap;
        padding: 4px;
    }

    .tier-tab {
        padding: 10px 18px;
        font-size: 0.85rem;
        flex-shrink: 0;
    }

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

    .process-flow {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .process-step {
        max-width: 100%;
        width: 100%;
    }

    .step-card {
        padding: 48px 20px 32px;
    }

    .process-arrow {
        transform: rotate(90deg);
    }

    .process-arrow svg {
        width: 28px;
        height: 28px;
    }

    /* 5-Step Process Mobile */
    .process-flow-5 {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .process-step-5 {
        max-width: 100%;
        width: 100%;
    }

    .step-card-5 {
        padding: 20px 16px;
        min-height: auto;
    }

    .step-icon-5 {
        width: 48px;
        height: 48px;
    }

    .step-icon-5 svg {
        width: 20px;
        height: 20px;
    }

    .process-arrow-5 {
        padding-top: 0;
        transform: rotate(90deg);
    }

    /* How It Works Mobile */
    .hiw-flow {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hiw-step {
        max-width: 100%;
        width: 100%;
    }

    .hiw-card {
        padding: 16px 14px 14px;
        border-radius: 14px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        height: auto;
        min-height: auto;
    }

    .hiw-card h3 {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }

    .hiw-card p {
        font-size: 0.8rem;
        line-height: 1.45;
        margin: 0;
    }

    .hiw-icon-container {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
        max-width: 44px;
        max-height: 44px;
        border-radius: 50%;
        margin: 0 auto 10px;
        flex-shrink: 0;
    }

    .hiw-icon-container svg {
        width: 20px;
        height: 20px;
        max-width: 20px;
        max-height: 20px;
    }

    .hiw-card-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hiw-arrow {
        display: none;
    }

    .hiw-badge {
        font-size: 0.65rem;
        padding: 5px 14px;
        height: 26px;
        min-width: 70px;
    }

    .hiw-badge-hidden {
        display: none;
    }

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

    .pricing-grid-4 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-card {
        padding: 20px 16px;
        height: auto;
        min-height: auto;
    }

    .pricing-amount {
        height: auto;
        margin-bottom: 12px;
    }

    .feature-list li {
        margin-bottom: 8px;
    }

    .mockup-wrapper {
        flex-direction: column;
        align-items: center;
        overflow: visible;
        margin: 0 auto;
        padding: 20px 40px;
    }

    .iphone-frame {
        width: 240px;
        height: 490px;
        border-radius: 36px;
        padding: 10px;
    }

    .iphone-screen {
        border-radius: 28px;
    }

    .status-notch {
        width: 75px;
        height: 24px;
    }

    .feature-float-card {
        border-radius: 10px;
        padding: 2px;
        width: 80px;
    }

    .card-top-left {
        top: 5%;
        left: -30px;
        transform: none;
    }

    .card-top-right {
        top: 5%;
        right: -30px;
        transform: none;
    }

    .card-bottom-left {
        bottom: 5%;
        left: -30px;
        transform: none;
    }

    .card-bottom-right {
        bottom: 5%;
        right: -30px;
        transform: none;
    }

    .feature-card-inner {
        padding: 8px;
        border-radius: 8px;
        height: 80px;
        text-align: center;
    }

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

    .feature-icon-wrapper svg {
        width: 12px;
        height: 12px;
    }

    .feature-card-title {
        font-size: 9px;
    }

    .live-status {
        gap: 3px;
        display: flex;
    }

    .live-status-text {
        font-size: 7px;
    }

    .live-bars {
        height: 10px;
        gap: 1.5px;
    }

    .live-bar {
        width: 2px;
    }

    .live-bar:nth-child(1) { height: 5px; }
    .live-bar:nth-child(2) { height: 8px; }
    .live-bar:nth-child(3) { height: 6px; }

    .live-status,
    .live-status-placeholder {
        height: 18px;
        display: flex;
    }


    .device-frame {
        max-width: 100%;
        border-radius: 28px;
        padding: 6px;
    }

    .device-notch {
        width: 80px;
        height: 20px;
        top: 10px;
    }

    .mock-app-screen {
        border-radius: 24px;
        min-height: 380px;
    }

    .app-header {
        padding: 40px 18px 14px;
    }

    .app-content {
        padding: 18px;
    }

    .summary-list li {
        font-size: 0.8125rem;
    }

    .benefit-cards-panel {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .benefit-card {
        max-width: 100%;
        width: 100%;
        padding: 24px 20px;
    }

    .trust-bottom-panel {
        flex-direction: column;
        gap: 32px;
        padding: 32px 24px;
        text-align: center;
    }

    .trust-left {
        align-items: center;
    }

    .trust-headline {
        font-size: 1.25rem;
        text-align: center;
    }

    .star-rating {
        justify-content: center;
    }

    .trust-right {
        gap: 20px;
    }

    .compliance-badge svg,
    .compliance-logo {
        width: 48px;
        height: 48px;
    }

    .compliance-badges {
        gap: 12px;
    }

    .badge-card {
        width: 70px;
        height: 70px;
    }

    .badge-label {
        font-size: 9px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
}

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

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1.0625rem;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 16px;
    }

    .btn-large {
        width: 100%;
    }

    .trust-logos {
        flex-wrap: wrap;
        gap: 16px;
    }

    .trust-logo {
        height: 32px;
    }

    .trust-logo-placeholder {
        width: 64px;
        height: 28px;
    }

    .pricing-card {
        padding: 24px;
    }

    .current-price {
        font-size: 2rem;
    }
}
