* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #007AFF;
    --primary-blue-dark: #0056CC;
    --secondary-blue: #5AC8FA;
    --text-primary: #1D1D1F;
    --text-secondary: #86868B;
    --text-tertiary: #6E6E73;
    --background-primary: #FFFFFF;
    --background-secondary: #F5F5F7;
    --background-tertiary: #FAFAFA;
    --border-light: #E5E5E7;
    --success-green: #30D158;
    --warning-orange: #FF9500;
    --error-red: #FF3B30;
    --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-heavy: 0 16px 40px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background-primary);
    overflow-x: hidden;
}

.skip-link {
    position: absolute;
    left: 50%;
    top: -100px;
    transform: translateX(-50%);
    padding: 12px 20px;
    background: var(--primary-blue);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    z-index: 2000;
    font-weight: 600;
    box-shadow: var(--shadow-light);
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 16px;
    outline: 2px solid #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-header {
    position: relative;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.15);
    border-bottom: 3px solid var(--primary-blue);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-blue);
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 122, 255, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    position: relative;
    display: inline-block;
}

.logo-text::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
    transition: width 0.3s ease;
}

.logo:hover .logo-text::after {
    width: 100%;
}

.logo-mark {
    height: 42px;
    width: auto;
    display: block;
    object-fit: contain;
}

.logo--brand .logo-mark {
    filter: drop-shadow(0 6px 16px rgba(0, 122, 255, 0.22));
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 16px;
    position: relative;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-blue);
    transform: translateY(-1px);
}

.nav-links a:hover::before {
    width: 100%;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
    color: white;
    padding: 16px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 122, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse-glow 2s infinite;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 122, 255, 0.4);
}

.cta-button:hover::before {
    left: 100%;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 6px 20px rgba(0, 122, 255, 0.4);
    }

    50% {
        box-shadow: 0 6px 25px rgba(0, 122, 255, 0.6);
    }
}

/* Mobile Navigation */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(0, 122, 255, 0.1);
}

.hamburger {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-light);
    padding: 20px;
}

.mobile-nav.active {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 18px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.mobile-nav-links a:hover {
    color: var(--primary-blue);
    padding-left: 10px;
}

.mobile-cta {
    margin-top: 20px;
    text-align: center;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, var(--background-primary) 0%, var(--background-secondary) 100%);
}

.hero h1 {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero .tagline {
    font-size: clamp(20px, 4vw, 28px);
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-weight: 400;
}

.hero .value-prop {
    font-size: 18px;
    color: var(--text-tertiary);
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.btn-primary {
    background: var(--primary-blue);
    color: white;
    padding: 16px 32px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-blue);
    padding: 16px 32px;
    border: 2px solid var(--primary-blue);
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-3px);
}

/* Company Logos */
.company-logos {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
    margin-top: 20px;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    max-width: 140px;
    height: 60px;
    padding: 8px;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
}

.logo-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
    border-color: var(--primary-blue);
}

.company-logo {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.7);
    transition: all 0.3s ease;
    display: block;
}

.logo-item:hover .company-logo {
    filter: grayscale(0%) brightness(1);
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--background-primary);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(36px, 6vw, 48px);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 24px;
}

.feature-title {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Enhanced Features Section Overrides */
.features {
    position: relative;
    padding: 140px 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(0, 122, 255, 0.08), transparent 55%),
        radial-gradient(circle at 75% -5%, rgba(90, 200, 250, 0.12), transparent 60%),
        var(--background-primary);
    overflow: hidden;
}

.features::before,
.features::after {
    content: '';
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.55;
    z-index: 0;
    pointer-events: none;
    animation: featureGlow 16s ease-in-out infinite;
}

.features::before {
    background: rgba(0, 122, 255, 0.35);
    top: -200px;
    left: -160px;
}

.features::after {
    background: rgba(90, 200, 250, 0.35);
    bottom: -240px;
    right: -120px;
    animation-delay: -4s;
}

.features .container {
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 80px;
    position: relative;
}

