        :root {
            --bg: #fff7f7;
            --panel: #ffffff;
            --panel-soft: #fff1f2;
            --text: #2d0808;
            --muted: #7b1d1d;
            --line: #fecaca;
            --brand: #ef4444;
            --brand-dark: #b91c1c;
            --brand-mid: #dc2626;
            --shadow: 0 14px 40px rgba(127, 29, 29, 0.13);
            --shadow-sm: 0 4px 16px rgba(127, 29, 29, 0.09);
            --radius: 20px;
            --radius-sm: 12px;
            --max: 1180px;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Nunito', sans-serif;
            color: var(--text);
            line-height: 1.65;
            background: #fffafa;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        .container {
            width: min(var(--max), calc(100% - 2.5rem));
            margin: 0 auto;
        }

        /* ── TOP CONTACT BAR ── */
        .contact-bar {
            background: linear-gradient(90deg, var(--brand-dark), var(--brand));
            color: #fff;
            padding: 0.45rem 0;
            font-size: 0.82rem;
            font-weight: 700;
        }

        .contact-bar .container {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .contact-bar a {
            color: #fff;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            opacity: 0.95;
            transition: opacity 0.2s;
        }

        .contact-bar a:hover {
            opacity: 1;
            text-decoration: underline;
        }

        .contact-bar .icon {
            width: 16px;
            height: 16px;
            background: rgba(255, 255, 255, 0.25);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 0.65rem;
        }

        /* ── NAVBAR ── */
        .topbar {
            position: sticky;
            top: 0;
            z-index: 1000;
            -webkit-backdrop-filter: blur(14px);
            backdrop-filter: blur(14px);
            background: rgba(255, 250, 250, 0.94);
            border-bottom: 1px solid var(--line);
            box-shadow: 0 2px 12px rgba(127, 29, 29, 0.07);
        }

        .nav {
            min-height: 76px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 0.9rem;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.3rem 0.6rem;
            border-radius: 14px;
            background: #fff;
            border: 1px solid var(--line);
            box-shadow: var(--shadow-sm);
            flex-shrink: 0;
        }

        .brand img {
            height: 60px;
            width: auto;
            border-radius: 8px;
            filter: drop-shadow(0 4px 10px rgba(127, 29, 29, 0.25));
        }

        .brand-text strong {
            font-family: 'Poppins', sans-serif;
            font-size: 0.92rem;
            display: block;
            line-height: 1.2;
        }

        .brand-text span {
            color: var(--muted);
            font-size: 0.76rem;
        }

        .nav-links {
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem;
            align-items: center;
        }

        .nav-links a {
            padding: 0.46rem 0.85rem;
            border-radius: 999px;
            color: var(--muted);
            font-weight: 700;
            font-size: 0.88rem;
            transition: background 0.18s, color 0.18s;
        }

        .nav-links a:hover,
        .nav-links a.active {
            background: var(--panel-soft);
            color: var(--text);
        }

        .nav-links .cta {
            background: linear-gradient(90deg, var(--brand), var(--brand-dark));
            color: #fff !important;
            box-shadow: 0 6px 18px rgba(239, 68, 68, 0.32);
        }

        .nav-links .cta:hover {
            background: linear-gradient(90deg, var(--brand-dark), #991b1b);
        }

        /* ── HERO ── */
        .hero {
            padding: 4rem 0 2.5rem;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -120px;
            right: -120px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(239, 68, 68, 0.12), transparent 70%);
            pointer-events: none;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 1.2rem;
            align-items: stretch;
        }

        .hero-card {
            background: rgba(255, 255, 255, 0.9);
            border: 1px solid var(--line);
            border-radius: 26px;
            box-shadow: var(--shadow);
            padding: 2rem 1.8rem;
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .pill {
            display: inline-flex;
            align-items: center;
            gap: 0.44rem;
            border: 1px solid var(--line);
            border-radius: 999px;
            background: #fff;
            color: var(--muted);
            padding: 0.4rem 0.85rem;
            font-size: 0.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
            width: fit-content;
        }

        .pill::before {
            content: "";
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--brand);
            box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.15);
        }

        h1 {
            font-family: 'Poppins', sans-serif;
            font-size: clamp(2rem, 4vw, 3rem);
            line-height: 1.13;
            letter-spacing: -0.02em;
            margin-bottom: 0.9rem;
        }

        h1 em {
            font-style: normal;
            color: var(--brand);
        }

        .hero-copy {
            color: var(--muted);
            margin-bottom: 1.4rem;
            font-size: 1.02rem;
            max-width: 52ch;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 0.7rem;
            margin-bottom: 1.4rem;
        }

        .btn {
            min-height: 44px;
            padding: 0.7rem 1.2rem;
            border-radius: var(--radius-sm);
            border: 1px solid var(--line);
            font-weight: 800;
            font-family: 'Nunito', sans-serif;
            font-size: 0.92rem;
            background: #fff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.4rem;
            transition: transform 0.2s, box-shadow 0.2s;
            cursor: pointer;
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-sm);
        }

        .btn-primary {
            background: linear-gradient(90deg, var(--brand), var(--brand-dark));
            color: #fff;
            border-color: transparent;
            box-shadow: 0 8px 24px rgba(239, 68, 68, 0.3);
        }

        .btn-primary:hover {
            box-shadow: 0 12px 30px rgba(239, 68, 68, 0.4);
        }

        .hero-points {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.6rem;
        }

        .hero-points div {
            background: #fff;
            border: 1px solid var(--line);
            border-radius: var(--radius-sm);
            padding: 0.7rem 0.8rem;
        }

        .hero-points strong {
            display: block;
            font-family: 'Poppins', sans-serif;
            font-size: 0.88rem;
            line-height: 1.2;
        }

        .hero-points span {
            color: var(--muted);
            font-size: 0.78rem;
        }

        .hero-visual {
            background: rgba(255, 255, 255, 0.88);
            border: 1px solid var(--line);
            border-radius: 26px;
            box-shadow: var(--shadow);
            overflow: hidden;
        }

        .hero-visual img {
            width: 100%;
            height: 100%;
            min-height: 400px;
            object-fit: cover;
        }

        
        section {
            padding: 3.25rem 0;
        }
