/* ==========================================================================
   RekordPlate — Modern Landing Page Redesign (visual override layer)
   --------------------------------------------------------------------------
   Loaded LAST after styles.css / responsive.css. Restyles the existing public
   marketing site (resources/views/web/*) WITHOUT touching markup, CMS bindings,
   routes, forms, or content fields. Pure layout / spacing / typography / color
   / hierarchy / component styling / responsiveness / motion.

   Brand accent: #0D9488 (orange) — used only for CTAs, active states,
   highlights and interactive elements. Foundation is clean white + light gray.
   Reference feel: Square POS / Toast / Stripe / Shopify.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Sora:wght@600;700;800&display=swap');

:root {
    /* Shift the theme brand from #fc8019 -> #0D9488 (cascades site-wide) */
    --clr-primary: #0d9488;
    --rp-font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --rp-font-display: 'Sora', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --clr-primary-600: #0f766e;
    --clr-primary-700: #115e59;

    /* Modern neutral foundation */
    --rp-ink: #0f172a;          /* headings */
    --rp-body: #475467;         /* body text */
    --rp-muted: #667085;        /* secondary text */
    --rp-line: #eaecf0;         /* hairline borders */
    --rp-surface: #ffffff;
    --rp-surface-2: #f9fafb;    /* light gray sections */
    --rp-tint: #f0fdfa;         /* soft orange wash */

    --rp-radius: 14px;          /* requested card radius */
    --rp-radius-sm: 10px;
    --rp-radius-pill: 999px;

    --rp-shadow-sm: 0 1px 2px rgba(16,24,40,.04), 0 1px 3px rgba(16,24,40,.06);
    --rp-shadow-md: 0 4px 16px rgba(16,24,40,.06), 0 2px 6px rgba(16,24,40,.04);
    --rp-shadow-lg: 0 18px 40px rgba(16,24,40,.10), 0 6px 14px rgba(16,24,40,.05);
    --rp-shadow-orange: 0 10px 24px rgba(13,148,136,.30);

    --rp-ease: .25s cubic-bezier(.4,0,.2,1);
}

/* --------------------------------------------------------------------------
   Foundation
   -------------------------------------------------------------------------- */
body {
    background: var(--rp-surface);
    color: var(--rp-body);
    font-family: var(--rp-font);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Headings use the Sora display face — geometric + confident, Square-like */
h1, h2, h3, h4, h5, h6,
.section-title h2, .banner-content h1 {
    font-family: var(--rp-font-display) !important;
    letter-spacing: -0.025em;
    color: var(--rp-ink);
}

/* More breathing room between sections (was 60px) */
section { padding: 88px 0; }
body .section-title { margin-bottom: 56px; }

.container { max-width: 1200px; }

/* Section headings — larger, stronger hierarchy */
body .section-title h2,
.section-title h2 {
    font-weight: 700;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--rp-ink);
}
.section-title .highlight-title,
.highlight-title { color: var(--clr-primary) !important; }

body .section-description,
.section-description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--rp-muted);
    max-width: 640px;
}
.section-title.text-center .section-description { margin-inline: auto; }

/* --------------------------------------------------------------------------
   Buttons (orange CTA system)
   -------------------------------------------------------------------------- */