.feature-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 42px 36px;
    border-radius: 26px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(246, 249, 255, 0.88));
    border: 1px solid rgba(0, 122, 255, 0.12);
    box-shadow: 0 30px 55px -30px rgba(15, 23, 42, 0.45);
    transition: transform 0.55s ease, box-shadow 0.55s ease, border-color 0.55s ease;
    overflow: hidden;
    z-index: 0;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.35), rgba(0, 122, 255, 0.18) 45%, rgba(90, 200, 250, 0.12) 100%);
    opacity: 0;
    transform: translate3d(-20%, -15%, 0);
    transition: opacity 0.6s ease, transform 0.6s ease;
    z-index: 0;
}

.feature-card:hover {
    transform: translateY(-18px) scale(1.01);
    box-shadow: 0 40px 70px -35px rgba(15, 23, 42, 0.55);
    border-color: rgba(0, 122, 255, 0.28);
}

.feature-card:hover::before {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.feature-card>* {
    position: relative;
    z-index: 1;
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    margin-bottom: 12px;
    font-size: 26px;
    color: var(--primary-blue-dark);
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.18), rgba(90, 200, 250, 0.32));
    background-size: 200% 200%;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28), 0 12px 24px rgba(0, 122, 255, 0.18);
    animation: iconGradient 6s ease-in-out infinite;
}

.feature-card:hover .feature-icon {
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35), 0 18px 32px rgba(0, 122, 255, 0.26);
}

.feature-title {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
    letter-spacing: 0.01em;
}

.feature-description {
    color: rgba(29, 29, 31, 0.72);
    font-size: 17px;
    line-height: 1.65;
}

.features-grid .feature-card.scroll-fade-in {
    transition: none;
}

.features-grid .feature-card.scroll-fade-in.visible {
    animation: featureReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: var(--card-delay, 0s);
}

@keyframes featureReveal {
    0% {
        opacity: 0;
        transform: translate3d(0, 40px, 0) scale(0.96);
    }

    60% {
        opacity: 1;
        transform: translate3d(0, -6px, 0) scale(1.01);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

@keyframes featureGlow {

    0%,
    100% {
        transform: scale(1) translate3d(0, 0, 0);
    }

    50% {
        transform: scale(1.08) translate3d(20px, -10px, 0);
    }
}

@keyframes iconGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@media (prefers-reduced-motion: reduce) {

    .features::before,
    .features::after,
    .features-grid .feature-card.scroll-fade-in.visible,
    .feature-icon {
        animation: none !important;
    }

    .feature-card {
        transition: none;
    }

    .feature-card:hover {
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .features {
        padding: 110px 0;
    }

    .features-grid {
        margin-top: 60px;
        gap: 24px;
    }

    .feature-card {
        padding: 32px 24px;
    }
}

/* Problems Section */
.problems {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--background-secondary) 0%, var(--background-tertiary) 100%);
}

.time-savings-hero {
    display: flex;
    justify-content: center;
    margin: 60px 0 80px;
}

.time-savings-card {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: white;
    padding: 48px 40px;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow-heavy);
    max-width: 500px;
    position: relative;
    overflow: hidden;
}

.time-savings-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.time-icon {
    font-size: 48px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.time-title {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.time-description {
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 40px;
}

.problem-item.modern {
    background: rgba(255, 255, 255, 0.9);
    padding: 28px 24px;
    border-radius: 24px;
    box-shadow: 0 32px 80px -50px rgba(15, 23, 42, 0.55);
    border: 1px solid rgba(148, 163, 184, 0.3);
    position: relative;
    overflow: hidden;
    transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.55s ease, border-color 0.55s ease;
}

.problem-item.modern::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.72), rgba(37, 99, 235, 0.42), rgba(90, 200, 250, 0.48));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.45s ease, filter 0.45s ease;
}

.problem-item.modern::after {
    content: '';
    position: absolute;
    inset: 16px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(224, 240, 255, 0.26) 100%);
    opacity: 0;
    transition: opacity 0.45s ease, transform 0.45s ease;
    pointer-events: none;
}

