/* ============================================================
   Restoliv — marketing redesign design-system
   Faithful port of the Claude "Logo and website design" project.
   Scoped under .rl / .rl-body to avoid clashing with legacy CSS.
   Font: Nunito · Primary: #6C4CF5
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&display=swap');

:root {
    --rl-violet: #6C4CF5;
    --rl-violet-h: #5638DB;
    --rl-violet-btn: #5A3DF0;
    --rl-violet-btn-h: #4A2FD6;
    --rl-violet-deep: #4634B8;
    --rl-violet-deep-2: #4C2FBE;
    --rl-ink: #171528;
    --rl-ink-2: #1E1B33;
    --rl-ink-3: #25213D;
    --rl-text: #2C2846;
    --rl-body: #4A4663;
    --rl-muted: #6E6A85;
    --rl-slate: #3A3555;
    --rl-green: #22C55E;
    --rl-green-2: #22A75D;
    --rl-line: #ECE9F6;
    --rl-line-2: #E4E1F0;
    --rl-line-3: #E2DBFB;
    --rl-line-4: #C9BCF9;
    --rl-soft: #F4F2FB;
    --rl-soft-2: #F3F0FE;
    --rl-soft-3: #F1EDFE;
    --rl-soft-4: #EFEAFE;
    --rl-soft-5: #F6F3FF;
    --rl-soft-6: #F8F6FF;
    --rl-shadow-dd: 0 16px 40px rgba(30,27,51,.14);
    --rl-shadow-badge: 0 12px 30px rgba(108,76,245,.35);
    --rl-shadow-float: 0 14px 34px rgba(30,27,51,.16);
    --rl-shadow-nl: 0 14px 40px rgba(46,29,116,.08);
    --rl-nav-h: 72px;
}

.rl-body { margin: 0; padding: 0; background: #fff; }
.rl-body, .rl {
    font-family: 'Nunito', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
    color: var(--rl-ink-2);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
.rl-body *, .rl-body *::before, .rl-body *::after,
.rl *, .rl *::before, .rl *::after { box-sizing: border-box; }
.rl img { max-width: 100%; height: auto; display: block; }

.rl-container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.rl-section { padding: 40px 0; }
.rl-section--tight { padding: 28px 0; }

/* ---------- typography ---------- */
.rl h1, .rl h2, .rl h3, .rl h4 { margin: 0; color: var(--rl-ink); line-height: 1.2; }
.rl-h1 { font-size: clamp(34px, 4.5vw, 52px); line-height: 1.1; font-weight: 900; color: var(--rl-ink); }
.rl-h2 { font-size: clamp(22px, 2.8vw, 30px); font-weight: 900; color: var(--rl-violet-deep); line-height: 1.2; }
.rl-h2--ink { color: var(--rl-ink); }
.rl-h3 { font-size: 19px; font-weight: 900; color: var(--rl-ink); }
.rl-violet { color: var(--rl-violet); }
.rl-eyebrow { display: inline-block; font-size: 16px; font-weight: 800; color: var(--rl-violet); margin-bottom: 6px; }
.rl-center { text-align: center; }
.rl-section-title { text-align: center; font-size: clamp(22px, 2.6vw, 28px); font-weight: 900; color: var(--rl-violet-deep); margin: 0 0 26px; }

