/* ==========================================================
   ODOO CUSTOMIZATION PAGE — v3
   Layout DNA borrowed from odoo.com: huge confident headline,
   generous whitespace, alternating image/text feature rows,
   soft purple-tint sections (not hard borders), rounded
   friendly cards with shadow. Tokens kept from your site:
   DM Sans / Plus Jakarta Sans, #714b67 purple, #1ec8a0 teal.
   All classes prefixed "occ-" — safe to append to style.css.
   ========================================================== */

.occ-page { background: #ffffff; }
.occ-page .container { max-width: 1180px; }

.occ-eyebrow {
    font-family: 'DM Sans', sans-serif;
    font-size: .8rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
    color: #714b67; margin-bottom: 1rem; display: block;
}

/* ---------- HERO — big, light, generous, Odoo-style ---------- */
.occ-hero { padding: 7rem 0 5rem; background: #ffffff; }
.occ-hero-row { display: flex; align-items: center; gap: 3.5rem; }
.occ-hero-text { flex: 1.05; }
.occ-hero-visual { flex: .95; }

.occ-hero h1 {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(2.4rem, 4.6vw, 3.6rem);
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -1px;
    color: #1a2421;
    margin-bottom: 1.3rem;
}
.occ-hero-lede {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.08rem; color: #5b6b67; line-height: 1.75; font-weight: 400;
    max-width: 34rem; margin-bottom: 2.2rem;
}

.occ-badges { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2.4rem; }
.occ-badge {
    background: rgba(113, 75, 103, .07);
    border: none;
    border-radius: 100px;
    padding: .5rem 1.1rem;
    font-size: .8rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    color: #714b67;
}

.occ-cta-row { display: flex; gap: .9rem; flex-wrap: wrap; }
.occ-btn-primary {
    background: #714b67; color: #fff; border: none; border-radius: 50px;
    padding: .95rem 2.1rem; font-family: 'DM Sans', sans-serif; font-size: .95rem;
    font-weight: 600; display: inline-flex; align-items: center; gap: .5rem;
    text-decoration: none; transition: background .2s, transform .15s, box-shadow .2s;
}
.occ-btn-primary:hover { background: #5e3c54; transform: translateY(-2px); color:#fff; box-shadow: 0 12px 28px rgba(113,75,103,.28); }

.occ-btn-ghost {
    background: transparent; color: #1a2421; border: 1.5px solid #d9d9d6; border-radius: 50px;
    padding: .95rem 2.1rem; font-family: 'DM Sans', sans-serif; font-size: .95rem; font-weight: 600;
    display: inline-flex; align-items: center; gap: .5rem; text-decoration: none; transition: all .2s;
}
.occ-btn-ghost:hover { border-color: #714b67; color: #714b67; }

/* Hero visual: soft rounded panel, Odoo's signature pastel block-with-shape look */
.occ-hero-panel {
    background: linear-gradient(160deg, #f3ecf1 0%, #eef7f5 100%);
    border-radius: 28px;
    padding: 2.4rem;
    position: relative;
    overflow: hidden;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.occ-hero-panel::before {
    content: '';
    position: absolute; top: -60px; right: -60px; width: 220px; height: 220px;
    border-radius: 50%; background: rgba(113,75,103,.10);
}
.occ-hero-panel::after {
    content: '';
    position: absolute; bottom: -80px; left: -40px; width: 200px; height: 200px;
    border-radius: 50%; background: rgba(30,200,160,.12);
}
.occ-hero-card {
    background: #ffffff; border-radius: 16px; padding: 1.4rem 1.6rem;
    box-shadow: 0 16px 40px rgba(26,36,33,.08); position: relative; z-index: 1;
    margin-bottom: .8rem;
}
.occ-hero-card:last-child { margin-bottom: 0; }
.occ-hero-card-label { font-family: 'DM Sans', sans-serif; font-size: .72rem; font-weight: 700; color: #1ec8a0; letter-spacing: .06em; text-transform: uppercase; }
.occ-hero-card-text { font-family: 'Plus Jakarta Sans', sans-serif; font-size: .92rem; color: #1a2421; font-weight: 500; margin-top: .35rem; }

/* ---------- STATS — clean number row, plenty of air ---------- */
.occ-stats { padding: 3.5rem 0; border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
.occ-stats-row { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 2rem; }
.occ-stat-item { flex: 1; min-width: 140px; text-align: left; }
.occ-stat-num { font-family: 'DM Sans', sans-serif; font-size: 2.6rem; font-weight: 600; color: #1a2421; line-height: 1; letter-spacing: -1px; }
.occ-stat-lbl { font-family: 'Plus Jakarta Sans', sans-serif; font-size: .85rem; color: #778186; margin-top: .5rem; font-weight: 400; }

/* ---------- WHY IT MATTERS — alternating feature row (Odoo signature) ---------- */
.occ-why { padding: 7rem 0; }
.occ-why-row { display: flex; align-items: center; gap: 4rem; }
.occ-why-text { flex: 1; }
.occ-why-visual { flex: 1; }

.occ-why h2 {
    font-family: 'DM Sans', sans-serif; font-size: clamp(1.9rem, 3.2vw, 2.5rem);
    font-weight: 600; color: #1a2421; letter-spacing: -.8px; margin-bottom: 1.2rem; line-height: 1.2;
}
.occ-why p {
    font-family: 'Plus Jakarta Sans', sans-serif; font-size: .98rem; color: #5b6b67;
    line-height: 1.85; font-weight: 400; max-width: 36rem;
}
.occ-why p + p { margin-top: 1rem; }

.occ-why-visual {
    background: #f4faf8; border-radius: 24px; padding: 2.2rem;
}
.occ-why-visual-label { font-family: 'DM Sans', sans-serif; font-size: .76rem; font-weight: 700; color: #1ec8a0; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 1rem; display: block; }
.occ-why-example {
    background: #ffffff; border-radius: 14px; padding: 1rem 1.2rem; margin-bottom: .7rem;
    box-shadow: 0 6px 18px rgba(26,36,33,.05);
    font-family: 'Plus Jakarta Sans', sans-serif; font-size: .88rem; color: #1a2421; font-weight: 500;
    display: flex; align-items: center; gap: .7rem;
}
.occ-why-example:last-child { margin-bottom: 0; }
.occ-why-example-dot { width: 8px; height: 8px; border-radius: 50%; background: #1ec8a0; flex-shrink: 0; }

/* ---------- WHY CHOOSE — soft pastel tinted section, rounded cards no border ---------- */
.occ-choose { padding: 7rem 0; background: #f9f7f8; }
.occ-choose-head { max-width: 40rem; margin-bottom: 3rem; }
.occ-choose-head h2 {
    font-family: 'DM Sans', sans-serif; font-size: clamp(1.9rem, 3.2vw, 2.5rem);
    font-weight: 600; color: #1a2421; letter-spacing: -.8px; line-height: 1.2;
}
.occ-choose-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.occ-choose-card {
    background: #ffffff; border: none; border-radius: 20px;
    padding: 2.2rem; box-shadow: 0 4px 16px rgba(26,36,33,.04);
    transition: transform .25s ease, box-shadow .25s ease;
}
.occ-choose-card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(26,36,33,.09); }
.occ-choose-icon {
    width: 52px; height: 52px; border-radius: 16px;
    background: rgba(113,75,103,.08);
    display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem;
}
.occ-choose-icon svg { width: 24px; height: 24px; stroke: #714b67; }
.occ-choose-card h3 { font-family: 'DM Sans', sans-serif; font-size: 1.08rem; font-weight: 600; color: #1a2421; margin-bottom: .6rem; letter-spacing: -.3px; }
.occ-choose-card p { font-family: 'Plus Jakarta Sans', sans-serif; font-size: .9rem; color: #6b7672; line-height: 1.75; font-weight: 400; margin: 0 0 .6rem; }
.occ-choose-card ul { list-style: none; padding: 0; margin: .8rem 0 0; display: flex; flex-direction: column; gap: .5rem; }
.occ-choose-card li {
    font-family: 'Plus Jakarta Sans', sans-serif; font-size: .87rem; color: #5b6b67;
    line-height: 1.6; display: flex; align-items: flex-start; gap: .55rem;
}
.occ-choose-card li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: #1ec8a0; margin-top: .55rem; flex-shrink: 0; }
.occ-choose-wide { grid-column: 1 / -1; display: flex; gap: 1.6rem; align-items: center; }
.occ-choose-wide .occ-choose-icon { flex-shrink: 0; margin-bottom: 0; }

/* ---------- WHAT WE CUSTOMIZE — clean grid, soft icon tiles ---------- */
.occ-scope { padding: 7rem 0; }
.occ-scope-head { max-width: 40rem; margin-bottom: 3rem; }
.occ-scope-head h2 {
    font-family: 'DM Sans', sans-serif; font-size: clamp(1.9rem, 3.2vw, 2.5rem);
    font-weight: 600; color: #1a2421; letter-spacing: -.8px; line-height: 1.2;
}
.occ-scope-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.4rem 2rem; }
.occ-scope-icon {
    width: 46px; height: 46px; border-radius: 14px;
    background: rgba(30,200,160,.10);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.15rem; color: #1ec8a0; margin-bottom: 1.1rem;
}
.occ-scope-card h3 { font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 600; color: #1a2421; margin-bottom: .55rem; letter-spacing: -.2px; }
.occ-scope-card p { font-family: 'Plus Jakarta Sans', sans-serif; font-size: .87rem; color: #778186; line-height: 1.75; font-weight: 400; margin: 0; }

.occ-pillstrip { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 3rem; padding-top: 2.4rem; border-top: 1px solid #eee; }
.occ-pill {
    background: #f4faf8; border: none; color: #1a2421;
    font-family: 'Plus Jakarta Sans', sans-serif; font-size: .82rem; font-weight: 600;
    padding: .55rem 1.15rem; border-radius: 100px;
}

/* ---------- APPROACH — horizontal-friendly numbered row, light tint bg ---------- */
.occ-approach { padding: 7rem 0; background: #f9f7f8; }
.occ-approach-head { max-width: 40rem; margin-bottom: 3rem; }
.occ-approach-head h2 {
    font-family: 'DM Sans', sans-serif; font-size: clamp(1.9rem, 3.2vw, 2.5rem);
    font-weight: 600; color: #1a2421; letter-spacing: -.8px; line-height: 1.2;
}
.occ-steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.2rem 2rem; }
.occ-step-num {
    font-family: 'DM Sans', sans-serif; font-size: .85rem; font-weight: 700; color: #714b67;
    margin-bottom: .8rem; display: block;
}
.occ-step h3 { font-family: 'DM Sans', sans-serif; font-size: 1.02rem; font-weight: 600; color: #1a2421; margin-bottom: .5rem; letter-spacing: -.2px; }
.occ-step p { font-family: 'Plus Jakarta Sans', sans-serif; font-size: .87rem; color: #6b7672; line-height: 1.75; margin: 0; font-weight: 400; }

/* ---------- FAQ — minimal, generous spacing ---------- */
.occ-faq { padding: 7rem 0; }
.occ-faq-head { max-width: 40rem; margin-bottom: 2.5rem; }
.occ-faq-head h2 {
    font-family: 'DM Sans', sans-serif; font-size: clamp(1.9rem, 3.2vw, 2.5rem);
    font-weight: 600; color: #1a2421; letter-spacing: -.8px;
}
.occ-faq-item { border-bottom: 1px solid #eee; }
.occ-faq-q {
    font-family: 'DM Sans', sans-serif; font-size: 1.05rem; font-weight: 600; color: #1a2421;
    padding: 1.5rem 0; margin: 0; letter-spacing: -.3px;
}
.occ-faq-a {
    font-family: 'Plus Jakarta Sans', sans-serif; font-size: .92rem; color: #6b7672;
    line-height: 1.8; padding: 0 0 1.5rem 0; max-width: 42rem; margin: 0; font-weight: 400;
}

/* ---------- CTA — soft purple tint, not dark, matches odoo.com's light CTA bands ---------- */
.occ-cta-banner { padding: 6rem 0; }
.occ-cta-card {
    background: linear-gradient(160deg, #f3ecf1 0%, #eef7f5 100%);
    border-radius: 28px; padding: 4.5rem; position: relative; overflow: hidden;
    text-align: center;
}
.occ-cta-card::before { content: ''; position: absolute; top: -80px; left: -60px; width: 240px; height: 240px; border-radius: 50%; background: rgba(113,75,103,.08); }
.occ-cta-card::after { content: ''; position: absolute; bottom: -90px; right: -50px; width: 240px; height: 240px; border-radius: 50%; background: rgba(30,200,160,.10); }
.occ-cta-card h2 {
    font-family: 'DM Sans', sans-serif; font-size: clamp(1.8rem, 3.4vw, 2.4rem); font-weight: 600;
    color: #1a2421; max-width: 34rem; margin: 0 auto 1.1rem; position: relative; z-index: 1; letter-spacing: -.8px;
}
.occ-cta-card p {
    font-family: 'Plus Jakarta Sans', sans-serif; font-size: .96rem; color: #5b6b67;
    line-height: 1.8; max-width: 32rem; margin: 0 auto 2rem; position: relative; z-index: 1; font-weight: 400;
}
.occ-cta-card .occ-cta-row { position: relative; z-index: 1; justify-content: center; }

@media (max-width: 991.98px) {
    .occ-hero-row, .occ-why-row { flex-direction: column; }
    .occ-hero-visual, .occ-why-visual { width: 100%; }
    .occ-choose-grid, .occ-scope-grid, .occ-steps-grid { grid-template-columns: 1fr 1fr; }
    .occ-choose-wide { flex-direction: column; align-items: flex-start; }
    .occ-cta-card { padding: 3rem 1.8rem; }
}
@media (max-width: 575.98px) {
    .occ-hero { padding: 4rem 0 3rem; }
    .occ-why, .occ-choose, .occ-scope, .occ-approach, .occ-faq, .occ-cta-banner { padding: 4rem 0; }
    .occ-choose-grid, .occ-scope-grid, .occ-steps-grid { grid-template-columns: 1fr; }
    .occ-stats-row { gap: 1.4rem; }
}