.problem-item.modern:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow: 0 40px 120px -60px rgba(15, 23, 42, 0.6);
    border-color: transparent;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 248, 255, 0.82) 100%);
}

.problem-item.modern:hover::before {
    opacity: 1;
    filter: drop-shadow(0 12px 28px rgba(37, 99, 235, 0.38));
}

.problem-item.modern:hover::after {
    opacity: 1;
    transform: translateY(-2px);
}

.problem-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.problem-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.problem-title {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    font-size: 16px;
    line-height: 1.3;
}

.problem-description {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Enhanced Time Savings Section */
.problems {
    position: relative;
    padding: 160px 0 140px;
    background:
        radial-gradient(circle at 15% 15%, rgba(0, 122, 255, 0.16), transparent 55%),
        radial-gradient(circle at 85% 20%, rgba(99, 102, 241, 0.18), transparent 60%),
        linear-gradient(180deg, rgba(246, 249, 255, 0.95) 0%, rgba(246, 249, 255, 0.55) 40%, var(--background-secondary) 100%);
    overflow: hidden;
}

.problems::before,
.problems::after {
    content: '';
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.5;
    pointer-events: none;
    animation: problemGlow 18s ease-in-out infinite;
}

.problems::before {
    background: rgba(0, 122, 255, 0.38);
    top: -150px;
    left: -220px;
}

.problems::after {
    background: rgba(16, 185, 129, 0.28);
    bottom: -220px;
    right: -160px;
    animation-delay: -6s;
}

.problems .container {
    position: relative;
    z-index: 1;
}

.time-savings-hero {
    display: flex;
    justify-content: center;
    margin: 70px 0 90px;
    position: relative;
    perspective: 1400px;
}

.time-savings-card {
    background: linear-gradient(135deg, #005CFF 0%, #2563EB 45%, #1E40AF 100%);
    color: #FFFFFF;
    padding: 56px;
    border-radius: 32px;
    text-align: left;
    box-shadow: 0 48px 120px -45px rgba(15, 23, 42, 0.55);
    max-width: 760px;
    width: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.22);
    transform: translateY(0);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease;
}

.time-savings-card::before {
    content: '';
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.32), transparent 55%);
    opacity: 0.65;
    animation: heroHalo 14s ease-in-out infinite;
}

.time-savings-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 55%);
    mix-blend-mode: screen;
    opacity: 0.8;
    pointer-events: none;
}

.time-savings-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 60px 140px -50px rgba(15, 23, 42, 0.6);
}

.time-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.35);
    font-size: 32px;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.time-tagline {
    color: rgba(255, 255, 255, 0.78);
    text-transform: uppercase;
    letter-spacing: 0.24em;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
}

.time-title {
    font-size: clamp(32px, 4vw, 42px);
    margin-bottom: 14px;
    z-index: 1;
}

.time-description {
    font-size: 17px;
    max-width: 540px;
    color: rgba(255, 255, 255, 0.88);
}

.time-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 36px;
    position: relative;
    z-index: 1;
}

.time-metric {
    padding: 18px 16px;
    background: rgba(15, 23, 42, 0.25);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
}

.metric-value {
    display: block;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 4px;
}

.metric-label {
    font-size: 14px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.74);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 24px;
    margin-top: 56px;
}

.problem-item.modern {
    background: rgba(255, 255, 255, 0.88);
    padding: 28px 24px;
    border-radius: 24px;
    box-shadow: 0 32px 80px -50px rgba(15, 23, 42, 0.55);
    border: 1px solid rgba(148, 163, 184, 0.3);
    position: relative;
    overflow: hidden;
    transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.55s ease, border-color 0.55s ease;
}

.problem-item.modern::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.5), rgba(90, 200, 250, 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.45s ease;
}