#contact {
            scroll-margin-top: 12rem;
        }

        .section-head {
            margin-bottom: 1.4rem;
        }

        .section-head h2 {
            font-family: 'Poppins', sans-serif;
            font-size: clamp(1.5rem, 2.8vw, 2.1rem);
            letter-spacing: -0.01em;
            margin-bottom: 0.35rem;
            line-height: 1.2;
        }

        .section-head p {
            color: var(--muted);
            max-width: 68ch;
            font-size: 0.97rem;
        }

        /* ── CARDS ── */
        .card {
            background: rgba(255, 255, 255, 0.92);
            border: 1px solid var(--line);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            overflow: hidden;
            transition: transform 0.22s, box-shadow 0.22s;
        }

        .card:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 50px rgba(127, 29, 29, 0.15);
        }

        .card-body {
            padding: 1.1rem 1.2rem;
        }

        .card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }

        .card h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.05rem;
            margin-bottom: 0.38rem;
        }

        .card p {
            color: var(--muted);
            font-size: 0.93rem;
        }

        /* ── GRID ── */
        .grid {
            display: grid;
            gap: 1rem;
        }

        .grid-3 {
            grid-template-columns: repeat(3, 1fr);
        }

        .grid-2 {
            grid-template-columns: repeat(2, 1fr);
        }

        .split {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        /* ── PILLAR CARDS ── */
        .pillar {
            position: relative;
        }

        .pillar .service-num {
            position: absolute;
            top: 12px;
            left: 12px;
            width: 34px;
            height: 34px;
            background: linear-gradient(135deg, var(--brand), var(--brand-dark));
            color: #fff;
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 0.85rem;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1;
            box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
        }

        .pillar .card-body {
            padding: 1.2rem;
        }

        .badge-row {
            margin-top: 0.6rem;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem;
        }

        .badge {
            font-size: 0.75rem;
            background: var(--panel-soft);
            border: 1px solid var(--line);
            color: var(--muted);
            border-radius: 999px;
            padding: 0.22rem 0.55rem;
            font-weight: 700;
        }

        .learn-more {
            display: inline-flex;
            margin-top: 0.75rem;
            color: var(--brand-dark);
            font-weight: 800;
            font-size: 0.9rem;
            gap: 0.3rem;
            transition: gap 0.18s;
        }

        .learn-more:hover {
            gap: 0.5rem;
        }

        /* ── PROCESS STEPS ── */
        .info-list {
            display: grid;
            gap: 0.7rem;
        }

        .info-item {
            display: grid;
            grid-template-columns: 56px 1fr;
            gap: 0.7rem;
            align-items: start;
            padding: 0.9rem;
            border-radius: 14px;
            border: 1px solid var(--line);
            background: #fff;
        }

        .info-item .num {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            display: grid;
            place-items: center;
            font-family: 'Poppins', sans-serif;
            font-size: 1.1rem;
            font-weight: 800;
            color: #fff;
            background: linear-gradient(140deg, var(--brand), var(--brand-dark));
            flex-shrink: 0;
        }

        .info-item h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 0.97rem;
            margin-bottom: 0.2rem;
        }

        .info-item p {
            color: var(--muted);
            font-size: 0.88rem;
        }

        /* ── STORIES & BLOGS ── */
        .blog-card .meta {
            color: var(--muted);
            font-size: 0.76rem;
            display: flex;
            gap: 0.4rem;
            flex-wrap: wrap;
            margin-bottom: 0.45rem;
        }

        .blog-card .meta span {
            background: #fff;
            border: 1px solid var(--line);
            border-radius: 999px;
            padding: 0.18rem 0.46rem;
            font-weight: 700;
        }

        /* ── CONTACT SECTION ── */
        .contact-wrap {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 1rem;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 0.7rem;
            margin-top: 1rem;
        }

        .contact-detail {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.85rem 1rem;
            background: #fff;
            border: 1px solid var(--line);
            border-radius: var(--radius-sm);
        }

        .contact-detail-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: linear-gradient(135deg, var(--brand), var(--brand-dark));
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-detail-icon svg {
            width: 18px;
            height: 18px;
            fill: #fff;
        }

        .contact-detail-text strong {
            display: block;
            font-family: 'Poppins', sans-serif;
            font-size: 0.82rem;
            color: var(--muted);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 0.1rem;
        }

        .contact-detail-text a,
        .contact-detail-text span {
            font-weight: 700;
            font-size: 0.95rem;
            color: var(--text);
            transition: color 0.18s;
        }

        .contact-detail-text a:hover {
            color: var(--brand);
        }

        form {
            display: grid;
            gap: 0.7rem;
        }

        label {
            font-weight: 700;
            font-size: 0.88rem;
            margin-bottom: 0.2rem;
            display: block;
        }

        input,
        select,
        textarea {
            width: 100%;
            border: 1px solid var(--line);
            border-radius: 10px;
            padding: 0.65rem 0.8rem;
            font: inherit;
            font-size: 0.93rem;
            background: #fff;
            color: var(--text);
            transition: border-color 0.18s, box-shadow 0.18s;
        }

        input:focus,
        select:focus,
        textarea:focus {
            outline: none;
            border-color: var(--brand);
            box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
        }

        textarea {
            min-height: 110px;
            resize: vertical;
        }

        
        .contact-wrap {
            align-items: start;
        }

        .contact-card .card-body,
        .contact-form-card .card-body {
            padding: 1.3rem 1.35rem;
        }

        .contact-title {
            font-family: 'Poppins', sans-serif;
            font-size: 1.15rem;
            line-height: 1.25;
            margin-bottom: 0.35rem;
        }

        .contact-subtitle {
            font-size: 0.92rem;
            color: var(--muted);
            margin-bottom: 0.35rem;
        }

        .contact-detail {
            align-items: flex-start;
        }

        .contact-detail-text a,
        .contact-detail-text span {
            word-break: break-word;
        }

        .contact-badges {
            margin-top: 1rem;
        }

        .contact-form-title {
            font-family: 'Poppins', sans-serif;
            font-size: 1.08rem;
            margin-bottom: 0.8rem;
        }

        .contact-submit {
            width: 100%;
            margin-top: 0.15rem;
        }
        /* ── FAQ ── */
        .faq-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.8rem;
        }

        /* ── TRUST STRIP ── */
        .trust-strip {
            background: linear-gradient(90deg, var(--brand-dark), var(--brand-mid), var(--brand));
            padding: 1.4rem 0;
            overflow: hidden;
        }

        .trust-strip .container {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            color: #fff;
        }

        .trust-item strong {
            font-family: 'Poppins', sans-serif;
            font-size: 1.25rem;
            font-weight: 800;
        }

        .trust-item span {
            font-size: 0.82rem;
            opacity: 0.88;
        }

        /* ── FOOTER ── */
        footer {
            border-top: 1px solid var(--line);
            background: rgba(255, 255, 255, 0.78);
            padding: 2rem 0 2.5rem;
            margin-top: 2.5rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr;
            gap: 2rem;
            margin-bottom: 1.5rem;
        }

        .footer-brand img {
            height: 52px;
            margin-bottom: 0.6rem;
            filter: drop-shadow(0 3px 8px rgba(127, 29, 29, 0.2));
        }

        .footer-brand p {
            color: var(--muted);
            font-size: 0.88rem;
            max-width: 36ch;
        }

        .footer-brand .footer-contact {
            margin-top: 0.9rem;
            display: flex;
            flex-direction: column;
            gap: 0.35rem;
        }

        .footer-brand .footer-contact a {
            color: var(--muted);
            font-size: 0.85rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            transition: color 0.18s;
        }

        .footer-brand .footer-contact a:hover {
            color: var(--brand);
        }

        .footer-col h4 {
            font-family: 'Poppins', sans-serif;
            font-size: 0.9rem;
            font-weight: 700;
            margin-bottom: 0.7rem;
            color: var(--text);
        }

        .footer-col a {
            display: block;
            color: var(--muted);
            font-size: 0.87rem;
            font-weight: 600;
            padding: 0.22rem 0;
            transition: color 0.18s;
        }

        .footer-col a:hover {
            color: var(--brand);
        }

        .footer-bottom {
            padding-top: 1.2rem;
            border-top: 1px solid var(--line);
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.5rem;
            color: var(--muted);
            font-size: 0.82rem;
        }

        /* ── FLOATING CALL BTN ── */
        .float-call {
            position: fixed;
            bottom: 1.5rem;
            right: 1.5rem;
            background: linear-gradient(135deg, var(--brand), var(--brand-dark));
            color: #fff;
            padding: 0.75rem 1.2rem;
            border-radius: 999px;
            font-weight: 800;
            font-size: 0.88rem;
            box-shadow: 0 8px 28px rgba(239, 68, 68, 0.45);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            z-index: 999;
            transition: transform 0.2s, box-shadow 0.2s;
            animation: pulse-shadow 2.5s infinite;
        }

        .float-call:hover {
            transform: translateY(-2px) scale(1.03);
            box-shadow: 0 14px 36px rgba(239, 68, 68, 0.5);
        }

        @keyframes pulse-shadow {

            0%,
            100% {
                box-shadow: 0 8px 28px rgba(239, 68, 68, 0.45);
            }

            50% {
                box-shadow: 0 8px 36px rgba(239, 68, 68, 0.65);
            }
        }

        /* ── RESPONSIVE ── */
        @media (max-width: 1050px) {

            .hero-grid,
            .split,
            .grid-3,
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }

            .contact-wrap {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 760px) {
            section {
                padding: 2.4rem 0;
            }
            .nav-links a:not(.cta) {
                display: none;
            }

            .hero-grid,
            .split,
            .grid-3,
            .grid-2,
            .faq-grid,
            .footer-grid,
            .contact-wrap,
            .hero-points {
                grid-template-columns: 1fr;
            }

            .brand img {
                height: 50px;
            }

            .hero {
                padding-top: 4.5rem;
            }

            .hero-visual {
                display: none;
            }

            .trust-strip .container {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .contact-bar .container {
                justify-content: center;
            }

            .float-call span {
                display: none;
            }

            .float-call {
                padding: 0.85rem;
                border-radius: 50%;
            }
        }
    















