/* Modern Premium Design System */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@400;500;600&display=swap');

:root {
    /* Colors - Light Theme (Odoo Brand) */
    --bg-dark: #f8fafc;
    --bg-card: rgba(255, 255, 255, 0.9);
    --bg-card-hover: #ffffff;
    --accent-primary: #714B67; /* Odoo Purple */
    --accent-secondary: #714B67; /* Odoo Teal */
    --text-main: #212529;
    --text-muted: #495057;
    --border-light: rgba(113, 75, 103, 0.1);
    
    /* Typography */
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing & Radii */
    --radius-lg: 24px;
    --radius-md: 16px;
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .heading {
    font-family: var(--font-display);
    color: var(--text-main);
    font-weight: 700;
}

/* Typography Enhancements */
.text-gradient {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glassmorphism Utilities */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
}

.glass-panel:hover {
    /* Hover effects removed */
}

/* Buttons */
.btn-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    cursor: pointer;
}

.btn-primary-glow {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: #fff;
    box-shadow: 0 10px 20px rgba(113, 75, 103, 0.3);
}

.btn-primary-glow:hover {
    box-shadow: 0 15px 30px rgba(113, 75, 103, 0.4);
    transform: translateY(-2px);
    color: #fff;
}

.btn-outline-glow {
    background: #ffffff;
    color: var(--accent-primary);
    border: 2px solid rgba(113, 75, 103, 0.3);
    box-shadow: 0 10px 20px rgba(113, 75, 103, 0.1);
}

.btn-outline-glow:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    box-shadow: 0 15px 30px rgba(113, 75, 103, 0.2);
    transform: translateY(-2px);
    color: #ffffff;
}

/* Hero Section */
.hero-modern {
    position: relative;
    padding: 160px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 80% 20%, rgba(113, 75, 103, 0.08) 0%, transparent 40%),
                radial-gradient(circle at 20% 80%, rgba(113, 75, 103, 0.08) 0%, transparent 40%);
}

