/* Kenno Business Landing Page */

:root {
    --color-cream: #F4EEE5;
    --color-green-dark: #1a5c3e;
    --color-green-light: #2d8659;
    --color-navy: #1e3a5f;
    --color-navy-dark: #0f2744;
    --color-border: #e0d5c7;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #fafafa;
    color: #1a1a1a;
}

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

/* Navigation */
.business-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.business-nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.business-logo .logo-icon-sloth {
    width: 40px;
    height: 40px;
}

.logo-text-group {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text-group .logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: 0.5px;
}

.logo-text-group .logo-subtext {
    font-size: 11px;
    font-weight: 600;
    color: var(--color-navy);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 2px;
}

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

.business-nav-links-desktop a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
}

.business-nav-links-desktop a:hover {
    color: var(--color-navy);
}

/* Mobile Menu Sidebar */
.mobile-menu-sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    height: 100dvh;
    background: white;
    z-index: 10000;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mobile-menu-sidebar.open {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
    background: white;
}

.mobile-menu-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    color: #666;
    cursor: pointer;
}

.mobile-menu-close:hover {
    background: #eee;
}

.mobile-menu-links {
    flex: 1;
    overflow-y: auto;
    padding: 16px 20px;
}

.mobile-menu-links a {
    display: block;
    padding: 16px 0;
    border-bottom: 1px solid #eee;
    font-size: 16px;
    color: #333;
    text-decoration: none;
}

.mobile-menu-links a:last-child {
    border-bottom: none;
}

.mobile-menu-links a.nav-btn-contact {
    background: var(--color-navy, #1e3a5f);
    color: white !important;
    text-align: center;
    padding: 14px 20px;
    border-radius: 8px;
    margin-top: 20px;
    border-bottom: none;
}

.nav-btn-contact {
    background: var(--color-navy);
    color: white !important;
    padding: 10px 24px;
    border-radius: 8px;
    transition: all 0.3s ease !important;
}

.nav-btn-contact:hover {
    background: var(--color-navy-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.3);
}

/* Hero Section */
.business-hero {
    position: relative;
    padding: 160px 24px 60px;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
}

.hero-shape-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(26, 92, 62, 0.08) 0%, transparent 70%);
    top: -200px;
    left: -100px;
}

.hero-shape-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(30, 58, 95, 0.06) 0%, transparent 70%);
    top: -100px;
    right: -150px;
}

.hero-shape-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(26, 92, 62, 0.05) 0%, transparent 70%);
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
}

/* Floating blurred images */
.hero-float-img {
    position: absolute;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    opacity: 0.35;
    transition: all 0.5s ease;
}

.hero-float-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(2px);
}

.hero-float-img:hover {
    opacity: 0.5;
    transform: scale(1.02);
}

.hero-float-1 {
    width: 180px;
    height: 120px;
    top: 140px;
    left: 5%;
    transform: rotate(-8deg);
    animation: float1 6s ease-in-out infinite;
}

.hero-float-2 {
    width: 160px;
    height: 110px;
    top: 180px;
    right: 8%;
    transform: rotate(6deg);
    animation: float2 7s ease-in-out infinite;
}

.hero-float-3 {
    width: 140px;
    height: 95px;
    bottom: 180px;
    left: 8%;
    transform: rotate(4deg);
    animation: float3 5s ease-in-out infinite;
}

.hero-float-4 {
    width: 150px;
    height: 100px;
    bottom: 160px;
    right: 5%;
    transform: rotate(-5deg);
    animation: float4 6.5s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: rotate(-8deg) translateY(0); }
    50% { transform: rotate(-8deg) translateY(-15px); }
}

@keyframes float2 {
    0%, 100% { transform: rotate(6deg) translateY(0); }
    50% { transform: rotate(6deg) translateY(-12px); }
}

@keyframes float3 {
    0%, 100% { transform: rotate(4deg) translateY(0); }
    50% { transform: rotate(4deg) translateY(-10px); }
}

@keyframes float4 {
    0%, 100% { transform: rotate(-5deg) translateY(0); }
    50% { transform: rotate(-5deg) translateY(-14px); }
}

.business-hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(30, 58, 95, 0.08);
    color: var(--color-navy);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 28px;
    border: 1px solid rgba(30, 58, 95, 0.1);
}

.hero-badge i {
    font-size: 16px;
}

