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

     :root {
         --bg: #f7f2e9;
         --bg-soft: #fffaf2;
         --card: rgba(255, 255, 255, 0.86);
         --white: #ffffff;
         --text: #132133;
         --muted: #667085;
         --gold: #d8a54a;
         --gold-soft: #f0d391;
         --navy: #101827;
         --navy-2: #1c293a;
         --green: #16824a;
         --line: #eadcc3;
         --shadow-lg: 0 24px 80px rgba(10, 18, 32, 0.12);
         --shadow-md: 0 12px 36px rgba(10, 18, 32, 0.08);
         --radius-xl: 34px;
         --radius-lg: 26px;
         --radius-md: 20px;
     }

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

     html {
         scroll-behavior: smooth;
     }

     html,
     body {
         overflow-x: hidden;
     }

     body {
         width: 100%;
         overflow-x: hidden;
         font-family: Arial, Helvetica, sans-serif;
         background:
             radial-gradient(circle at top right, rgba(216, 165, 74, 0.18), transparent 25%),
             radial-gradient(circle at bottom left, rgba(16, 24, 39, 0.04), transparent 22%),
             linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
         color: var(--text);
         line-height: 1.6;
     }

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

     main,
     section,
     .container,
     .section-card,
     .showcase-card,
     .premium-card,
     .glass-panel {
         max-width: 100%;
     }

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

     .container {
         width: min(1180px, calc(100% - 32px));
         margin: 0 auto;
     }

     .btn {
         display: inline-flex;
         align-items: center;
         justify-content: center;
         gap: 10px;
         padding: 14px 22px;
         border-radius: 14px;
         font-size: 15px;
         font-weight: 800;
         transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
         border: 1px solid transparent;
         cursor: pointer;
         text-align: center;
     }

     .btn:hover {
         transform: translateY(-1px);
     }

     .btn-gold {
         background: linear-gradient(180deg, var(--gold-soft), var(--gold));
         color: #1b1b1b;
         box-shadow: 0 10px 26px rgba(216, 165, 74, .28);
     }

     .btn-white {
         background: rgba(255, 255, 255, .96);
         border-color: #dee3ea;
         color: var(--text);
     }

     .btn-green {
         background: var(--green);
         color: #fff;
     }

     .btn-dark {
         background: #0f1722;
         color: #fff;
     }

     header {
         position: sticky;
         top: 0;
         z-index: 60;
         background: rgba(255, 255, 255, .88);
         backdrop-filter: blur(10px);
         border-bottom: 1px solid rgba(234, 220, 195, .85);
     }

     .nav {
         min-height: 88px;
         display: flex;
         justify-content: space-between;
         align-items: center;
         gap: 16px;
         padding: 12px 0;
     }

     .brand {
         display: flex;
         align-items: center;
         gap: 14px;
         min-width: 0;
     }

     .brand img {
         width: 62px;
         height: 62px;
         object-fit: cover;
         border-radius: 50%;
         border: 3px solid #fff;
         box-shadow: 0 10px 20px rgba(0, 0, 0, .12);
         flex-shrink: 0;
     }

     .brand h1 {
         font-size: 18px;
         line-height: 1.15;
         letter-spacing: .2px;
         font-weight: 800;
     }

     .brand p {
         color: var(--muted);
         font-size: 12px;
         margin-top: 3px;
     }

     .nav-actions {
         display: flex;
         flex-wrap: wrap;
         justify-content: flex-end;
         gap: 10px;
     }

     .hero {
         padding: 40px 0 22px;
     }

     .hero-grid {
         display: grid;
         grid-template-columns: 1.1fr .9fr;
         gap: 26px;
         align-items: stretch;
     }

     .hero-card {
         position: relative;
         overflow: hidden;
         border-radius: var(--radius-xl);
         color: #fff;
         background:
             radial-gradient(circle at 88% 12%, rgba(240, 211, 145, 0.24), transparent 22%),
             linear-gradient(135deg, rgba(12, 18, 28, .98), rgba(30, 42, 58, .95));
         box-shadow: var(--shadow-lg);
     }

     .hero-card::before {
         content: '';
         position: absolute;
         inset: 0;
         background: linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(255, 255, 255, .00));
         pointer-events: none;
     }

     .hero-inner {
         position: relative;
         padding: 38px;
     }

     .eyebrow {
         display: inline-flex;
         align-items: center;
         gap: 8px;
         padding: 8px 14px;
         border-radius: 999px;
         font-size: 13px;
         color: #f6dfae;
         background: rgba(255, 255, 255, .08);
         border: 1px solid rgba(255, 255, 255, .14);
         margin-bottom: 16px;
     }

     .hero-title {
         font-size: 52px;
         line-height: 1.05;
         letter-spacing: -0.4px;
         margin-bottom: 14px;
     }

     .hero-text {
         color: #eef2f7;
         font-size: 18px;
         max-width: 710px;
         margin-bottom: 18px;
     }

     .feature-box {
         background: rgba(255, 255, 255, .075);
         border: 1px solid rgba(255, 255, 255, .13);
         border-radius: 22px;
         padding: 17px;
         color: #f5f6f8;
         font-size: 15px;
         margin-bottom: 18px;
     }

     .feature-box strong {
         color: #f7dfaa;
     }

     .hero-chips {
         display: flex;
         flex-wrap: wrap;
         gap: 10px;
         margin-top: 18px;
     }

     .hero-chips span {
         padding: 9px 13px;
         border-radius: 999px;
         font-size: 13px;
         background: rgba(255, 255, 255, .09);
         border: 1px solid rgba(255, 255, 255, .12);
         color: #fafbfc;
     }

     .action-row {
         display: flex;
         flex-wrap: wrap;
         gap: 12px;
     }

     .glass-panel {
         position: relative;
         background: var(--card);
         backdrop-filter: blur(8px);
         border: 1px solid rgba(234, 220, 195, .85);
         border-radius: var(--radius-xl);
         box-shadow: var(--shadow-lg);
         overflow: hidden;
     }

     .glass-panel::before {
         content: '';
         position: absolute;
         right: -50px;
         top: -50px;
         width: 180px;
         height: 180px;
         background: radial-gradient(circle, rgba(216, 165, 74, .20), transparent 65%);
         pointer-events: none;
     }

     .panel-inner {
         position: relative;
         padding: 28px;
     }

     .panel-top {
         display: flex;
         align-items: center;
         gap: 14px;
         margin-bottom: 16px;
     }

     .panel-top img {
         width: 76px;
         height: 76px;
         object-fit: cover;
         border-radius: 22px;
         border: 1px solid var(--line);
         background: #fff;
     }

     .panel-title {
         font-size: 28px;
         line-height: 1.2;
         font-weight: 800;
     }

     .panel-sub {
         font-size: 14px;
         color: var(--muted);
         margin-top: 4px;
     }

     label {
         display: block;
         font-size: 14px;
         font-weight: 800;
         margin: 12px 0 7px;
     }

     input,
     select {
         width: 100%;
         padding: 14px;
         border-radius: 14px;
         border: 1px solid #d7dde5;
         background: rgba(255, 255, 255, .95);
         color: var(--text);
         font-size: 15px;
     }

     .tiny-note {
         margin-top: 10px;
         color: var(--muted);
         font-size: 12px;
     }

     section {
         padding: 28px 0 0;
     }

     .section-card {
         background: rgba(255, 255, 255, .88);
         border: 1px solid rgba(234, 220, 195, .92);
         border-radius: 30px;
         padding: 34px;
         box-shadow: var(--shadow-md);
     }

     .section-heading {
         text-align: center;
         font-size: 36px;
         margin-bottom: 10px;
     }

     .section-copy {
         text-align: center;
         color: var(--muted);
         max-width: 850px;
         margin: 0 auto 28px;
     }

     .grid-4 {
         display: grid;
         grid-template-columns: repeat(4, 1fr);
         gap: 18px;
     }

     .info-card {
         background: linear-gradient(180deg, #ffffff, #fcf6ea);
         border: 1px solid #efe3cf;
         border-radius: 24px;
         padding: 22px;
     }

     .info-card h3 {
         font-size: 18px;
         margin-bottom: 8px;
     }

     .info-card p {
         color: var(--muted);
         font-size: 15px;
     }

     .showcase-card {
         overflow: hidden;
         border-radius: 32px;
         background: #fff;
         border: 1px solid var(--line);
         box-shadow: var(--shadow-lg);
     }

     .showcase-image {
         position: relative;
     }

     .showcase-image img {
         width: 100%;
         height: auto;
     }

     .showcase-overlay {
         position: absolute;
         inset: auto 0 0 0;
         padding: 26px;
         background: linear-gradient(180deg, rgba(10, 15, 24, 0.00), rgba(10, 15, 24, 0.84));
         color: #fff;
     }

     .showcase-overlay h2 {
         font-size: 34px;
         margin-bottom: 8px;
     }

     .showcase-overlay p {
         color: rgba(255, 255, 255, .90);
         max-width: 820px;
         font-size: 18px;
         line-height: 1.45;
     }

     .split-grid {
         display: grid;
         grid-template-columns: 1.02fr .98fr;
         gap: 24px;
     }

     .premium-card {
         background: rgba(255, 255, 255, .92);
         border: 1px solid var(--line);
         border-radius: 30px;
         padding: 22px;
         box-shadow: var(--shadow-md);
     }

     .premium-card img {
         border-radius: 22px;
         border: 1px solid #ebeff4;
         margin-bottom: 16px;
     }

     .premium-card h3 {
         font-size: 30px;
         line-height: 1.15;
         margin-bottom: 8px;
     }

     .premium-card p {
         color: var(--muted);
         margin-bottom: 16px;
     }

     .scan-card {
         text-align: center;
     }

     .scan-card img {
         max-width: 430px;
         margin: 4px auto 16px;
         box-shadow: 0 14px 32px rgba(0, 0, 0, .08);
     }

     .about-block {
         background: linear-gradient(135deg, rgba(15, 23, 34, 1), rgba(29, 41, 57, 1));
         color: #fff;
         border-radius: 32px;
         padding: 38px;
         box-shadow: var(--shadow-lg);
     }

     .about-block h2 {
         text-align: center;
         font-size: 36px;
         margin-bottom: 10px;
     }

     .about-block>p {
         text-align: center;
         color: #e6ebf0;
         max-width: 900px;
         margin: 0 auto 24px;
         font-size: 18px;
     }

     .contact-grid {
         display: grid;
         grid-template-columns: repeat(3, 1fr);
         gap: 18px;
     }

     .contact-box {
         background: rgba(255, 255, 255, .07);
         border: 1px solid rgba(255, 255, 255, .12);
         border-radius: 20px;
         padding: 18px;
     }

     .contact-box h4 {
         font-size: 13px;
         text-transform: uppercase;
         letter-spacing: .6px;
         color: #f5ddab;
         margin-bottom: 7px;
     }

     .contact-box a,
     .contact-box p {
         color: #fff;
         word-break: break-word;
         font-size: 15px;
     }

     .final-cta {
         padding: 28px 0 22px;
     }

     .cta-card {
         background: linear-gradient(180deg, #f7e7c4, #edd3a0);
         border: 1px solid #dfc58f;
         border-radius: 32px;
         padding: 38px;
         text-align: center;
         box-shadow: var(--shadow-md);
     }

     .cta-card h2 {
         font-size: 38px;
         line-height: 1.12;
         color: #24190b;
         margin-bottom: 10px;
     }

     .cta-card p {
         max-width: 840px;
         margin: 0 auto 20px;
         color: #5d4721;
     }

     .legal {
         padding: 14px 0 34px;
     }

     .legal-card {
         background: rgba(255, 255, 255, .72);
         border: 1px solid var(--line);
         border-radius: 22px;
         padding: 22px;
         box-shadow: var(--shadow-md);
     }

     .legal-card p {
         font-size: 13px;
         color: var(--muted);
         margin-bottom: 10px;
     }

     .legal-card p:last-child {
         margin-bottom: 0;
     }

     footer {
         background: #0e141d;
         color: #d7dde6;
         text-align: center;
         padding: 24px 16px;
         font-size: 14px;
         margin-top: 12px;
     }

     footer a {
         color: #f2dca7;
     }
     /* css for alert ************************************************ */
     .toast{
    position:fixed;
    top:30px;
    right:30px;
    display:flex;
    align-items:center;
    gap:15px;
    background:rgba(20,20,20,.95);
    color:#fff;
    padding:18px 24px;
    border-radius:16px;
    border-left:4px solid #d4af37;
    box-shadow:0 15px 40px rgba(0,0,0,.35);
    transform:translateX(450px);
    opacity:0;
    transition:.45s ease;
    z-index:99999;
    backdrop-filter:blur(15px);
}

.toast.show{
    transform:translateX(0);
    opacity:1;
}

.toast-icon{
    width:45px;
    height:45px;
    border-radius:50%;
    background:#22c55e;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    font-weight:bold;
}

.toast h4{
    margin:0;
    font-size:17px;
}

.toast p{
    margin:4px 0 0;
    color:#d8d8d8;
    font-size:14px;
}

@media(max-width:768px){

.toast{
    left:15px;
    right:15px;
    top:15px;
    transform:translateY(-120px);
}

.toast.show{
    transform:translateY(0);
}

}
/* ******************** */

     @media (max-width: 1024px) {

         .hero-grid,
         .grid-4,
         .split-grid,
         .contact-grid {
             grid-template-columns: 1fr;
         }

         .hero-title {
             font-size: 40px;
         }

         .nav {
             flex-direction: column;
             align-items: flex-start;
         }

         .nav-actions {
             width: 100%;
             justify-content: flex-start;
         }
     }

     @media (max-width: 640px) {
         .container {
             width: min(100% - 16px, 1180px);
         }

         .brand h1 {
             font-size: 16px;
         }

         .brand img {
             width: 58px;
             height: 58px;
         }

         .hero-title {
             font-size: 32px;
         }

         .hero-text {
             font-size: 16px;
         }

         .section-heading,
         .about-block h2,
         .cta-card h2 {
             font-size: 28px;
         }

         .hero-inner,
         .panel-inner,
         .section-card,
         .premium-card,
         .about-block,
         .cta-card {
             padding: 20px;
         }

         .panel-title,
         .premium-card h3 {
             font-size: 24px;
         }

         .showcase-overlay h2 {
             font-size: 22px;
             line-height: 1.15;
         }

         .showcase-overlay p {
             font-size: 15px;
             line-height: 1.4;
             max-width: 100%;
         }

         .showcase-card {
             overflow: hidden;
         }

         .showcase-overlay {
             padding: 16px;
         }

         .scan-card img {
             max-width: 100%;
         }
     }
/* ================= Premium refinement layer =================
   Added without altering existing colors, layout, spacing, or
   typography. Purely: focus states, loading states, micro-animations,
   scroll reveal, and hover polish. ================================ */

/* Accessibility: visible keyboard focus everywhere */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
.btn:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 2px;
    border-radius: 10px;
}

/* Skip link (invisible until focused via keyboard) */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--navy);
    color: #fff;
    padding: 12px 18px;
    border-radius: 0 0 10px 0;
    z-index: 1000;
    font-weight: 700;
    font-size: 14px;
}