.custom-primary-btn,
.custom-btn.custom-primary-btn,
.get-in-touch-btn,
.subscribe-plan,
.submit-btn,
.download-btn,
.verify-btn {
    background: var(--clr-primary) !important;
    border: 1px solid var(--clr-primary) !important;
    color: #fff !important;
    border-radius: var(--rp-radius-pill) !important;
    font-weight: 600 !important;
    padding: 13px 26px !important;
    box-shadow: var(--rp-shadow-orange);
    transition: transform var(--rp-ease), box-shadow var(--rp-ease), background var(--rp-ease);
}
.custom-primary-btn:hover,
.get-in-touch-btn:hover,
.subscribe-plan:hover,
.submit-btn:hover,
.download-btn:hover,
.verify-btn:hover {
    background: var(--clr-primary-600) !important;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(13,148,136,.36) !important;
    color: #fff !important;
}
.custom-primary-btn svg path { fill: #fff; }

/* Secondary / outline buttons */
.cancel-btn {
    border-radius: var(--rp-radius-pill) !important;
    border: 1px solid var(--rp-line) !important;
    color: var(--rp-body) !important;
    background: #fff !important;
    font-weight: 600 !important;
    padding: 12px 24px !important;
    transition: all var(--rp-ease);
}
.cancel-btn:hover { background: var(--rp-surface-2) !important; }

/* --------------------------------------------------------------------------
   Navigation — solid, clean, sticky (works over light hero)
   -------------------------------------------------------------------------- */
.header-section.home-header {
    position: sticky !important;
    background: rgba(255,255,255,.85) !important;
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--rp-line) !important;
    box-shadow: var(--rp-shadow-sm);
}
.header-section.home-header a { color: var(--rp-ink); }
.header-section .nav-link {
    color: var(--rp-body) !important;
    font-weight: 500;
    border-radius: var(--rp-radius-sm);
    transition: color var(--rp-ease);
}
.header-section .nav-link:hover { color: var(--clr-primary) !important; }