.business-hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.business-hero h1 span {
    background: linear-gradient(135deg, var(--color-green-dark), var(--color-green-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.business-hero-content > p {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-navy);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(30, 58, 95, 0.25);
}

.btn-primary:hover {
    background: var(--color-navy-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 58, 95, 0.35);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: var(--color-navy);
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--color-navy);
    background: rgba(30, 58, 95, 0.03);
    transform: translateY(-3px);
}

/* Stats Bar */
.hero-stats-bar {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 80px;
    padding: 32px 48px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 10;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 16px;
}

.stat-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(26, 92, 62, 0.1), rgba(45, 134, 89, 0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    font-size: 22px;
    color: var(--color-green-dark);
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: #888;
    margin-top: 4px;
}

/* Trusted Section */
.trusted-section {
    padding: 60px 24px;
    background: white;
    text-align: center;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.trusted-section p {
    font-size: 13px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trusted-logo {
    font-size: 20px;
    font-weight: 700;
    color: #ccc;
    font-family: 'Space Grotesk', sans-serif;
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    background: rgba(26, 92, 62, 0.1);
    color: var(--color-green-dark);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

/* Solutions Section */
.solutions-section {
    padding: 100px 24px;
    background: #fafafa;
}

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

.solution-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.solution-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-green-dark), var(--color-green-light));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.solution-icon i {
    font-size: 28px;
    color: white;
}

.solution-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.solution-card > p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.solution-features {
    list-style: none;
}

.solution-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #555;
    padding: 6px 0;
}

.solution-features i {
    color: var(--color-green-dark);
    font-size: 16px;
}

/* Process Section */
.process-section {
    padding: 100px 24px;
    background: white;
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
}

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

.step-number {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--color-navy), var(--color-navy-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
}

.step-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.step-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.process-connector {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-navy), transparent);
    margin-top: -44px;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 24px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

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

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 2px solid #f0f0f0;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

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

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

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-navy);
    color: white;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}

.pricing-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.pricing-header p {
    font-size: 14px;
    color: #888;
    margin-bottom: 24px;
}

.pricing-price {
    margin-bottom: 32px;
}

.pricing-price .price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
}

.pricing-price .period {
    font-size: 14px;
    color: #888;
}

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

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 14px;
    color: #555;
    border-bottom: 1px solid #f5f5f5;
}

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

.pricing-features li i {
    font-size: 18px;
    color: var(--color-green-dark);
}

.pricing-features li.disabled {
    color: #ccc;
}

.pricing-features li.disabled i {
    color: #ddd;
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background: var(--color-navy);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.pricing-btn:hover {
    background: var(--color-navy-dark);
    transform: translateY(-2px);
}

/* Contact Section */
.contact-section {
    padding: 100px 24px;
    background: var(--color-cream);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.contact-info > p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 40px;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-item i {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--color-green-dark);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-item div {
    display: flex;
    flex-direction: column;
}

.contact-item strong {
    font-size: 14px;
    color: #1a1a1a;
}

.contact-item span {
    font-size: 14px;
    color: #666;
}

.contact-form-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 13px;
    color: #1a1a1a;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--color-navy);
    outline: none;
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}

.contact-form textarea {
    resize: none;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--color-green-dark);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--color-green-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 92, 62, 0.3);
}

/* Footer */
.business-footer {
    background: #1a1a1a;
    color: white;
    padding: 48px 24px 24px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo .logo-icon-sloth {
    width: 32px;
    height: 32px;
}

.footer-logo > div {
    display: flex;
    flex-direction: column;
}

.footer-logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.footer-logo-subtext {
    font-size: 9px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 2px;
}

.footer-brand > p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    max-width: 280px;
    line-height: 1.5;
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-green-dark);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-cta-btn:hover {
    background: var(--color-green-light);
    transform: translateY(-2px);
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 0;
}

.footer-nav-group h4 {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.footer-nav-links {
    display: flex;
    gap: 20px;
}

.footer-nav-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav-links a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--color-green-dark);
    color: white;
}

.footer-social a i {
    font-size: 18px;
}

/* Responsive */
@media (max-width: 1024px) {
    .business-hero {
        padding-top: 120px;
    }
    
    .hero-stats-bar {
        gap: 32px;
        padding: 24px 32px;
        flex-wrap: wrap;
    }
    
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--color-navy);
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
}

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