.skip-link:focus {
    left: 0;
}

/* Smooth, consistent transitions on interactive elements */
.btn,
.info-card,
.premium-card,
.contact-box,
input,
select,
.showcase-image img {
    transition: transform .28s ease, box-shadow .28s ease,
        background .22s ease, border-color .22s ease, opacity .28s ease;
}

/* Button micro-interactions */
.btn:active {
    transform: translateY(0) scale(.98);
}

.btn:hover {
    box-shadow: 0 14px 32px rgba(16, 24, 39, .16);
}

.btn-gold:hover {
    box-shadow: 0 14px 34px rgba(216, 165, 74, .38);
}

.btn-green:hover {
    box-shadow: 0 14px 30px rgba(22, 130, 74, .3);
}

/* Submit button loading state */
#submitBtn {
    position: relative;
}

#submitBtn:disabled {
    cursor: progress;
    opacity: .85;
}

#submitBtn.is-loading {
    color: transparent !important;
}

#submitBtn.is-loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 18px;
    margin: -9px 0 0 -9px;
    border-radius: 50%;
    border: 2.5px solid rgba(255, 255, 255, .55);
    border-top-color: #fff;
    animation: btn-spin .7s linear infinite;
}

@keyframes btn-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Card hover elevation (adds depth on top of existing shadows) */
.info-card:hover,
.premium-card:hover,
.contact-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 44px rgba(10, 18, 32, .14);
}

/* Gentle image hover for the showcase photo */
.showcase-image:hover img {
    transform: scale(1.03);
}

.showcase-image {
    overflow: hidden;
}

/* Input focus polish */
input:focus,
select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(216, 165, 74, .16);
    outline: none;
}

/* Scroll-reveal: fade + rise, only for elements JS has tagged */
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Error toast variant (reuses the existing premium toast shell) */
.toast--error {
    border-left-color: #e5484d;
}

.toast--error .toast-icon {
    background: #e5484d;
}

/* Respect user motion preferences */
@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    .reveal,
    .btn,
    .info-card,
    .premium-card,
    .contact-box,
    .showcase-image img,
    #submitBtn.is-loading::after {
        transition: none !important;
        animation: none !important;
        transform: none !important;
    }

    .reveal {
        opacity: 1;
    }
}
