:root {
    --primary-color: #714B67;
    --accent-color: #E60000;
    --text-color: #212529;
    --text-muted: #6c757d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e9ecef;
    --font-family: 'Inter', system-ui, -apple-system, sans-serif;
    --font-handwritten: 'Caveat', cursive;
    --transition: all 0.3s ease;
    --purple-grad: linear-gradient(135deg, #4c1d95, #7c3aed);
    --shadow-soft: 0 4px 6px -1px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 25px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.1);
}

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

body {
    font-family: var(--font-family);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    background-image: repeating-radial-gradient(circle at top center, transparent, transparent 50px, rgba(0,0,0, 0.015) 50px, rgba(0,0,0, 0.015) 51px);
}

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

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

/* Typography - Applying Clean Sans font across the design */
h1, h2, h3 {
    font-family: var(--font-family);
    color: #111827;
    line-height: 1.2;
    letter-spacing: -0.02em; /* Tight tracking for premium look like the 'Career' image */
}

h1 { font-size: 4.5rem; font-weight: 700; }
h2 { font-size: 3.5rem; font-weight: 700; }
h3 { font-size: 2.5rem; font-weight: 700; }
h4 { font-weight: 600; line-height: 1.3; color: #111827; font-size: 1.25rem; font-family: var(--font-family); }

p { margin-bottom: 1rem; color: var(--text-muted); }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 10px 24px; font-size: 0.95rem; font-weight: 600;
    border-radius: 4px; cursor: pointer; transition: var(--transition);
    text-transform: uppercase; letter-spacing: 0.5px; border: none; font-family: var(--font-family);
}
.btn-primary { background-color: var(--accent-color); color: white; }
.btn-primary:hover { background-color: #cc0000; color: white; }
.btn-secondary { background-color: #f1f5f9; color: #475569; }
.btn-secondary:hover { background-color: #e2e8f0; }
.btn-outline { background-color: transparent; border: 2px solid var(--border-color); color: var(--text-color); }
.btn-outline:hover { border-color: var(--text-color); background-color: var(--bg-light); }
.btn-large { padding: 14px 32px; font-size: 1rem; }

/* Navbar */
.navbar {
    padding: 10px 0; background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px); border-bottom: 1px solid rgba(0,0,0,0.05);
    position: sticky; top: 0; z-index: 1000;
}
.nav-container { display: flex; justify-content: space-between; align-items: center; max-width: 1300px; margin: 0 auto; padding: 0 24px; }
.logo img { height: 100px; width: auto; object-fit: contain; mix-blend-mode: multiply; filter: contrast(1.1); }
.nav-center { display: flex; gap: 32px; }
.nav-item { position: relative; }
.nav-center a { font-size: 0.95rem; font-weight: 500; color: #4b5563; display: flex; align-items: center; gap: 4px; }
.nav-center a:hover { color: var(--accent-color); }
.dropdown-menu {
    display: none; position: absolute; top: 100%; left: -20px;
    background: white; box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-radius: 8px; padding: 10px 0; min-width: 220px; z-index: 2000; border: 1px solid var(--border-color);
}
.dropdown-menu.show { display: block; animation: fadeInDown 0.2s ease-out forwards; }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
.dropdown-menu a { display: block; padding: 10px 24px; color: #4b5563; font-weight: 500; font-size: 0.9rem; }
.dropdown-menu a:hover { background: var(--bg-light); color: var(--accent-color); }
.chevron { transition: transform 0.3s ease; margin-top: 2px; }
.nav-center a.active .chevron { transform: rotate(180deg); }
.nav-right { display: flex; align-items: center; gap: 24px; }
.nav-icons svg { width: 20px; height: 20px; color: #4b5563; cursor: pointer; }
.nav-right .nav-link { font-weight: 500; font-size: 0.95rem; color: #4b5563; }

/* Rope Arrow Class */
.rope-arrow {
    position: absolute;
    width: 120px;
    height: 120px;
    color: var(--accent-color);
    pointer-events: none;
    z-index: 5;
}

/* Odoo-style Hero Section */
.hero { padding: 100px 0 40px; text-align: center; position: relative; z-index: 10; }
.hero-content { max-width: 900px; margin: 0 auto; position: relative; }
.main-title { margin-bottom: 40px; position: relative; z-index: 2; }
.highlight-wrapper { position: relative; display: inline-block; }
.text-relative { position: relative; z-index: 2; }
.yellow-blob { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 110%; height: 140%; z-index: 1; pointer-events: none; opacity: 0.9; }
.underline-wrapper { position: relative; display: inline-block; }
.blue-underline { position: absolute; bottom: -15px; left: 0; width: 100%; height: 30px; pointer-events: none; }
.hero-actions { display: flex; gap: 16px; justify-content: center; position: relative; z-index: 3; }

/* Curve Separator (Odoo) */
.curve-container { position: relative; width: 100%; height: 180px; overflow: hidden; margin-top: -40px; display: flex; flex-direction: column; justify-content: flex-end; background: transparent; }
.curve-svg { width: 100%; height: 120px; display: block; }

/* Content Area Below Curve (Zoho Hybrid) */
.apps-section { background-color: var(--bg-light); padding: 40px 0 100px; }
.featured-box { max-width: 1100px; margin: -40px auto 100px; background: var(--bg-white); border-radius: 12px; box-shadow: 0 20px 40px rgba(0,0,0,0.08); display: flex; overflow: hidden; border: 1px solid var(--border-color); position: relative; z-index: 10; }
.featured-left { flex: 0 0 350px; background: linear-gradient(135deg, #4c1d95, #7c3aed); padding: 40px; color: white; text-align: center; display: flex; flex-direction: column; justify-content: center; align-items: center; }
.featured-left h3 { color: white; }
.featured-left p { color: rgba(255,255,255,0.8); font-size: 0.9rem; font-family: var(--font-family); }
.featured-left .btn-outline { border-color: rgba(255,255,255,0.3); color: white; border-radius: 50px; margin-top: 20px; text-transform: none; letter-spacing: normal; }
.featured-right { flex: 1; padding: 40px; }
.featured-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; text-transform: uppercase; font-size: 0.85rem; font-weight: 600; color: #6b7280; font-family: var(--font-family); }
.featured-header a { color: var(--accent-color); }

.apps-grid-zoho { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.app-card { display: flex; gap: 16px; align-items: flex-start; transition: var(--transition); }
.app-card:hover .app-icon { transform: translateY(-2px); box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); }
.app-icon { width: 48px; height: 48px; flex-shrink: 0; background: white; border-radius: 12px; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05); transition: var(--transition); }
.app-icon svg { width: 24px; height: 24px; }
.app-info h4 { margin-bottom: 4px; }
.app-info p { font-size: 0.85rem; line-height: 1.4; margin-bottom: 0; font-family: var(--font-family); }

/* Page Headers (for inner pages) */
.page-header { padding: 80px 0 40px; text-align: center; position: relative; }
.page-header h1 { margin-bottom: 10px; }
.red-line { width: 60px; height: 4px; background-color: var(--accent-color); margin: 20px auto 30px; border-radius: 2px; }
.content-section { padding: 60px 0; }

/* Chat Widget */
.chat-widget { position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px; background-color: var(--primary-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 15px -3px rgba(113, 75, 103, 0.3); cursor: pointer; z-index: 1000; transition: var(--transition); }
.chat-widget:hover { transform: scale(1.05); }

/* Footer */
footer { background-color: var(--bg-white); border-top: 1px solid var(--border-color); padding: 60px 0 40px; margin-top: 60px; }

/* Responsive */
@media (max-width: 900px) {
    .featured-box { flex-direction: column; margin-top: 0; }
    .featured-left { flex: none; padding: 60px 20px; }
    .main-title { font-size: 3.5rem; }
}
/* Hamburger button (hidden on desktop) */
.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px; padding: 9px; background: none; border: none; cursor: pointer; }
.nav-toggle span { display: block; width: 100%; height: 2px; background: #111827; border-radius: 2px; transition: transform 0.3s ease, opacity 0.2s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile slide-down menu */
.mobile-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg-white); border-top: 1px solid var(--border-color); box-shadow: 0 20px 30px rgba(0,0,0,0.12); padding: 10px 0 20px; max-height: calc(100vh - 70px); overflow-y: auto; z-index: 1500; }
.mobile-menu.open { display: block; animation: fadeInDown 0.2s ease-out forwards; }
.mobile-menu a { display: block; color: #374151; font-weight: 500; font-size: 1rem; }
.mobile-menu a:hover { color: var(--accent-color); }
.mobile-menu .mobile-top-link { padding: 13px 24px; font-weight: 600; }
.mobile-menu .mobile-signin { color: var(--accent-color); }
.mobile-group { padding: 6px 24px 10px; border-bottom: 1px solid var(--border-color); }
.mobile-group-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1px; color: #9ca3af; font-weight: 700; margin: 12px 0 4px; }
.mobile-group a { padding: 9px 0; font-size: 0.95rem; }

@media (max-width: 768px) {
    .apps-grid-zoho { grid-template-columns: 1fr; }
    .nav-center { display: none; }
    .nav-right { display: none; }
    .nav-toggle { display: flex; }
    .logo img { height: 60px; }
    .navbar { padding: 6px 0; }

    .footer-content { grid-template-columns: 1fr !important; text-align: left !important; gap: 30px !important; }
    .footer-content > div { text-align: left !important; }

    /* Stack inline flex layouts on inner pages */
    .content-section[style*="flex"] { flex-direction: column !important; gap: 36px !important; }
    .page-header .container[style*="flex"] { flex-direction: column !important; gap: 30px !important; }
    .featured-box { flex-direction: column !important; }
    .featured-box .featured-left { flex: none !important; }

    /* Tame large inline headings on small screens */
    .hero { padding: 60px 0 30px; }
    .main-title { font-size: 2.5rem !important; }
    .hero-actions { flex-wrap: wrap; }
    .page-header h1 { font-size: 2.6rem !important; }
    .cta-band h2 { font-size: 2.3rem !important; }
    .section-head h2 { font-size: 1.9rem; }
    h2 { font-size: 2.2rem; }
    .btn-large { padding: 12px 24px; font-size: 0.95rem; }
}

@media (max-width: 480px) {
    .container { padding: 0 18px; }
    .main-title { font-size: 2.1rem !important; }
    .page-header h1 { font-size: 2.2rem !important; }
    .hero-actions .btn { width: 100%; }
    .pricing-card.popular { transform: none; }
}

/* =====================================================
   Reusable Components (added for full content build)
   ===================================================== */

/* Section helpers */
.section { padding: 90px 0; }
.section-light { background-color: var(--bg-light); }
.section-purple { background: var(--purple-grad); color: white; }
.section-head { max-width: 720px; margin: 0 auto 60px; text-align: center; }
.section-head .eyebrow { display: inline-block; text-transform: uppercase; letter-spacing: 1.5px; font-size: 0.8rem; font-weight: 700; color: var(--accent-color); margin-bottom: 14px; }
.section-head h2 { font-size: 2.75rem; margin-bottom: 16px; }
.section-head p { font-size: 1.1rem; color: #4b5563; }
.section-head.on-purple .eyebrow { color: #FBBF24; }
.section-head.on-purple h2 { color: white; }
.section-head.on-purple p { color: rgba(255,255,255,0.85); }

/* Handwritten accent heading */
.script-head { font-family: var(--font-handwritten); line-height: 1.05; }

/* Stats band */
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; padding: 20px; }
.stat .num { font-size: 3rem; font-weight: 800; color: #111827; letter-spacing: -0.03em; line-height: 1; }
.stat .label { font-size: 0.95rem; color: var(--text-muted); margin-top: 8px; }
.section-purple .stat .num { color: white; }
.section-purple .stat .label { color: rgba(255,255,255,0.8); }

/* Feature cards grid */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature-card { background: var(--bg-white); border: 1px solid var(--border-color); border-radius: 14px; padding: 32px; transition: var(--transition); }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.feature-card .f-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; background: #f3e8ff; }
.feature-card .f-icon svg { width: 28px; height: 28px; }
.feature-card h3 { font-size: 1.35rem; margin-bottom: 10px; }
.feature-card p { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 0; line-height: 1.6; }

/* Process steps */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.process-step { text-align: center; position: relative; }
.process-step .step-num { width: 56px; height: 56px; margin: 0 auto 18px; border-radius: 50%; background: var(--purple-grad); color: white; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.3rem; }
.process-step h4 { margin-bottom: 8px; font-size: 1.15rem; }
.process-step p { font-size: 0.9rem; line-height: 1.5; margin-bottom: 0; }

/* Testimonials */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testi-card { background: var(--bg-white); border: 1px solid var(--border-color); border-radius: 14px; padding: 30px; box-shadow: var(--shadow-soft); }
.testi-card .quote { font-size: 1rem; color: #374151; line-height: 1.7; margin-bottom: 22px; }
.testi-card .stars { color: #FBBF24; margin-bottom: 14px; letter-spacing: 2px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-author .avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--purple-grad); color: white; display: flex; align-items: center; justify-content: center; font-weight: 700; }
.testi-author .meta strong { display: block; color: #111827; font-size: 0.95rem; }
.testi-author .meta span { font-size: 0.85rem; color: var(--text-muted); }

/* Logo / trust strip */
.trust-strip { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 48px; opacity: 0.6; }
.trust-strip span { font-weight: 700; font-size: 1.25rem; color: #9ca3af; letter-spacing: -0.02em; }

/* CTA band */
.cta-band { background: var(--purple-grad); padding: 80px 0; text-align: center; color: white; border-radius: 0; }
.cta-band h2 { color: white; font-family: var(--font-handwritten); font-size: 3.75rem; margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,0.85); font-size: 1.15rem; max-width: 560px; margin: 0 auto 28px; }
.cta-band .btn-primary { background: white; color: var(--primary-color); }
.cta-band .btn-primary:hover { background: #f1f5f9; color: var(--primary-color); }

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-color); padding: 24px 0; }
.faq-item h4 { font-size: 1.1rem; margin-bottom: 10px; color: #111827; }
.faq-item p { margin-bottom: 0; color: var(--text-muted); line-height: 1.7; }

/* Values list (about) */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.value-card { padding: 30px; border-radius: 14px; background: var(--bg-light); border: 1px solid var(--border-color); }
.value-card .v-icon { font-size: 2rem; margin-bottom: 14px; }
.value-card h4 { font-size: 1.2rem; margin-bottom: 8px; }
.value-card p { margin-bottom: 0; font-size: 0.95rem; line-height: 1.6; }

/* Timeline */
.timeline { max-width: 760px; margin: 0 auto; border-left: 2px solid var(--border-color); padding-left: 40px; }
.timeline-item { position: relative; padding-bottom: 40px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before { content: ''; position: absolute; left: -50px; top: 2px; width: 18px; height: 18px; border-radius: 50%; background: var(--accent-color); border: 4px solid white; box-shadow: 0 0 0 2px var(--accent-color); }
.timeline-item .year { font-weight: 800; color: var(--accent-color); font-size: 1.1rem; }
.timeline-item h4 { margin: 4px 0 8px; }
.timeline-item p { margin-bottom: 0; }

/* Split feature row (image + text) */
.split-row { display: flex; align-items: center; gap: 64px; }
.split-row.reverse { flex-direction: row-reverse; }
.split-row > div { flex: 1; }

/* Pill list */
.pill-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.pill-list span { background: #f3e8ff; color: #6d28d9; padding: 6px 14px; border-radius: 50px; font-size: 0.85rem; font-weight: 600; }

/* Cookie consent banner */
.cookie-banner {
    position: fixed; bottom: 20px; left: 20px; right: 20px; z-index: 3000;
    max-width: 1100px; margin: 0 auto;
    background: var(--bg-white); border: 1px solid var(--border-color);
    border-radius: 14px; box-shadow: 0 20px 50px rgba(0,0,0,0.18);
    padding: 24px 28px; display: flex; align-items: center; gap: 28px;
    animation: cookieSlideUp 0.4s ease-out;
}
@keyframes cookieSlideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.cookie-banner .cookie-text { flex: 1; }
.cookie-banner .cookie-text strong { display: block; font-size: 1.05rem; color: #111827; margin-bottom: 4px; font-family: var(--font-family); }
.cookie-banner .cookie-text p { margin: 0; font-size: 0.9rem; color: var(--text-muted); font-family: var(--font-family); line-height: 1.5; }
.cookie-banner .cookie-text a { color: var(--accent-color); font-weight: 600; }
.cookie-banner .cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-banner .btn { white-space: nowrap; }
.cookie-banner .btn-ghost { background: transparent; color: #4b5563; border: 1px solid var(--border-color); }
.cookie-banner .btn-ghost:hover { background: var(--bg-light); }

@media (max-width: 768px) {
    .cookie-banner { flex-direction: column; align-items: stretch; gap: 18px; padding: 20px; bottom: 12px; left: 12px; right: 12px; }
    .cookie-banner .cookie-actions { flex-direction: column; }
    .cookie-banner .cookie-actions .btn { width: 100%; }
}

@media (max-width: 900px) {
    .stats-band { grid-template-columns: repeat(2, 1fr); }
    .feature-grid, .process-grid, .testi-grid, .value-grid { grid-template-columns: 1fr; }
    .split-row, .split-row.reverse { flex-direction: column; gap: 36px; }
    .section { padding: 60px 0; }
    .section-head h2 { font-size: 2.1rem; }
    .cta-band h2 { font-size: 2.75rem; }
}