.problem-item.modern::after {
    content: '';
    position: absolute;
    inset: 16px;
    border-radius: 20px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.08) 55%, rgba(37, 99, 235, 0.18) 100%);
    opacity: 0;
    transition: opacity 0.45s ease;
    pointer-events: none;
}

.problem-item.modern:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow: 0 40px 120px -60px rgba(15, 23, 42, 0.6);
    border-color: rgba(0, 122, 255, 0.35);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 248, 255, 0.82) 100%);
}

.problem-item.modern:hover::before,
.problem-item.modern:hover::after {
    opacity: 1;
}

.problem-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.problem-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.18), rgba(90, 200, 250, 0.3));
    color: var(--primary-blue);
    font-size: 22px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.65);
}

.problem-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
}

.problem-description {
    color: rgba(15, 23, 42, 0.65);
    line-height: 1.65;
}

@keyframes heroHalo {

    0%,
    100% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(8deg) scale(1.08);
    }
}

@keyframes problemGlow {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.12);
        opacity: 0.8;
    }
}

@media (max-width: 1024px) {
    .time-savings-card {
        padding: 48px 42px;
    }

    .time-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .time-savings-card {
        padding: 40px 28px;
        border-radius: 26px;
    }

    .time-metrics {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 640px) {
    .problems {
        padding: 120px 0 100px;
    }

    .problem-item.modern {
        padding: 24px 20px;
    }

    .problem-icon {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .problems::before,
    .problems::after,
    .time-savings-card::before {
        animation: none !important;
    }

    .time-savings-card {
        transition: none;
    }

    .time-savings-card:hover {
        transform: translateY(0);
    }
}

/* Platform Coverage */
.platforms {
    padding: 100px 0;
    background: var(--background-primary);
}

.platforms-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    margin-top: 60px;
    flex-wrap: nowrap;
}

.platform-card.modern {
    background: white;
    padding: 24px 16px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    flex: 1;
    max-width: 200px;
    position: relative;
    overflow: hidden;
}

.platform-card.modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
}

.platform-card.modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-blue);
}

.platform-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    margin-bottom: 16px;
    padding: 8px;
}

.platform-logo {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.7);
    transition: all 0.3s ease;
}

.platform-card.modern:hover .platform-logo {
    filter: grayscale(0%) brightness(1);
}

.platform-name {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-size: 16px;
}