/* Login / Get app pill in nav */
.header-section.home-header .get-app-btn {
    background: var(--clr-primary) !important;
    border-radius: var(--rp-radius-pill) !important;
    padding: 10px 22px !important;
    box-shadow: var(--rp-shadow-orange);
    transition: transform var(--rp-ease), box-shadow var(--rp-ease);
}
.header-section.home-header .get-app-btn,
.header-section.home-header .get-app-btn .login-text { color: #fff !important; }
.header-section.home-header .get-app-btn svg path { fill: #fff !important; }
.header-section.home-header .get-app-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(13,148,136,.36);
}

/* --------------------------------------------------------------------------
   Hero — light, spacious, product-focused (replaces dark blur)
   -------------------------------------------------------------------------- */
.home-banner-section {
    position: relative;
    height: auto;
    min-height: auto;
    padding: 132px 0 104px;
    overflow: hidden;
    background:
        /* subtle dot grid for texture */
        radial-gradient(circle, rgba(16,24,40,.05) 1px, transparent 1.5px) 0 0 / 24px 24px,
        /* warm brand glow top-right */
        radial-gradient(48% 55% at 92% -8%, rgba(13,148,136,.16), rgba(13,148,136,0) 62%),
        /* cool accent bottom-left */
        radial-gradient(42% 52% at -6% 112%, rgba(0,113,188,.07), rgba(0,113,188,0) 60%),
        linear-gradient(180deg, #ffffff 0%, #fbfbfd 100%);
}
.home-banner-section::before { display: none !important; }
/* soft floating ring accent */
.home-banner-section::after {
    content: "";
    position: absolute; top: 12%; right: 6%;
    width: 320px; height: 320px; border-radius: 50%;
    background: radial-gradient(closest-side, rgba(13,148,136,.10), rgba(13,148,136,0) 70%);
    pointer-events: none; z-index: 0;
}
.home-banner-section .container { position: relative; z-index: 1; }

/* Eyebrow-style typed headline */
.home-banner-section .banner-content h1 {
    color: var(--rp-ink);
    font-weight: 800;
    font-size: clamp(42px, 5.6vw, 66px);
    line-height: 1.04;
    letter-spacing: -0.035em;
    margin-bottom: 22px;
}
.home-banner-section .banner-content h1 span {
    color: var(--clr-primary) !important;
    position: relative;
}
.home-banner-section .banner-content p {
    color: var(--rp-muted);
    opacity: 1;
    font-size: 19px;
    line-height: 1.65;
    max-width: 540px;
}
.home-banner-section .banner-content .demo-btn-group { margin-top: 38px; gap: 22px; align-items: center; }
.hero-watch { color: var(--rp-ink); font-weight: 600; }

/* Watch-video circular button */
.video-button .play-icon { background: var(--clr-primary); box-shadow: 0 8px 20px rgba(13,148,136,.34); }
.video-button .pulse-ring { border-color: rgba(13,148,136,.35) !important; background: rgba(13,148,136,.12) !important; }

/* ---- Hero image: flow naturally (was absolute/fixed-height), framed + glow ---- */
.home-banner-section .banner-img {
    position: relative !important;
    bottom: auto !important; right: auto !important;
    max-width: 560px !important; height: auto !important;
    margin-left: auto;
}
.home-banner-section .banner-img img { height: auto !important; }
.home-banner-section .banner-img .hero-bg-shape { opacity: .5; }
/* the product/screenshot image — shape-aware shadow + gentle float */
.home-banner-section .banner-img img:not(.hero-bg-shape) {
    position: relative; z-index: 2;
    filter: drop-shadow(0 34px 64px rgba(16,24,40,.20));
    animation: rpHeroFloat 6.5s ease-in-out infinite;
}
/* soft gradient blob behind the product image for depth */
.home-banner-section .banner-img .position-relative::after {
    content: "";
    position: absolute; inset: 2% -4% -6% -4%;
    z-index: 0;
    background: radial-gradient(58% 58% at 52% 42%, rgba(13,148,136,.22), rgba(13,148,136,0) 70%);
    filter: blur(14px);
    pointer-events: none;
}
@keyframes rpHeroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

/* --------------------------------------------------------------------------
   Feature / service cards — premium overhaul
   -------------------------------------------------------------------------- */
.service-section {
    background: linear-gradient(180deg, #ffffff 0%, var(--rp-surface-2) 100%);
}
/* Equal-height cards across each row */
.service-section .row { margin-top: 8px; }
.service-section .row > [class*="col-"] { display: flex; }

.service-section .service-card {
    position: relative;
    width: 100%;
    border-radius: 18px;
    border: 1px solid var(--rp-line);
    box-shadow: var(--rp-shadow-sm);
    padding: 34px 22px 30px;
    overflow: hidden;
    transition: transform var(--rp-ease), box-shadow var(--rp-ease), border-color var(--rp-ease);
}
/* orange top-accent that grows on hover */
.service-section .service-card::before {
    content: "";
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 0; height: 3px; border-radius: 0 0 4px 4px;
    background: var(--clr-primary);
    transition: width var(--rp-ease);
}
.service-section .service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--rp-shadow-lg);
    border-color: #99f6e4;
}
.service-section .service-card:hover::before { width: 64px; }

/* icon tile */
.service-section .service-card .image {
    width: 78px; height: 78px;
    margin: 0 auto 20px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 20px;
    background: var(--rp-tint);
    transition: background var(--rp-ease), transform var(--rp-ease);
}
.service-section .service-card:hover .image {
    transform: translateY(-2px) scale(1.05);
    background: rgba(13,148,136,.16);
}
.service-section .service-card .image img {
    height: 40px; width: 40px; object-fit: contain;
    transition: transform var(--rp-ease);
}
.service-section .service-card:hover .image img { transform: scale(1.08); }

.service-section .service-card .service-content h6 {
    margin: 0;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: -.01em;
    color: var(--rp-ink);
}

/* --------------------------------------------------------------------------
   Interface slider nav buttons
   -------------------------------------------------------------------------- */
.app-slider-section .custom-nav {
    width: 48px; height: 48px;
    background: #fff;
    border: 1px solid var(--rp-line);
    border-radius: var(--rp-radius-pill);
    box-shadow: var(--rp-shadow-md);
    display: flex; align-items: center; justify-content: center;
    transition: all var(--rp-ease);
}
.app-slider-section .custom-nav:hover { background: var(--clr-primary); border-color: var(--clr-primary); }
.app-slider-section .custom-nav:hover svg path { fill: #fff; }

/* --------------------------------------------------------------------------
   Get-app band + watch demo
   -------------------------------------------------------------------------- */
.get-app-container {
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    border-radius: 24px;
    padding: 56px 24px;
    margin: 0 auto;
    max-width: 1140px;
}
.get-app-container h2 { color: #fff; font-weight: 700; letter-spacing: -.02em; }
.get-app-container p { color: rgba(255,255,255,.72); }
.get-app-container .google-app-store { gap: 16px; margin-top: 24px; display: flex; justify-content: center; flex-wrap: wrap; }
.get-app-container .google-app-store img { transition: transform var(--rp-ease); }
.get-app-container .google-app-store a:hover img { transform: translateY(-3px); }

.watch-demo-section .video-wrapper img { border-radius: var(--rp-radius); box-shadow: var(--rp-shadow-lg); }
.watch-demo-section .play-btn,
.video-button .play-icon-2 { background: var(--clr-primary) !important; }

/* --------------------------------------------------------------------------
   Pricing
   -------------------------------------------------------------------------- */
.pricing-plan-section { background: var(--rp-surface-2); }
.pricing-plan-section .plans-card {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    align-items: stretch;
    width: 100%;
}
.pricing-plan-section .plans-card > div { margin-top: 0 !important; height: 100%; }
.pricing-plan-section .card {
    border: 1px solid var(--rp-line);
    border-radius: var(--rp-radius);
    background: #fff;
    box-shadow: var(--rp-shadow-sm);
    padding: 8px 6px 20px;
    height: 100%;
    transition: transform var(--rp-ease), box-shadow var(--rp-ease), border-color var(--rp-ease);
}
.pricing-plan-section .card:hover {
    transform: translateY(-6px);
    box-shadow: var(--rp-shadow-lg);
    border-color: #99f6e4;
}
.pricing-plan-section .pricing-top-card { gap: 14px; padding: 22px 22px 8px; }
.pricing-plan-section .pricing-top-card img { width: 48px; height: 48px; }
.pricing-plan-section .pricing-top-card p { color: var(--rp-muted); font-weight: 600; }
.pricing-plan-section .pricing-top-card h4 {
    color: var(--rp-ink); font-weight: 800; font-size: 30px; letter-spacing: -.02em;
}
.pricing-plan-section .price-span { color: var(--rp-muted); font-weight: 500; font-size: 14px; }
.pricing-plan-section .card-body ul li {
    color: var(--rp-body); padding: 7px 0; font-size: 15px;
}
.pricing-plan-section .subscribe-plan { width: 100%; text-align: center; }

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
.faq-main-container { background: #fff; }
.faq-section-container {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 40px;
    align-items: start;
}
.faq-get-in-content {
    background: var(--rp-tint);
    border: 1px solid #99f6e4;
    border-radius: var(--rp-radius);
    padding: 32px;
}
.faq-get-in-content h4 { color: var(--rp-ink); font-weight: 700; }
.faq-get-in-content p { color: var(--rp-muted); }

.custom-accordion-item {
    background: #fff;
    border: 1px solid var(--rp-line);
    border-radius: var(--rp-radius);
    margin-bottom: 14px;
    padding: 4px 6px;
    transition: box-shadow var(--rp-ease), border-color var(--rp-ease);
}
.custom-accordion-item:hover { box-shadow: var(--rp-shadow-md); }
.custom-accordion-item.active { border-color: #99f6e4; box-shadow: var(--rp-shadow-md); }
.custom-accordion-header {
    font-weight: 600; color: var(--rp-ink); font-size: 16px; padding: 16px 18px;
    display: flex; align-items: center; justify-content: space-between;
}
.custom-accordion-item.active .custom-accordion-header { color: var(--clr-primary); }
.custom-accordion-content { color: var(--rp-muted); padding: 0 18px 16px; line-height: 1.7; }
.custom-accordion-icon { color: var(--clr-primary); }

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */
.customer-section { background: var(--rp-surface-2); }
.customer-section .customer-card {
    background: #fff;
    border: 1px solid var(--rp-line);
    border-radius: var(--rp-radius);
    box-shadow: var(--rp-shadow-sm);
    padding: 28px;
    margin: 12px;
    transition: transform var(--rp-ease), box-shadow var(--rp-ease);
}
.customer-section .customer-card:hover { transform: translateY(-4px); box-shadow: var(--rp-shadow-lg); }
.customer-section .customer-card p { color: var(--rp-body); font-size: 16px; line-height: 1.7; }
.customer-section .customer-card h5 { color: var(--rp-ink); font-weight: 700; font-size: 16px; }
.customer-section .customer-card small { color: var(--rp-muted); }
.customer-section .customer-card .profile-img {
    width: 48px; height: 48px; border-radius: var(--rp-radius-pill); object-fit: cover;
}
.customer-section .customer-card .fa-star.text-warning { color: var(--clr-primary) !important; }

/* --------------------------------------------------------------------------
   Blog teaser
   -------------------------------------------------------------------------- */
.blogs-section .section-title h2 { text-align: left; }

/* --------------------------------------------------------------------------
   Forms & modals
   -------------------------------------------------------------------------- */
.modal-content { border: none; border-radius: 18px; box-shadow: var(--rp-shadow-lg); overflow: hidden; }
.modal-header { border-bottom: 1px solid var(--rp-line); padding: 20px 24px; }
.modal-title { color: var(--rp-ink); font-weight: 700; }
.custom-top-label { color: var(--rp-ink); font-weight: 600; font-size: 14px; margin-bottom: 6px; display: inline-block; }
.personal-info .form-control,
.modal-body .form-control,
.modal-body .form-selected {
    border-radius: var(--rp-radius-sm) !important;
    border: 1px solid var(--rp-line) !important;
    padding: 11px 14px !important;
    transition: border-color var(--rp-ease), box-shadow var(--rp-ease);
}
.personal-info .form-control:focus,
.modal-body .form-control:focus {
    border-color: var(--clr-primary) !important;
    box-shadow: 0 0 0 3px rgba(13,148,136,.14) !important;
}
.pin-input.otp-input {
    border-radius: var(--rp-radius-sm); border: 1px solid var(--rp-line);
    transition: border-color var(--rp-ease), box-shadow var(--rp-ease);
}
.pin-input.otp-input:focus { border-color: var(--clr-primary); box-shadow: 0 0 0 3px rgba(13,148,136,.14); }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer-section {
    position: relative;
    background: #ffffff;
    border-top: 1px solid var(--rp-line);
    padding-top: 80px !important;
    padding-bottom: 28px !important;
    overflow: hidden;
}
/* Brand accent hairline across the very top */
.footer-section::before {
    content: "";
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--clr-primary) 30%, #2dd4bf 50%, var(--clr-primary) 70%, transparent 100%);
    opacity: .9;
}

/* Brand / intro column */
.footer-section .footer-logo { height: 42px; width: auto; }
.footer-section .footer-details {
    color: var(--rp-muted);
    max-width: 360px;
    line-height: 1.75;
    font-size: 15px;
    margin-top: 18px !important;
}

/* Eyebrow-style column titles */
.footer-section .footer-title {
    color: var(--rp-ink) !important;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .04em;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 14px;
    margin-bottom: 22px !important;
}
.footer-section .footer-title::after {
    content: "";
    position: absolute; left: 0; bottom: 0;
    width: 28px; height: 2px; border-radius: 2px;
    background: var(--clr-primary);
}

/* Link lists */
.footer-section li { line-height: 1.4; }
.footer-section p, .footer-section li, .footer-section li a { color: var(--rp-body); }
.footer-section li a {
    display: inline-flex; align-items: center;
    font-size: 15px;
    transition: color var(--rp-ease), transform var(--rp-ease);
}
.footer-section li a:hover {
    color: var(--clr-primary) !important;
    transform: translateX(4px);
}
/* small orange marker that appears on hover */
.footer-section li a::before {
    content: "";
    width: 0; height: 1.5px; margin-right: 0;
    background: var(--clr-primary); border-radius: 2px;
    transition: width var(--rp-ease), margin-right var(--rp-ease);
}
.footer-section li a:hover::before { width: 12px; margin-right: 8px; }

/* Social chips (icons forced monochrome so they read on white, white on hover) */
.footer-section .social-link { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }
.footer-section .social-link li a {
    width: 42px; height: 42px; border-radius: 12px;
    background: var(--rp-surface-2);
    border: 1px solid var(--rp-line);
    display: flex; align-items: center; justify-content: center;
    transition: background var(--rp-ease), border-color var(--rp-ease), transform var(--rp-ease), box-shadow var(--rp-ease);
}
.footer-section .social-link li a::before { display: none; }
.footer-section .social-link li a img {
    width: 18px; height: 18px; object-fit: contain;
    filter: grayscale(1) brightness(.35);
    transition: filter var(--rp-ease);
}
.footer-section .social-link li a:hover {
    background: var(--clr-primary);
    border-color: var(--clr-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(13,148,136,.30);
}
.footer-section .social-link li a:hover img { filter: brightness(0) invert(1); }

/* Bottom bar */
.footer-section hr.custom-clr-white {
    border-color: var(--rp-line);
    opacity: 1;
    margin-top: 56px;
    margin-bottom: 22px;
}
.footer-section .text-center p.text-white {
    color: var(--rp-muted) !important;
    font-size: 14px;
}

/* ==========================================================================
   INNER PAGES (about / pricing / blog / contact / legal) — shared layout
   ========================================================================== */

/* Common (non-home) header: solid white, dark links, orange pill CTA */
.header-section:not(.home-header) {
    background: rgba(255,255,255,.9) !important;
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--rp-line) !important;
    box-shadow: var(--rp-shadow-sm);
}
.header-section .nav-link.active { color: var(--clr-primary) !important; font-weight: 600; }
.login-btn-2 {
    background: var(--clr-primary) !important;
    color: #fff !important;
    border-radius: var(--rp-radius-pill) !important;
    padding: 10px 22px !important;
    font-weight: 600;
    box-shadow: var(--rp-shadow-orange);
    transition: transform var(--rp-ease), box-shadow var(--rp-ease);
}
.login-btn-2:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(13,148,136,.36); color:#fff !important; }
.login-btn-2 svg path { fill: #fff; }

/* Breadcrumb band */
.banner-bg {
    background: var(--rp-surface-2) !important;
    border-bottom: 1px solid var(--rp-line);
    padding: 22px 0 !important;
}
.banner-bg .custom-clr-dark { color: var(--rp-muted) !important; font-weight: 500; font-size: 14px; }
.banner-bg .font-monospace { color: var(--rp-line); margin: 0 6px; }

/* About */
.about-section h6 .custom-clr-primary { color: var(--clr-primary); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; font-size: 13px; }
.about-section h2 { font-size: clamp(28px,3.4vw,40px); font-weight: 800; line-height: 1.15; color: var(--rp-ink); }
.about-section p { color: var(--rp-body); font-size: 17px; line-height: 1.75; }
.about-section .about-img { border-radius: var(--rp-radius); box-shadow: var(--rp-shadow-lg); width: 100%; }
.about-section ul li {
    position: relative; padding-left: 30px; margin: 10px 0; color: var(--rp-body); line-height: 1.6;
}
.about-section ul li::before {
    content: ""; position: absolute; left: 0; top: 4px;
    width: 18px; height: 18px; border-radius: var(--rp-radius-pill);
    background: var(--rp-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23f97316' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat;
}

/* Contact */
.contact-section .contact-image img { border-radius: var(--rp-radius); box-shadow: var(--rp-shadow-lg); }
.contact-section .col-form-label { color: var(--rp-ink); font-weight: 600; font-size: 14px; }
.contact-section .text-orange { color: var(--clr-primary); }
.contact-section .form-control {
    border-radius: var(--rp-radius-sm) !important;
    border: 1px solid var(--rp-line) !important;
    padding: 12px 14px !important;
    transition: border-color var(--rp-ease), box-shadow var(--rp-ease);
}
.contact-section .form-control:focus {
    border-color: var(--clr-primary) !important;
    box-shadow: 0 0 0 3px rgba(13,148,136,.14) !important;
}
.custom-message-btn { width: 100%; }

/* Blog cards */
.blog-shadow {
    background: #fff;
    border: 1px solid var(--rp-line);
    border-radius: var(--rp-radius) !important;
    box-shadow: var(--rp-shadow-sm);
    overflow: hidden;
    transition: transform var(--rp-ease), box-shadow var(--rp-ease);
    height: 100%;
}
.blog-shadow:hover { transform: translateY(-5px); box-shadow: var(--rp-shadow-lg); }
.blog-section .landing-blog-img { width: 100%; height: 200px; object-fit: cover; }
.blog-section .blog-sm-img { width: 92px; height: 92px; object-fit: cover; border-radius: var(--rp-radius-sm); }
.blog-shadow h6 { color: var(--rp-ink); font-weight: 700; }
.blog-shadow p { color: var(--rp-muted); font-size: 14px; line-height: 1.6; }
.blog-shadow .custom-clr-primary { color: var(--clr-primary) !important; font-weight: 600; }
.tags-btns .tags-btn {
    border-radius: var(--rp-radius-pill) !important;
    background: var(--rp-surface-2) !important;
    color: var(--rp-body) !important;
    border: 1px solid var(--rp-line) !important;
    padding: 6px 14px !important;
    font-size: 13px !important;
    transition: all var(--rp-ease);
}
.tags-btns .tags-btn:hover { background: var(--clr-primary) !important; color: #fff !important; border-color: var(--clr-primary) !important; }

/* Legal / long-form content (terms, privacy) */
.terms-policy-section { font-size: 16px; line-height: 1.85; color: var(--rp-body); }
.terms-policy-section .container { max-width: 860px; }
.terms-policy-section h2 { color: var(--rp-ink); font-weight: 800; font-size: clamp(26px,3vw,36px); margin-bottom: 18px; }
.terms-policy-section p { color: var(--rp-body); margin-bottom: 18px; }

/* --------------------------------------------------------------------------
   Subtle, non-distracting motion
   -------------------------------------------------------------------------- */
a, button, .card, .service-card, .customer-card { transition: color var(--rp-ease), background var(--rp-ease), transform var(--rp-ease), box-shadow var(--rp-ease); }

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; }
}

/* --------------------------------------------------------------------------
   Responsive refinements
   -------------------------------------------------------------------------- */
@media (max-width: 991px) {
    section { padding: 60px 0; }
    .faq-section-container { grid-template-columns: 1fr; gap: 24px; }
    .home-banner-section { padding: 104px 0 64px; text-align: center; }
    .home-banner-section .banner-content p { margin-inline: auto; }
    .home-banner-section .banner-content .demo-btn-group { justify-content: center; }
    .home-banner-section .banner-img { margin: 36px auto 0 !important; }
    .home-banner-section::after { display: none; }
}
@media (max-width: 575px) {
    .section-title h2 { font-size: 28px; }
    .get-app-container { padding: 40px 18px; border-radius: 18px; }
    .custom-primary-btn, .subscribe-plan, .submit-btn { width: 100%; justify-content: center; }
}