/* ---------- buttons ---------- */
.rl-btn { display: inline-flex; align-items: center; gap: 8px; font-family: inherit; font-weight: 800; font-size: 15px; padding: 13px 24px; border-radius: 12px; border: 1.5px solid transparent; cursor: pointer; transition: .18s ease; text-decoration: none; line-height: 1.2; }
.rl-btn-primary { background: var(--rl-violet); color: #fff; }
.rl-btn-primary:hover { background: var(--rl-violet-h); color: #fff; }
.rl-btn-outline { background: #fff; color: var(--rl-violet); border-color: var(--rl-line-4); }
.rl-btn-outline:hover { background: var(--rl-soft-5); color: var(--rl-violet); }
.rl-btn-light { background: #fff; color: var(--rl-violet); }
.rl-btn-light:hover { background: var(--rl-soft-3); color: var(--rl-violet-h); }
.rl-btn-ghost { background: rgba(255,255,255,.16); color: #fff; border-color: rgba(255,255,255,.5); }
.rl-btn-ghost:hover { background: rgba(255,255,255,.26); color: #fff; }
.rl-btn-grp { display: flex; flex-wrap: wrap; gap: 14px; }
.rl-arrow { font-weight: 800; }

/* ---------- image placeholders (image-slot替代) ---------- */
.rl-ph { position: relative; width: 100%; height: 100%; min-height: 120px; display: flex; align-items: center; justify-content: center; text-align: center; padding: 18px; color: var(--rl-violet-deep); font-weight: 700; font-size: 13px; line-height: 1.4;
    background: repeating-linear-gradient(45deg, rgba(108,76,245,.05) 0 12px, rgba(108,76,245,.10) 12px 24px);
    border: 2px dashed rgba(108,76,245,.38); }
.rl-ph::after { content: attr(data-label); position: relative; z-index: 1; max-width: 90%; }
.rl-ph .rl-ph-code { position: absolute; top: 10px; left: 10px; background: var(--rl-violet); color: #fff; font-size: 11px; font-weight: 800; padding: 3px 9px; border-radius: 999px; z-index: 2; }
.rl-imgbox { position: relative; overflow: hidden; }

/* ============================================================
   HERO
   ============================================================ */
.rl-hero { max-width: 1180px; margin: 0 auto; padding: 24px 24px 0; display: flex; flex-wrap: wrap; gap: 40px; align-items: center; }
.rl-hero-copy { flex: 1 1 420px; min-width: 300px; padding: 16px 0 32px; }
.rl-hero-copy .rl-h1 { margin: 0; }
.rl-hero-sub { margin: 18px 0 22px; font-size: clamp(18px, 2vw, 23px); font-weight: 800; color: var(--rl-ink-3); line-height: 1.35; max-width: 460px; }
.rl-hero-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; }
.rl-hero-list > div { display: flex; align-items: center; gap: 10px; font-size: 16px; font-weight: 600; color: var(--rl-text); }
.rl-hero-media { flex: 1 1 440px; min-width: 300px; position: relative; }
.rl-hero-img { position: relative; width: 100%; aspect-ratio: 1.05; border-radius: 200px 24px 24px 200px; overflow: hidden; }
.rl-check-ic { flex: 0 0 auto; }

/* violet floating badges over hero media */
.rl-fbadge { position: absolute; background: var(--rl-violet); color: #fff; border-radius: 16px; box-shadow: var(--rl-shadow-badge); pointer-events: none; z-index: 2; }
.rl-fbadge--stat { top: 8%; right: 0; padding: 14px 18px; text-align: center; }
.rl-fbadge--stat .k { font-size: 12px; font-weight: 700; opacity: .9; }
.rl-fbadge--stat .v { font-size: 30px; font-weight: 900; line-height: 1; }
.rl-fbadge--stat .s { font-size: 11px; font-weight: 700; margin-top: 4px; }
.rl-fbadge--pill { left: -6px; bottom: 14%; display: flex; align-items: center; gap: 10px; padding: 10px 16px; border-radius: 14px; }
.rl-fbadge--pill .t { font-size: 13px; font-weight: 800; line-height: 1.2; }
.rl-fbadge--pill .s { font-size: 11px; font-weight: 600; opacity: .85; }

/* white float card (over resto-team image) */
.rl-floatcard { position: absolute; background: #fff; border-radius: 14px; box-shadow: var(--rl-shadow-float); padding: 14px 18px; display: flex; align-items: flex-end; gap: 12px; pointer-events: none; z-index: 2; }
.rl-floatcard .t { font-size: 13px; font-weight: 800; color: var(--rl-ink-2); line-height: 1.4; }

/* ============================================================
   FEATURE STRIP (4 key points)
   ============================================================ */
.rl-strip { max-width: 1180px; margin: 0 auto; padding: 34px 24px 40px; display: flex; flex-wrap: wrap; gap: 26px; justify-content: space-between; }
.rl-strip-item { display: flex; align-items: flex-start; gap: 12px; flex: 1 1 200px; min-width: 190px; }
.rl-strip-ic { width: 42px; height: 42px; border: 1.5px solid var(--rl-line-3); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--rl-violet); flex: 0 0 auto; }
.rl-strip-item .h { font-size: 14px; font-weight: 800; color: var(--rl-ink-2); }
.rl-strip-item .s { font-size: 13px; font-weight: 600; color: var(--rl-muted); }

/* ============================================================
   WIN-WIN (clients pay less) + 5-step flow
   ============================================================ */
.rl-split { max-width: 1180px; margin: 0 auto; padding: 8px 24px 30px; }
.rl-split-grid { display: flex; flex-wrap: wrap; gap: 40px; align-items: flex-start; }
.rl-split-media { flex: 1 1 380px; min-width: 300px; position: relative; }
.rl-split-media .rl-imgbox { width: 100%; aspect-ratio: 1.32; border-radius: 24px; }
.rl-split-copy { flex: 1 1 480px; min-width: 300px; }
.rl-split-copy p { margin: 0 0 14px; font-size: 15px; font-weight: 600; color: var(--rl-body); line-height: 1.6; max-width: 520px; }
.rl-split-copy p strong { color: var(--rl-text); }

.rl-flow { display: flex; align-items: flex-start; gap: 6px; flex-wrap: wrap; }
.rl-flow-step { display: flex; flex-direction: column; align-items: center; gap: 8px; flex: 1 1 80px; min-width: 80px; text-align: center; }
.rl-flow-ic { width: 52px; height: 52px; border-radius: 16px; background: var(--rl-soft-3); display: flex; align-items: center; justify-content: center; color: var(--rl-violet); }
.rl-flow-step .l { font-size: 12px; font-weight: 700; color: var(--rl-slate); line-height: 1.3; }
.rl-flow-arrow { color: #B4A9EC; font-weight: 800; padding-top: 20px; }

/* ============================================================
   ADVANTAGE CARDS
   ============================================================ */
.rl-grid { display: grid; gap: 18px; }
.rl-grid--adv { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.rl-grid--tools { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.rl-adv { background: #fff; border: 1.5px solid var(--rl-line); border-radius: 18px; padding: 20px; }
.rl-adv-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.rl-adv-ic { width: 42px; height: 42px; border-radius: 50%; background: #E9F9EF; display: flex; align-items: center; justify-content: center; color: var(--rl-green-2); font-weight: 900; font-size: 17px; flex: 0 0 auto; }
.rl-adv-head .h { font-size: 16px; font-weight: 800; color: var(--rl-ink-2); line-height: 1.25; }
.rl-adv p { margin: 0; font-size: 13.5px; font-weight: 600; color: var(--rl-muted); line-height: 1.55; }

/* ---------- generic checklist (violet ticks) ---------- */
.rl-checks { display: flex; flex-direction: column; gap: 8px; }
.rl-checks > div { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--rl-text); }

/* ============================================================
   TOOL CARDS (Restomatch / KDS / POS)
   ============================================================ */
.rl-tool { border-radius: 20px; padding: 24px; }
.rl-tool--rm { background: var(--rl-soft-2); }
.rl-tool--kds { background: #FFF8ED; }
.rl-tool--pos { background: #F0FBF4; }
.rl-tool-head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.rl-tool-name { font-size: 20px; font-weight: 900; color: var(--rl-ink-2); }
.rl-tool-name--rm { color: var(--rl-violet-btn); }
.rl-tool-name--bar { border-left: 4px solid var(--rl-ink-2); padding-left: 10px; }
.rl-badge-pill { font-size: 12px; font-weight: 800; padding: 5px 12px; border-radius: 999px; letter-spacing: .5px; }
.rl-badge-pill--free { background: #FDEBC8; color: #B45309; }
.rl-badge-pill--opt { background: #D7F5E1; color: #15803D; }
.rl-tool-body { display: flex; gap: 16px; align-items: flex-start; flex-wrap: wrap; }
.rl-tool-phone { flex: 0 0 150px; width: 150px; aspect-ratio: .5; border-radius: 18px; overflow: hidden; border: 5px solid var(--rl-ink-2); background: var(--rl-ink-2); }
.rl-tool-col { flex: 1 1 180px; min-width: 170px; }
.rl-tool .lead { font-size: 14px; font-weight: 800; color: var(--rl-ink-2); }
.rl-tool p { margin: 0 0 10px; font-size: 13px; font-weight: 600; color: var(--rl-body); line-height: 1.5; }
.rl-tool-media { width: 100%; border-radius: 14px; overflow: hidden; }

/* ============================================================
   SIMULATION BANNER
   ============================================================ */
.rl-simbanner { max-width: 1180px; margin: 0 auto; padding: 28px 24px; }
.rl-simbanner-in { background: var(--rl-violet); border-radius: 22px; padding: 26px 30px; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.rl-simbanner-ic { width: 60px; height: 60px; border-radius: 16px; background: rgba(255,255,255,.16); display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.rl-simbanner-copy { flex: 1 1 300px; min-width: 240px; color: #fff; }
.rl-simbanner-copy .h { font-size: clamp(19px, 2.2vw, 24px); font-weight: 900; line-height: 1.3; }
.rl-simbanner-copy .s { font-size: 14px; font-weight: 600; opacity: .85; margin-top: 4px; }

/* ============================================================
   COMPARISON GRID
   ============================================================ */
.rl-compare-wrap { max-width: 1080px; margin: 0 auto; padding: 22px 24px 30px; overflow-x: auto; }
.rl-compare { min-width: 640px; }
.rl-compare-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; align-items: stretch; }
.rl-compare-htitle { background: var(--rl-violet-btn); color: #fff; font-size: 14px; font-weight: 800; text-align: center; padding: 14px 10px; border-radius: 16px 16px 0 0; box-shadow: 0 -6px 24px rgba(90,61,240,.18); }
.rl-compare-hother { color: var(--rl-slate); font-size: 14px; font-weight: 800; text-align: center; padding: 14px 10px; }
.rl-compare-feat { padding: 13px 10px; border-bottom: 1px solid #EEECF6; font-size: 13.5px; font-weight: 700; color: var(--rl-text); }
.rl-compare-rl { padding: 13px 10px; border-bottom: 1px solid var(--rl-line-4-cmp,#E4DEFA); background: var(--rl-soft-6); border-left: 1.5px solid #E4DEFA; border-right: 1.5px solid #E4DEFA; display: flex; align-items: center; justify-content: center; gap: 7px; font-size: 13.5px; font-weight: 800; color: var(--rl-ink-2); }
.rl-compare-other { padding: 13px 10px; border-bottom: 1px solid #EEECF6; text-align: center; font-size: 13px; font-weight: 600; color: var(--rl-muted); }
.rl-compare-other--strong { font-weight: 800; color: var(--rl-text); }
.rl-compare-grid > .rl-compare-rl:last-child { border-bottom: 1.5px solid #E4DEFA; border-radius: 0 0 16px 16px; }

/* ============================================================
   LIVREUR promo block
   ============================================================ */
.rl-promo { max-width: 1180px; margin: 0 auto; padding: 14px 24px 30px; }
.rl-promo-in { background: var(--rl-soft-2); border-radius: 24px; padding: 28px; display: flex; gap: 28px; align-items: center; flex-wrap: wrap; }
.rl-promo-media { flex: 1 1 320px; min-width: 280px; aspect-ratio: 1.45; border-radius: 18px; overflow: hidden; }
.rl-promo-copy { flex: 1 1 300px; min-width: 260px; }
.rl-promo-copy h2 { margin: 0 0 18px; font-size: clamp(22px, 2.6vw, 29px); font-weight: 900; color: var(--rl-ink); line-height: 1.25; }
.rl-promo-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.rl-promo-list > div { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 700; color: var(--rl-text); }
.rl-promo-tick { width: 26px; height: 26px; border-radius: 50%; background: #E3DBFC; display: flex; align-items: center; justify-content: center; color: var(--rl-violet); flex: 0 0 auto; }

/* ============================================================
   FAQ
   ============================================================ */
.rl-faq-wrap { max-width: 900px; margin: 0 auto; padding: 20px 24px 30px; }
.rl-faq { display: flex; flex-direction: column; gap: 12px; }
.rl-faq details { background: #fff; border: 1.5px solid var(--rl-line); border-radius: 14px; padding: 2px 20px; }
.rl-faq summary { list-style: none; cursor: pointer; font-weight: 800; font-size: 14.5px; color: var(--rl-ink-2); padding: 16px 0; display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.rl-faq summary::-webkit-details-marker { display: none; }
.rl-faq summary::after { content: "⌄"; color: var(--rl-violet); font-size: 20px; transition: .2s; line-height: 1; }
.rl-faq details[open] summary::after { transform: rotate(180deg); }
.rl-faq details p { margin: 0 0 16px; font-size: 13.5px; font-weight: 600; color: var(--rl-body); line-height: 1.6; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.rl-cta-wrap { max-width: 1180px; margin: 0 auto; padding: 14px 24px 40px; }
.rl-cta { background: linear-gradient(180deg,#8A6BF7 0%,#5B3AD9 55%,#4C2FBE 100%); color: #fff; border-radius: 24px; padding: 34px 40px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.rl-cta .rl-h3 { color: #fff; margin: 0 0 6px; }
.rl-cta p { color: rgba(255,255,255,.85); margin: 0; font-weight: 600; }

/* ---------- inner-page helpers (Restaurants / Livreurs / A propos) ---------- */
.rl-page { max-width: 1220px; margin: 0 auto; padding: 0 24px; }
.rl-eyebrow-pill { display: inline-block; background: var(--rl-soft-4); color: var(--rl-violet-btn); font-size: 12px; font-weight: 900; letter-spacing: 1px; text-transform: uppercase; padding: 6px 14px; border-radius: 999px; }
.rl-eyebrow-up { font-size: 13px; font-weight: 900; letter-spacing: 1px; color: var(--rl-violet-btn); text-transform: uppercase; }
.rl a.rlx-bv:hover { background: var(--rl-violet-btn-h) !important; color: #fff !important; }
.rl a.rlx-bw:hover { background: var(--rl-soft-3) !important; color: var(--rl-violet-btn-h) !important; }
.rl a.rlx-bo:hover { background: var(--rl-soft-5) !important; color: var(--rl-violet) !important; }
.rl a.rlx-ghost:hover { background: rgba(255,255,255,0.12) !important; color: #fff !important; }
.rl a.rlx-store:hover { background: #1a1a1a !important; color: #fff !important; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.rl-nav { position: sticky; top: 0; z-index: 1000; background: #fff; border-bottom: 1px solid transparent; transition: .2s ease; }
.rl-nav.is-scrolled { border-bottom-color: var(--rl-line); box-shadow: 0 6px 24px rgba(30,27,51,.06); }
.rl-nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; max-width: 1220px; margin: 0 auto; padding: 14px 24px; }
.rl-nav-logo { display: flex; align-items: center; flex: 0 0 auto; }
.rl-nav-logo img { height: 40px; width: auto; }
.rl-nav-links { display: flex; align-items: center; gap: 2px; flex-wrap: wrap; flex: 1 1 auto; justify-content: center; }
.rl-nav-links > a, .rl-navdd > button { display: flex; align-items: center; gap: 5px; color: var(--rl-text); font-family: inherit; font-weight: 700; font-size: 14px; padding: 8px 12px; border-radius: 999px; text-decoration: none; background: none; border: none; cursor: pointer; transition: .15s; }
.rl-nav-links > a:hover, .rl-navdd > button:hover { background: var(--rl-soft); color: var(--rl-violet); }
.rl-nav-links > a.active { color: var(--rl-violet); font-weight: 800; }
.rl-nav-lang { text-decoration: underline; }
.rl-nav-actions { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.rl-nav-cta { display: flex; align-items: center; gap: 6px; font-family: inherit; font-weight: 800; font-size: 13px; padding: 10px 17px; border-radius: 999px; cursor: pointer; border: 1.5px solid transparent; text-decoration: none; transition: .15s; }
.rl-nav-cta--solid { background: var(--rl-violet); color: #fff; }
.rl-nav-cta--solid:hover { background: var(--rl-violet-h); color: #fff; }
.rl-nav-cta--outline { background: #fff; color: var(--rl-violet); border-color: var(--rl-line-4); }
.rl-nav-cta--outline:hover { background: var(--rl-soft-5); color: var(--rl-violet); }

.rl-navdd { position: relative; }
.rl-dd-menu { position: absolute; top: calc(100% + 8px); background: #fff; border: 1.5px solid var(--rl-line); border-radius: 14px; box-shadow: var(--rl-shadow-dd); padding: 8px; min-width: 210px; display: flex; flex-direction: column; z-index: 100; opacity: 0; visibility: hidden; transform: translateY(6px); transition: .16s ease; }
.rl-dd-menu--left { left: 0; }
.rl-dd-menu--right { right: 0; }
.rl-navdd.is-open .rl-dd-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.rl-dd-menu a { color: var(--rl-text); font-size: 13.5px; font-weight: 700; padding: 9px 12px; border-radius: 9px; text-decoration: none; }
.rl-dd-menu a:hover { background: var(--rl-soft); color: var(--rl-violet); }
.rl-nav-caret { transition: transform .2s; }
.rl-navdd.is-open .rl-nav-caret { transform: rotate(180deg); }

.rl-nav-mobile-actions { display: none; }
.rl-nav-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--rl-line); border-radius: 12px; background: #fff; cursor: pointer; padding: 0; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.rl-nav-toggle span { display: block; width: 20px; height: 2px; background: var(--rl-ink); border-radius: 2px; transition: .2s; }
.rl-nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.rl-nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.rl-nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.rl-newsletter { padding: 60px 0 0; background: #fff; }
.rl-newsletter-in { position: relative; z-index: 2; max-width: 1100px; margin: 0 auto; background: var(--rl-soft-2); border-radius: 24px; padding: 22px 26px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; box-shadow: var(--rl-shadow-nl); }
.rl-nl-ic { width: 56px; height: 56px; border-radius: 50%; background: #fff; display: flex; align-items: center; justify-content: center; flex: 0 0 auto; color: var(--rl-violet); }
.rl-nl-text { flex: 1 1 220px; min-width: 200px; }
.rl-nl-text h3 { font-size: 19px; font-weight: 900; color: var(--rl-ink); }
.rl-nl-text p { margin: 3px 0 0; font-size: 13.5px; font-weight: 600; color: var(--rl-body); }
.rl-nl-form { display: flex; align-items: center; gap: 10px; flex: 1 1 340px; min-width: 280px; justify-content: flex-end; flex-wrap: wrap; }
.rl-nl-form input { flex: 1 1 200px; min-width: 180px; border: 1.5px solid var(--rl-line-2); border-radius: 10px; padding: 11px 16px; font-size: 13.5px; font-weight: 600; color: var(--rl-text); outline: none; background: #fff; font-family: inherit; }
.rl-nl-form input:focus { border-color: var(--rl-violet); }
.rl-nl-form button { background: var(--rl-violet-btn); color: #fff; border: none; cursor: pointer; font-family: inherit; font-weight: 800; font-size: 13.5px; padding: 12px 22px; border-radius: 10px; transition: .15s; }
.rl-nl-form button:hover { background: var(--rl-violet-btn-h); }

/* ============================================================
   FOOTER
   ============================================================ */
.rl-footer-wrap { background: #fff; }
.rl-footer-shell { max-width: 1240px; margin: 0 auto; padding: 0 12px; position: relative; }
.rl-footer { background: linear-gradient(180deg,#8A6BF7 0%,#5B3AD9 55%,#4C2FBE 100%); border-radius: 36px 36px 0 0; margin-top: -42px; padding-top: 70px; }
.rl-footer-grid { max-width: 1140px; margin: 0 auto; padding: 20px 32px 26px; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; color: #fff; }
.rl-footer-logo { height: 46px; width: auto; filter: brightness(0) invert(1); }
.rl-footer-brand p { margin: 14px 0 16px; font-size: 13px; font-weight: 600; line-height: 1.6; color: rgba(255,255,255,.85); max-width: 260px; }
.rl-footer-social { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.rl-soc { display: inline-flex; width: 30px; height: 30px; border: 1.5px solid rgba(255,255,255,.7); border-radius: 8px; align-items: center; justify-content: center; color: #fff; text-decoration: none; transition: .15s; }
.rl-soc:hover { background: rgba(255,255,255,.15); color: #fff; }
.rl-store { display: flex; align-items: center; gap: 6px; background: #000; color: #fff; border-radius: 7px; padding: 5px 10px; text-decoration: none; transition: .15s; }
.rl-store:hover { background: #1a1a1a; color: #fff; }
.rl-store .cap { display: flex; flex-direction: column; line-height: 1.1; }
.rl-store .cap .t { font-size: 7px; font-weight: 600; letter-spacing: .5px; }
.rl-store .cap .b { font-size: 11px; font-weight: 800; }
.rl-footer-col .h { font-size: 14.5px; font-weight: 800; margin-bottom: 14px; }
.rl-footer-col .links { display: flex; flex-direction: column; gap: 9px; }
.rl-footer-col a { color: rgba(255,255,255,.85); font-size: 13px; font-weight: 600; text-decoration: none; }
.rl-footer-col a:hover { color: #fff; }
.rl-footer-contact { display: flex; flex-direction: column; gap: 9px; font-size: 13px; font-weight: 600; color: rgba(255,255,255,.85); }
.rl-footer-contact .row { display: flex; align-items: flex-start; gap: 8px; }
.rl-footer-contact .row svg { margin-top: 2px; flex: 0 0 auto; }
.rl-footer-bottom { border-top: 1px solid rgba(255,255,255,.2); text-align: center; padding: 14px 20px; font-size: 12px; font-weight: 600; color: rgba(255,255,255,.75); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
    .rl-nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 4px; background: #fff; border-bottom: 1px solid var(--rl-line); box-shadow: var(--rl-shadow-dd); padding: 14px 22px 22px; }
    .rl-nav-links.is-open { display: flex; }
    .rl-nav-links > a, .rl-navdd > button { justify-content: flex-start; padding: 12px 6px; border-bottom: 1px solid var(--rl-line); font-size: 15px; }
    .rl-nav-toggle { display: flex; }
    .rl-navmenu-dd { display: none; }
    .rl-nav-mobile-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 14px; }
    .rl-nav-mobile-actions .rl-btn { justify-content: center; }
}
@media (max-width: 767px) {
    .rl-hero-img { border-radius: 40px 40px 40px 40px; }
    .rl-cta, .rl-simbanner-in { text-align: left; }
    .rl-flow-arrow { display: none; }
    .rl-flow-step { flex-basis: 40%; }
}
@media (max-width: 575px) {
    .rl-nl-form { justify-content: stretch; }
    .rl-nl-form input, .rl-nl-form button { flex: 1 1 100%; }
    .rl-footer { border-radius: 24px 24px 0 0; }
}