.platform-description {
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.4;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: var(--background-secondary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.pricing-card {
    background: white;
    padding: 40px 32px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    position: relative;
}

.pricing-card.featured {
    border: 2px solid var(--primary-blue);
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-blue);
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-title {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.pricing-price {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.pricing-period {
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 8px 0;
    color: var(--text-secondary);
}

.pricing-features li:before {
    content: "✓";
    color: var(--success-green);
    font-weight: bold;
    margin-right: 12px;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: white;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.cta-text {
    text-align: left;
    padding-top: 40px;
}

.cta-title {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(36px, 6vw, 48px);
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.cta-description {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-blue);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.8;
    font-weight: 500;
}

/* Contact Form */
.contact-form-container {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-heavy);
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
}

.form-header {
    text-align: center;
    margin-bottom: 32px;
}

.form-header h3 {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-header p {
    color: var(--text-secondary);
    font-size: 16px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
    color: var(--text-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    margin: 8px 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-light);
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked+.checkmark {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
}

.checkbox-label input[type="checkbox"]:checked+.checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
    color: white;
    border: none;
    padding: 18px 32px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
    transform: translateX(4px);
}

.form-disclaimer {
    font-size: 12px;
    color: var(--text-tertiary);
    text-align: center;
    margin-top: 16px;
    line-height: 1.5;
}

.form-disclaimer a {
    color: var(--primary-blue);
    text-decoration: none;
}

.form-disclaimer a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    background: linear-gradient(135deg, var(--text-primary) 0%, #0a0a0a 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.footer-section h3 {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 24px;
    color: white;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 2px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 16px;
    margin-bottom: 20px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    line-height: 1.8;
    font-size: 15px;
    transition: all 0.3s ease;
    display: block;
    margin-bottom: 8px;
    position: relative;
    padding-left: 0;
}

.footer-section a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--primary-blue);
}

.footer-section a:hover {
    color: var(--secondary-blue);
    padding-left: 20px;
    transform: translateX(5px);
}

.footer-section a:hover::before {
    opacity: 1;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 20px;
    display: block;
    text-decoration: none;
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 122, 255, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
}

.footer-bottom p {
    font-size: 14px;
    margin: 0;
}

.footer-highlight {
    color: var(--secondary-blue);
    font-weight: 600;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.scroll-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.scroll-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease-out;
}

.scroll-fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.scroll-fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease-out;
}

.scroll-fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scroll-fade-in-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s ease-out;
}

.scroll-fade-in-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-content {
        padding: 16px 20px;
    }

    .logo {
        font-size: 24px;
        gap: 10px;
    }

    .logo--brand .logo-mark {
        height: 34px;
    }

    .cta-button {
        padding: 12px 20px;
        font-size: 14px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .features-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .platforms-grid {
        flex-wrap: wrap;
        gap: 16px;
    }

    .platform-card.modern {
        flex: 1 1 calc(50% - 8px);
        max-width: none;
        padding: 20px 12px;
    }

    .platform-logo-container {
        height: 50px;
        margin-bottom: 12px;
    }

    .platform-logo {
        max-height: 45px;
    }

    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .time-savings-card {
        padding: 32px 24px;
        margin: 0 20px;
    }

    .time-title {
        font-size: 24px;
    }

    .problem-item.modern {
        padding: 16px 12px;
    }

    .problem-header {
        gap: 8px;
        margin-bottom: 8px;
    }

    .problem-icon {
        font-size: 20px;
    }

    .problem-title {
        font-size: 14px;
    }

    .problem-description {
        font-size: 13px;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }

    .cta-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-text {
        text-align: center;
        padding-top: 20px;
    }

    .cta-stats {
        justify-content: center;
        gap: 30px;
    }

    .contact-form-container {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .logos-grid {
        gap: 12px;
        flex-wrap: nowrap;
    }

    .logo-item {
        flex: 1;
        max-width: 120px;
        height: 50px;
        padding: 6px;
    }

    .company-logo {
        max-height: 40px;
    }
}

@media (max-width: 480px) {
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .logos-grid {
        gap: 8px;
    }

    .logo-item {
        max-width: 100px;
        height: 45px;
        padding: 4px;
    }

    .company-logo {
        max-height: 35px;
    }

    .platforms-grid {
        flex-direction: column;
        gap: 12px;
    }

    .platform-card.modern {
        flex: none;
        max-width: none;
        padding: 16px 12px;
    }

    .platform-logo-container {
        height: 40px;
        margin-bottom: 10px;
    }

    .platform-logo {
        max-height: 35px;
    }

    .cta-stats {
        flex-direction: column;
        gap: 20px;
    }

    .contact-form-container {
        padding: 24px 16px;
    }

    .form-header h3 {
        font-size: 24px;
    }

    .submit-btn {
        padding: 16px 24px;
        font-size: 16px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-brand {
        max-width: none;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Status Badges */
.status-badges {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 40px 0;
}

.status-badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.status-published {
    background: rgba(48, 209, 88, 0.1);
    color: var(--success-green);
}

.status-draft {
    background: rgba(142, 142, 147, 0.1);
    color: var(--text-tertiary);
}

.status-pending {
    background: rgba(255, 149, 0, 0.1);
    color: var(--warning-orange);
}

.status-error {
    background: rgba(255, 59, 48, 0.1);
    color: var(--error-red);
}

/* Custom Icon Images */
.feature-icon-img {
    width: 70%;
    height: 70%;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 122, 255, 0.3));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.feature-card:hover .feature-icon-img {
    transform: scale(1.15);
    filter: drop-shadow(0 4px 12px rgba(0, 122, 255, 0.5));
}