.hero-modern .badge-glow {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(113, 75, 103, 0.05);
    border: 1px solid rgba(113, 75, 103, 0.2);
    border-radius: 50px;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-modern h1 {
    font-size: 3.6rem;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-modern p.lead-text {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 40px;
}

/* Portfolio Stats in Hero */
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border-light);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-item .stat-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-item .stat-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Floating Image */
.hero-image-wrapper {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.hero-image-wrapper img {
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: var(--radius-lg);
    z-index: 1;
    opacity: 0.2;
    filter: blur(40px);
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Section Common */
.section-modern {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.heading-main, .section-header h2 {
    font-size: 2.15rem;
    font-weight: 800;
    margin: 14px 0 16px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.subtitle-main, .section-header p {
    color: #475569;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 1.8;
}

.section-header p {
    margin: 0 auto; /* Center alignment specifically for section headers */
}

/* Skill Cards / Services */
.skill-card {
    height: 100%;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.skill-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(0, 136, 255, 0.1);
    color: var(--accent-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.skill-card:hover .skill-icon {
    /* Hover effects removed */
}

.skill-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.skill-card p {
    color: var(--text-muted);
    margin-bottom: 0;
    flex-grow: 1;
}

/* Process Timeline */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.process-step {
    position: relative;
    padding: 40px;
    z-index: 1;
}

.process-step .step-number {
    position: absolute;
    top: -15px;
    right: 20px;
    font-family: var(--font-display);
    font-size: 80px;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    line-height: 1;
    transition: var(--transition-smooth);
    z-index: -1;
}

.process-step:hover .step-number {
    color: rgba(138, 43, 226, 0.08);
    transform: scale(1.1);
}

.process-step h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Team Features */
.team-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
}

.team-feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(138, 43, 226, 0.1);
    color: var(--accent-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.team-feature-content h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.team-feature-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Navbar overrides for Light theme */
.site-navbar {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-light);
}

.site-navbar .site-logo a {
    color: var(--text-main) !important;
}

.site-menu.main-menu > li > a.nav-link {
    color: var(--text-main) !important;
    font-weight: 500;
}

.site-menu.main-menu > li > a.nav-link:hover {
    color: var(--accent-primary) !important;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-modern {
        padding-top: 120px;
        text-align: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image-wrapper {
        margin-top: 60px;
    }
}

/* Modern FAQ Section - Ultra Premium */
.faq-card {
    background: #ffffff;
    border: none;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(113, 75, 103, 0.05);
    transition: var(--transition-smooth);
    position: relative;
}

.faq-card::before {
    display: none;
}

.faq-card:hover {
    /* Hover effects removed */
}

.faq-card:hover::before {
    /* Side color removed */
}

.faq-card .card-header {
    background: transparent;
    border: none;
    padding: 0;
}

.faq-btn {
    background: transparent;
    border: none;
    border-bottom: 1px solid transparent;
    width: 100%;
    padding: 24px 30px;
    color: #1e293b;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.faq-btn:focus {
    outline: none;
}

.faq-btn:hover {
    color: var(--accent-primary);
}

.faq-icon-wrapper {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(113, 75, 103, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    flex-shrink: 0;
    margin-left: 15px;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(113, 75, 103, 0.1);
}

.faq-btn:not(.collapsed) .faq-icon-wrapper {
    transform: rotate(180deg);
    background: var(--accent-primary);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(113, 75, 103, 0.25);
}

.faq-btn:not(.collapsed) {
    color: var(--accent-primary);
    border-bottom: 1px solid rgba(113, 75, 103, 0.05);
}

.faq-body {
      padding: 10px 30px 30px;
      color: #475569;
      line-height: 1.8;
      font-size: 1.05rem;
      font-family: 'Inter', sans-serif;
      background: linear-gradient(to bottom, #ffffff, #fafbfa);
  }

/* Modern Footer */
.modern-footer {
    background: #ffffff;
    border-top: 1px solid var(--border-light);
    padding-top: 80px;
    margin-top: 60px;
}

.footer-top {
    padding-bottom: 60px;
}

.footer-widget p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

.skill-card p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.footer-widget h3 {
    font-size: 1.25rem;
    color: var(--text-main);
    margin-bottom: 25px;
    font-family: var(--font-display);
    font-weight: 700;
}

.footer-links, .footer-contact, .footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-block;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent-primary);
}

.footer-contact li {
    color: var(--text-muted);
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--accent-primary);
    margin-top: 4px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: transparent;
    border: 2px solid var(--border-light);
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-primary);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: -1;
}

.social-icon:hover {
    color: #ffffff;
    border-color: var(--accent-primary);
    box-shadow: 0 10px 20px rgba(113, 75, 103, 0.2);
}

.social-icon:hover::before {
    top: 0;
}

.footer-bottom {
    background: rgba(113, 75, 103, 0.02);
    border-top: 1px solid var(--border-light);
    padding: 25px 0;
}

.footer-bottom .copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-bottom .copyright a {
    color: var(--accent-primary);
    font-weight: 600;
    text-decoration: none;
}

.footer-legal {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.footer-legal a {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-legal a:hover {
    color: var(--accent-primary);
}

@media (max-width: 767px) {
    .footer-legal {
        justify-content: center;
    }
}

.footer-logo-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-links-inline {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-links-inline li {
    margin: 0;
}

.footer-links-inline a {
    color: var(--text-muted);
    font-size: 1.05rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-links-inline a:hover {
    color: var(--accent-primary);
}

/* Ultimate SaaS Hero Section */
.hero-saas {
    position: relative;
    padding: 50px 0 80px; /* Drastically reduced top space */
    background-color: #f8fafc; /* Crisp light background */
    overflow: hidden;
    color: #0f172a;
}

/* Subtle Grid Pattern - Light */
.hero-saas::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: linear-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
    pointer-events: none;
    mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
}

.mesh-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    background: radial-gradient(circle at top right, rgba(113, 75, 103, 0.05), transparent 50%),
                radial-gradient(circle at bottom left, rgba(113, 75, 103, 0.05), transparent 50%);
}

.mesh-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.8;
    animation: drift 20s infinite alternate ease-in-out;
}

.blob-1 {
    top: -10%;
    left: 10%;
    width: 600px;
    height: 600px;
    background: rgba(113, 75, 103, 0.15);
}

.blob-2 {
    bottom: -20%;
    right: 5%;
    width: 500px;
    height: 500px;
    background: rgba(113, 75, 103, 0.12);
    animation-delay: -5s;
}

.blob-3 {
    top: 30%;
    left: 50%;
    width: 400px;
    height: 400px;
    background: rgba(138, 43, 226, 0.08);
    animation: drift2 15s infinite alternate ease-in-out;
}

@keyframes drift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(150px, 100px) scale(1.2); }
}

@keyframes drift2 {
    0% { transform: translate(0, 0) scale(0.8); }
    100% { transform: translate(-100px, -80px) scale(1.1); }
}

.relative-z {
    position: relative;
    z-index: 2;
}

.saas-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #334155;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #714B67;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(113, 75, 103, 0.5), 0 0 20px rgba(113, 75, 103, 0.3);
    animation: pulse-neon-light 2s infinite;
}

@keyframes pulse-neon-light {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
    100% { opacity: 1; transform: scale(1); }
}

.hero-title-saas {
    font-size: clamp(2.2rem, 3.5vw, 3.2rem);
    font-weight: 600;
    line-height: 1.2;
    color: #0f172a;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.text-gradient-saas {
    color: #714B67;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.hero-subtitle-saas {
    font-size: 1.25rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 580px;
    font-weight: 400;
}

.hero-actions-saas {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-saas {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 14px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    font-family: var(--font-display);
}

.btn-primary-saas {
    background: linear-gradient(135deg, var(--accent-secondary), var(--accent-primary));
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(113, 75, 103, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary-saas:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(113, 75, 103, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    color: #ffffff;
}

.btn-outline-saas {
    background: rgba(255, 255, 255, 0.8);
    color: #0f172a;
    border: 1px solid rgba(15, 23, 42, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.btn-outline-saas:hover {
    background: #ffffff;
    border-color: rgba(15, 23, 42, 0.2);
    color: #0f172a;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

/* Premium Pill Stats Row - Light */
.hero-bento-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 40px;
}

.bento-stat-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: 100px;
    padding: 12px 28px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.bento-stat-card:hover {
    /* Hover effects removed */
}

.bento-stat-card h4 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    line-height: 1;
    font-family: var(--font-display);
}

.bento-stat-card h4 span {
    color: #714B67;
}

.bento-stat-card p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 0;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: capitalize;
}

.hero-image-saas {
    position: relative;
}

.hero-image-glow {
    position: absolute;
    top: 5%;
    left: 5%;
    right: 5%;
    bottom: 5%;
    background: linear-gradient(135deg, #714B67, #5B3B54);
    filter: blur(80px);
    opacity: 0.15;
    z-index: -1;
    border-radius: 40px;
}

.saas-img-glass {
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.06), 
                0 0 0 1px rgba(255,255,255,0.8) inset;
    max-width: 95%;
    margin: 0 auto;
    display: block;
    background: #ffffff;
    padding: 12px;
    border: 1px solid rgba(15, 23, 42, 0.05);
}

/* Benefits Section */
.benefits-section {
    position: relative;
    overflow: hidden;
}

/* SaaS Timeline */
.timeline-saas {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding-left: 40px;
}

.timeline-saas::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 19px;
    width: 2px;
    background: rgba(113, 75, 103, 0.2);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    top: 0;
    left: -40px;
    width: 40px;
    height: 40px;
    background: #ffffff;
    border: 2px solid #714B67;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #714B67;
    font-size: 16px;
    box-shadow: 0 0 0 5px rgba(113, 75, 103, 0.1);
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-dot {
    background: #714B67;
    color: #ffffff;
    box-shadow: 0 0 0 8px rgba(113, 75, 103, 0.2);
}

.timeline-content {
    padding-left: 30px;
}

.timeline-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.timeline-text {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.7;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    margin-bottom: 0;
}

/* Bento Grid Styles */
.bento-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 40px 30px;
    height: 100%;
    border: 1px solid rgba(15, 23, 42, 0.04);
    box-shadow: 0 15px 35px rgba(0,0,0,0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.bento-card:hover {
    /* Hover effects removed as requested */
}

.bento-large {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.bento-large::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0,160,157,0.05) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: -1;
    transform: translate(20%, -20%);
}

.bento-icon {
    font-size: 32px;
    color: #714B67;
    margin-bottom: 25px;
    background: rgba(113, 75, 103, 0.08);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.bento-card:hover .bento-icon {
    /* Hover effects removed as requested */
}

.bento-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
    line-height: 1.3;
}

.bento-text {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

/* Large card specific layout */
@media (min-width: 992px) {
    .bento-large {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 50px 60px;
    }
    .bento-large .bento-content {
        max-width: 65%;
    }
    .bento-large .bento-icon {
        width: 140px;
        height: 140px;
        font-size: 60px;
        margin-bottom: 0;
        margin-left: 30px;
        border-radius: 40px;
        background: rgba(113, 75, 103, 0.05);
    }
    .bento-large .bento-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    .bento-large .bento-text {
        font-size: 1.15rem;
    }
}

@media (max-width: 991px) {
    .hero-bento-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-title-saas {
        font-size: 2.5rem;
    }
}
@media (max-width: 576px) {
    .hero-bento-stats {
        grid-template-columns: 1fr;
    }
}
/* Skills Section Styles */
.skills-grid-4col { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.skill-card-4col { background: #ffffff; border: 1px solid #e2e8f0; border-radius: 16px; padding: 40px 32px; display: flex; flex-direction: column; align-items: flex-start; text-align: left; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03); position: relative; z-index: 1; }
.skill-icon-4col { width: 64px; height: 64px; background: #f8fafc; border: 1px solid #e2e8f0; color: #714B67; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 24px; }
.skill-content-4col h3 { font-size: 1.3rem; font-weight: 700; color: #1e293b; margin-bottom: 12px; font-family: 'Plus Jakarta Sans', sans-serif; letter-spacing: -0.3px; }
.skill-content-4col p { color: #475569; font-size: 1.05rem; line-height: 1.65; margin: 0; }
@media (max-width: 1300px) { .skills-grid-4col { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 991px) { .skills-grid-4col { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 767px) { .skills-grid-4col { grid-template-columns: 1fr; } .skill-card-4col { align-items: center; text-align: center; } }