@media (max-width: 768px) {
    /* Hide desktop nav, show mobile toggle */
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .business-nav-links-desktop {
        display: none !important;
    }
    
    /* Navigation */
    .business-nav-content {
        padding: 12px 16px;
    }
    
    .business-logo .logo-icon-sloth {
        width: 32px;
        height: 32px;
    }
    
    .logo-text-group .logo-text {
        font-size: 18px;
    }
    
    .logo-text-group .logo-subtext {
        font-size: 9px;
    }
    
    /* Hero */
    .hero-float-img {
        display: none;
    }
    
    .business-hero {
        padding: 90px 16px 40px;
    }
    
    .business-hero h1 {
        font-size: 1.8rem;
        margin-bottom: 16px;
    }
    
    .business-hero-content > p {
        font-size: 0.95rem;
        margin-bottom: 28px;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 8px 14px;
        margin-bottom: 20px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .btn-primary,
    .btn-secondary {
        justify-content: center;
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .hero-stats-bar {
        flex-direction: column;
        gap: 16px;
        margin-top: 40px;
        padding: 20px;
        border-radius: 16px;
    }
    
    .hero-stat {
        justify-content: flex-start;
        width: 100%;
        gap: 12px;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
    }
    
    .stat-icon i {
        font-size: 18px;
    }
    
    .stat-number {
        font-size: 1.25rem;
    }
    
    /* Trusted */
    .trusted-section {
        padding: 40px 16px;
    }
    
    .trusted-logos {
        gap: 24px;
    }
    
    .trusted-logo {
        font-size: 16px;
    }
    
    /* Sections */
    .solutions-section,
    .process-section,
    .pricing-section,
    .contact-section {
        padding: 60px 16px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .section-header p {
        font-size: 0.95rem;
    }
    
    /* Solutions */
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .solution-card {
        padding: 24px;
    }
    
    .solution-icon {
        width: 48px;
        height: 48px;
    }
    
    .solution-icon i {
        font-size: 22px;
    }
    
    .solution-card h3 {
        font-size: 1.1rem;
    }
    
    /* Process */
    .process-steps {
        flex-direction: column;
        gap: 24px;
    }
    
    .process-step {
        max-width: 100%;
    }
    
    .step-number {
        width: 52px;
        height: 52px;
        font-size: 20px;
        margin-bottom: 16px;
    }
    
    .process-connector {
        width: 2px;
        height: 30px;
        margin: 0;
        background: linear-gradient(180deg, var(--color-navy), transparent);
    }
    
    /* Pricing */
    .pricing-grid {
        max-width: 100%;
    }
    
    .pricing-card {
        padding: 28px 20px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-header h3 {
        font-size: 1.25rem;
    }
    
    .pricing-price .price {
        font-size: 2rem;
    }
    
    /* Contact */
    .contact-wrapper {
        gap: 40px;
    }
    
    .contact-info h2 {
        font-size: 1.5rem;
    }
    
    .contact-form-card {
        padding: 24px 20px;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .business-footer {
        padding: 32px 16px 20px;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding-bottom: 24px;
    }
    
    .footer-brand {
        flex-direction: column;
        gap: 12px;
    }
    
    .footer-brand > p {
        display: none;
    }
    
    .footer-cta-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .footer-nav {
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 24px;
        padding: 24px 0;
    }
    
    .footer-nav-group {
        flex: 1;
        min-width: 100px;
    }
    
    .footer-nav-group h4 {
        font-size: 11px;
        margin-bottom: 10px;
    }
    
    .footer-nav-links {
        flex-direction: column;
        gap: 8px;
    }
    
    .footer-nav-links a {
        font-size: 12px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
        padding-top: 20px;
    }
    
    .footer-social a {
        width: 32px;
        height: 32px;
    }
    
    .footer-social a i {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .business-hero h1 {
        font-size: 1.5rem;
        line-height: 1.25;
    }
    
    .business-hero-content > p {
        font-size: 0.9rem;
    }
    
    .hero-badge {
        font-size: 11px;
        padding: 6px 12px;
    }
    
    .hero-stats-bar {
        padding: 16px;
        gap: 12px;
    }
    
    .stat-icon {
        width: 36px;
        height: 36px;
    }
    
    .stat-number {
        font-size: 1.1rem;
    }
    
    .stat-label {
        font-size: 11px;
    }
    
    .section-header h2 {
        font-size: 1.3rem;
    }
    
    .solution-card {
        padding: 20px;
    }
    
    .solution-card h3 {
        font-size: 1rem;
    }
    
    .solution-card > p {
        font-size: 13px;
    }
    
    .pricing-card {
        padding: 24px 16px;
    }
    
    .pricing-price .price {
        font-size: 1.75rem;
    }
    
    .contact-info h2 {
        font-size: 1.3rem;
    }
    
    .contact-form-card {
        padding: 20px 16px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}
