:root{
    --brand:#d4a24c;
    --brand-dark:#b98b34;
    --text:#1f2937;
    --muted:#6b7280;
    --border:#e5e7eb;
}

*{box-sizing:border-box}

body{
    margin:0;
    font-family:"Inter",system-ui,sans-serif;
    background:#fff;
    -webkit-user-select: none; /* Chrome, Safari */
    -moz-user-select: none;    /* Firefox */
    -ms-user-select: none;     /* IE/Edge */
    user-select: none;
}
img {
  pointer-events: none;
  user-drag: none;
  -webkit-user-drag: none;
}
/* ================= HEADER ================= */
/* ================= STICKY HEADER ================= */
header{
    position: sticky;
    top: 0;
    z-index: 1000;

    background:
        radial-gradient(circle at 15% 30%, rgba(212,162,76,0.18), transparent 45%),
        radial-gradient(circle at 85% 10%, rgba(212,162,76,0.12), transparent 40%),
        linear-gradient(180deg,#f4efe6,#ffffff);
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    border-bottom:1px solid var(--border);
    backdrop-filter: blur(6px);
    transition: box-shadow 0.25s ease;
}
header.scrolled{
    box-shadow:0 8px 30px rgba(0,0,0,0.12);
}

.container{
    max-width:1280px;
    margin:auto;
    padding:0 24px;
}

.header-inner{
    height:92px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo img{ height:58px; }

.nav-center{
    display:flex;
    gap:36px;
}

.nav-center a{
    text-decoration:none;
    font-size:15px;
    font-weight:500;
    color:var(--text);
}

.header-actions{
    display:flex;
    gap:16px;
}

.download-btn{
    display:flex;
    align-items:center;
    gap:10px;
    padding:11px 18px;
    font-size:14px;
    font-weight:600;
    background:linear-gradient(135deg,var(--brand),var(--brand-dark));
    color:#000;
    border-radius:8px;
    text-decoration:none;
    box-shadow:0 6px 14px rgba(212,162,76,0.35);
}

.signin-btn{
    padding:11px 18px;
    font-size:14px;
    font-weight:600;
    background:#111827;
    color:#fff;
    border-radius:8px;
    text-decoration:none;
}


/* ================= MOBILE HEADER FIX ================= */

/* ================= MOBILE MENU FIX ================= */

.menu-toggle{
    display:none;
    background:none;
    border:none;
    font-size:26px;
    cursor:pointer;
    color:#111827;
    z-index:1002;
}

.menu-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.45);
    opacity:0;
    visibility:hidden;
    transition:0.3s ease;
    z-index:1000;
}

.menu-overlay.active{
    opacity:1;
    visibility:visible;
}




/* ================= HERO ================= */
.hero{
    position:relative;
    padding:110px 0;
    overflow:hidden;
}

.hero-bg{
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at 20% 35%, rgba(212,162,76,0.18), transparent 45%),
        radial-gradient(circle at 75% 25%, rgba(212,162,76,0.12), transparent 40%),
        linear-gradient(180deg,#f4efe6 0%, #ffffff 75%);
    z-index:0;
}
.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(255,255,255,0.35);
    z-index:2;
    pointer-events:none;
}


/* ===== DOTTED CORNER GRAPHICS (FINAL) ===== */
.hero-decor{
    position:absolute;
    width:100px;
    height:100px;
    background:
        radial-gradient(circle, rgba(212,162,76,0.35) 1.2px, transparent 1.2px);
    background-size:16px 16px;
    border-radius:14px;
    opacity:0.18;
    z-index:2;
    pointer-events:none;
}
.decor-top-left{
    top:40px;
    left:40px;
}

.decor-bottom-right{
    bottom:40px;
    right:40px;
}


/* Visual balance */
.decor-top-left,
.decor-bottom-right{ opacity:0.35; }

.decor-top-right,
.decor-bottom-left{ opacity:0.15; }

/* Positions */

.decor-top-right{ top:56px; right:24px; }
.decor-bottom-left{ bottom:40px; left:48px; }


/* ================= HERO CONTENT ================= */
.hero-inner{
    position:relative;
    z-index:3;
    display:grid;
    grid-template-columns:1.1fr 0.9fr;
    gap:80px;
    align-items:center;
}

.hero-tag{
    font-size:13px;
    letter-spacing:0.08em;
    text-transform:uppercase;
    color:#7c5c1e;
}

.hero-content h1{
    font-size:58px;
    line-height:1.06;
    font-weight:700;
    letter-spacing:-0.6px;
}

.hero-content h1 span{
    color:#c89a3b;
    font-weight:800;
}

.hero-content p{
    max-width:480px;
    font-size:16.8px;
    line-height:1.75;
    color:#4b5563;
}

.hero-actions{
    margin-top:32px;
    display:flex;
    gap:18px;
}

.btn-primary{
    padding:15px 38px;
    background:linear-gradient(135deg,var(--brand),var(--brand-dark));
    color:#000;
    font-weight:600;
    border-radius:8px;
    text-decoration:none;
    box-shadow:0 8px 18px rgba(212,162,76,0.35);
}

.btn-outline{
    padding:15px 38px;
    border:1px solid #d6b066;
    background:rgba(255,255,255,0.6);
    color:#1f2937;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
}

/* ================= IMAGE ================= */
.hero-visual{ position:relative; }

.visual-shape{
    position:absolute;
    width:360px;
    height:360px;
    background:linear-gradient(135deg,var(--brand),var(--brand-dark));
    border-radius:32px;
    transform:translate(-50%,-50%) rotate(45deg);
    top:50%;
    left:50%;
    z-index:1;
}

.hero-visual img{
    width:100%;
    padding:6px;
    background:#fff;
    border-radius:20px;
    position:relative;
    z-index:2;
    box-shadow:
        0 20px 40px rgba(0,0,0,0.12),
        0 2px 6px rgba(0,0,0,0.05);
}
/* ================= PROCESS SECTION ================= */


/* ================= HIGHLIGHTS STRIP ================= */

.highlights-section{
    padding:40px 0;
    background:#ffffff;
    border-top:1px solid #f0f0f0;
    border-bottom:1px solid #f0f0f0;
}

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

.highlight-item{
    display:flex;
    align-items:flex-start;
    gap:18px;
}
.highlight-content h4{
    font-size:16px;
    margin-bottom:6px;
}

.highlight-content p{
    font-size:14px;
    line-height:1.6;
    color:#6b7280;
}
/* ================= ABOUT SECTION ================= */

.about-section {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg,rgba(212,162,76,0.08) 0%,rgba(212,162,76,0.04) 30%,transparent 60%),linear-gradient(-135deg,rgba(0,0,0,0.02) 0%,transparent 40%),#fbf5e6;
  overflow: hidden;
}
.about-section::before,
.about-section::after{
    content:"";
    position:absolute;
    width:320px;
    height:320px;
    background:rgba(31, 31, 31, 0.06);
    transform:rotate(45deg);
    z-index:0;
}

.about-section::before{
    top:-120px;
    left:-120px;
}

.about-section::after{
    bottom:-140px;
    right:-140px;
}


.about-inner{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:90px;
    align-items:center;
    position:relative;
    z-index:1;
}

/* LEFT IMAGES */
.about-images{
    position:relative;
}

.about-img-main{
    width:100%;
    border-radius:18px;
    overflow:hidden;
}

.about-img-main img{
    width:100%;
    display:block;
}

/* EXPERIENCE BADGE */
.about-experience{
    position:absolute;
    bottom:-8px;
    left:-30px;
    background:#d4a24c;
    color:#000;
    padding:26px 30px;
    border-radius:12px;
    box-shadow:0 20px 40px rgba(212,162,76,0.35);
    text-align:center;
}

.about-experience .years{
    font-size:42px;
    font-weight:800;
    display:block;
    line-height:1;
}

.about-experience .label{
    font-size:13px;
    letter-spacing:0.08em;
    text-transform:uppercase;
}

/* RIGHT CONTENT */
.about-content h2{
    font-size:40px;
    line-height:1.2;
    margin-bottom:18px;
}

.about-content h2 span{
    color:#c89a3b;
}

.about-content p{
    font-size:16.5px;
    line-height:1.75;
    color:#4b5563;
    margin-bottom:24px;
}

.about-points{
    list-style:none;
    padding:0;
    margin:0 0 34px;
}

.about-points li{
    position:relative;
    padding-left:26px;
    margin-bottom:12px;
    font-size:15.5px;
}

.about-points li::before{
    content:"";
    position:absolute;
    left:0;
    top:8px;
    width:8px;
    height:8px;
    background:#d4a24c;
    border-radius:50%;
}
/* ================= FEATURES SECTION ================= */

.features-section{
    padding:120px 0;
    background:
        linear-gradient(
            180deg,
            rgba(212,162,76,0.04) 0%,
            rgba(212,162,76,0.02) 40%,
            transparent 100%
        );
}

.section-head.center{
    max-width:760px;
    margin:0 auto 70px;
    text-align:center;
}

.section-head.center h2{
    font-size:40px;
    line-height:1.2;
    margin-bottom:16px;
}

.section-head.center p{
    font-size:16.5px;
    line-height:1.7;
    color:#6b7280;
}

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

.feature-card{
    background:#ffffff;
    padding:44px 36px;
    border-radius:18px;
    border:1px solid #ececec;
    transition:all 0.25s ease;
}

.feature-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

.feature-icon{
    width:48px;
    height:48px;
    border-radius:12px;
    background:rgba(212,162,76,0.12);
    color:#c89a3b;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    margin-bottom:18px;
}

.feature-card h4{
    font-size:18px;
    margin-bottom:10px;
}

.feature-card p{
    font-size:15.5px;
    line-height:1.7;
    color:#6b7280;
}
/* ================= TESTIMONIAL SECTION ================= */

.testimonial-section{
    position:relative;
    padding:120px 0;
    background:linear-gradient(135deg,rgba(212,162,76,0.06) 0%,rgba(212,162,76,0.03) 35%,transparent 70%),linear-gradient(-135deg,rgba(0,0,0,0.015) 0%,transparent 45%),#fbf5e6;
    overflow:hidden;
}
.testimonial-section::before{
    content:"";
    position:absolute;
    top:40px;
    right:60px;
    width:140px;
    height:140px;
    background:
        radial-gradient(circle, rgba(212,162,76,0.25) 1.2px, transparent 1.2px);
    background-size:16px 16px;
    opacity:0.25;
    pointer-events:none;
}

.testimonial-section::after{
    content:"";
    position:absolute;
    bottom:60px;
    left:40px;
    width:120px;
    height:120px;
    background:
        radial-gradient(circle, rgba(212,162,76,0.22) 1.2px, transparent 1.2px);
    background-size:18px 18px;
    opacity:0.2;
    pointer-events:none;
}
/* ===== TESTIMONIAL VISIBLE BACKGROUND SHAPES ===== */



.testimonial-bg-shape{
    position:absolute;
    width:360px;
    height:360px;
    background:linear-gradient(
        135deg,
        rgba(212,162,76,0.25),
        rgba(212,162,76,0.05)
    );
    border-radius:48px;
    transform:rotate(45deg);
    z-index:0;
}

/* Positions */
.shape-top-right{
    top:-140px;
    right:-140px;
}

.shape-bottom-left{
    bottom:-140px;
    left:-140px;
}

/* Keep content above */
.testimonial-section .container{
    position:relative;
    z-index:2;
}


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

.testimonial-card{
    background:#ffffff;
    padding:40px 36px;
    border-radius:18px;
    border:1px solid #ececec;
    transition:all 0.25s ease;
}

.testimonial-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 40px rgba(0,0,0,0.08);
}
.testimonial-text{
    font-size:16px;
    line-height:1.75;
    color:#374151;
    margin-bottom:28px;
}

.testimonial-user{
    display:flex;
    align-items:center;
    gap:14px;
}

.user-avatar{
    width:44px;
    height:44px;
    border-radius:50%;
    background:linear-gradient(135deg,#d4a24c,#b98b34);
    color:#000;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
}

.user-info strong{
    display:block;
    font-size:15px;
}

.user-info span{
    font-size:13px;
    color:#6b7280;
}
/* ================= CTA SECTION ================= */

/* ================= CTA SECTION (GRAPHIC VERSION) ================= */

/* ================= CTA SECTION (FIXED & VISIBLE) ================= */

.cta-section{
    position:relative;
    padding:25px 0;   
    background-position:center;
    overflow:hidden;
}


/* soft diagonal graphic overlay */
.cta-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        135deg,
        rgba(212,162,76,0.55),
        rgba(185,139,52,0.55)
    );
    z-index:0;
}


/* dotted texture for depth */
.cta-section::after{
    content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle, rgba(255,255,255,0.35) 1px, transparent 1px);
    background-size:20px 20px;
    opacity:0.25;
    z-index:0;
}


.cta-inner{
    position:relative;
    z-index:2;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
}


/* Content */
.cta-content h2{
    font-size:44px;
    line-height:1.2;
    color:#0f172a;
    margin-bottom:14px;
}

.cta-content h2 span{
    color:#111827;
}

.cta-content p{
    font-size:17px;
    line-height:1.7;
    color:#1f2937;
    max-width:520px;
}

/* Buttons */
.cta-actions{
    display:flex;
    gap:18px;
}

.cta-btn-primary{
    padding:16px 40px;
    background:#0f172a;
    color:#ffffff;
    font-weight:600;
    border-radius:10px;
    text-decoration:none;
}

.cta-btn-secondary{
    padding:16px 40px;
    background:rgba(255,255,255,0.35);
    color:#0f172a;
    font-weight:600;
    border-radius:10px;
    text-decoration:none;
    border:1px solid rgba(15,23,42,0.2);
}
/* ================= FOOTER ================= */

.site-footer{
    position:relative;
    background:
        linear-gradient(135deg, rgb(122, 83, 11), rgb(78, 54, 10));
    background-size:cover;
    background-position:center;
    color:#d1d5db;
}

.site-footer::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.04) 25%,
            transparent 25%
        );
    background-size:120px 120px;
    opacity:0.25;
}

.footer-inner{
    position:relative;
    z-index:2;
    padding:80px 0 60px;
    display:grid;
    grid-template-columns:1.5fr 1fr 1fr 1.5fr 1fr;
    gap:60px;
}


.footer-logo img{
    height:52px;
    margin-bottom:18px;
}

.footer-brand p{
    font-size:14.5px;
    line-height:1.7;
    max-width:300px;
    margin-bottom:20px;
}
.footer-col h4{
    font-size:16px;
    font-weight:600;
    margin-bottom:18px;
    color:#ffffff;
}

.footer-col ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-col ul li{
    margin-bottom:12px;
}

.footer-col ul li a{
    color:#d1d5db;
    text-decoration:none;
    font-size:14px;
}

.footer-col p,
.footer-col a{
    font-size:14px;
    line-height:1.6;
    color:#e5e7eb;
    text-decoration:none;
}
.footer-col a:hover{
    color:#facc15;
}


/* Bottom bar */
.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.1);
    text-align:center;
    padding:20px 0;
    font-size:14px;
    color:#9ca3af;
}

.feature-icon{
    width:52px;
    height:52px;
    border-radius:50%;
    background:rgba(212,162,76,0.15);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:14px;
}

.feature-icon svg{
    width:22px;
    height:22px;
    color:#d4a24c;
}
/* ======================
   LEGAL PAGES
====================== */

.legal-page{
  padding:80px 0;
  background:#ffffff;
}

.legal-page h1{
  font-size:36px;
  margin-bottom:10px;
}

.legal-page .last-updated{
  font-size:14px;
  color:#6b7280;
  margin-bottom:30px;
}

.legal-page h2{
  font-size:22px;
  margin-top:32px;
  margin-bottom:10px;
}

.legal-page p,
.legal-page li{
  font-size:15.5px;
  line-height:1.75;
  color:#374151;
}

.legal-page ul{
  padding-left:20px;
}
/* ============================
   PAGE HERO / BREADCRUMB
============================ */

.page-hero{
  position: relative;
  padding: 70px 0 60px;
  background:
    radial-gradient(circle at top left, rgba(212,162,76,0.18), transparent 40%),
    radial-gradient(circle at bottom right, rgba(212,162,76,0.14), transparent 45%),
    linear-gradient(135deg, #fffaf2, #ffffff);
  overflow: hidden;
  box-shadow: inset 0 -1px 0 rgba(0,0,0,0.05);
}

.page-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    radial-gradient(rgba(160,120,40,0.35) 1.2px, transparent 1.2px);
  background-size: 16px 16px;
  opacity:0.9;
  pointer-events:none;
}


.page-hero-inner{
  position: relative;
  z-index:2;
}

.page-hero h1{
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 8px;
}

.breadcrumb{
  font-size: 14px;
  color:#6b7280;
}

.breadcrumb a{
  color:#6b7280;
  text-decoration:none;
  transition:color .3s;
}

.breadcrumb a:hover{
  color:#d4a24c;
}

.breadcrumb span{
  margin:0 6px;
}
/* ===============================
   COMING SOON – ISOLATED SECTION
================================ */

.coming-soon-section {
  padding: 120px 0;
  background:
    linear-gradient(
      180deg,
      rgba(212,162,76,0.06),
      rgba(212,162,76,0.02),
      transparent
    );
}

/* Heading */
.coming-soon-head {
  max-width: 760px;
  margin: 0 auto 70px;
  text-align: center;
}

.coming-soon-head h2 {
  font-size: 40px;
  margin-bottom: 16px;
}

.coming-soon-head p {
  font-size: 16.5px;
  color: #6b7280;
  line-height: 1.7;
}

/* Grid */
.coming-soon-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Cards */
.coming-soon-card {
  position: relative;
  background: #ffffff;
  padding: 44px 36px;
  border-radius: 20px;
  border: 2px solid rgba(212,162,76,0.35);
  box-shadow:
    0 18px 40px rgba(212,162,76,0.25),
    0 6px 14px rgba(0,0,0,0.06);
  transition: all 0.35s ease;
}

/* Hover */
.coming-soon-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow:
    0 34px 70px rgba(212,162,76,0.45),
    0 14px 30px rgba(0,0,0,0.14);
}

/* Icon */
.coming-soon-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background:
    linear-gradient(135deg,
      rgba(212,162,76,0.35),
      rgba(185,139,52,0.25)
    );
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.coming-soon-icon svg {
  width: 24px;
  height: 24px;
  color: #7c5c1e;
}

/* Badge */
.coming-soon-card::after {
  content: "COMING SOON";
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 20px;
  background: linear-gradient(135deg,#d4a24c,#b98b34);
  color: #000;
}
/* ===============================
   NAV – COMING SOON FIX
================================ */

.nav-coming-soon {
  position: relative;
  font-weight: 700 !important;
  color: var(--brand) !important;
}

/* underline highlight */
.nav-coming-soon::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 3px;
  background: linear-gradient(135deg,var(--brand),var(--brand-dark));
  border-radius: 3px;
}

/* hover */
.nav-coming-soon:hover {
  color: var(--brand-dark) !important;
}


/* ================= RESPONSIVE ================= */
@media (max-width:992px){
    .hero-inner{ grid-template-columns:1fr; gap:60px; }   
    .highlights-grid{
        grid-template-columns:1fr 1fr;
        gap:24px;
    }
    .about-inner{
        grid-template-columns:1fr;
        gap:70px;
    }

    .about-img-small{
        right:0;
    }
    .features-grid{
        grid-template-columns:1fr 1fr;
    }
    .testimonial-grid{
        grid-template-columns:1fr 1fr;
    }
    .cta-inner{
        flex-direction:column;
        text-align:center;
    }

    .cta-actions{
        justify-content:center;
    }
    .footer-inner{
        grid-template-columns:1fr;
        gap:32px;              /* 🔥 reduced gap */
        padding:60px 20px 40px;
        text-align:left;
    }
    .header-inner{
        height:72px;
        position:relative;
        z-index:1003;
    }

    .nav-center{
        position:fixed;
        top:72px;
        left:50%;
        transform:translateX(-50%) translateY(-20px);
        width:92%;
        max-width:420px;

        display:flex;
        flex-direction:column;   /* ✅ vertical */

        background:#ffffff;
        border-radius:14px;
        box-shadow:0 25px 50px rgba(0,0,0,0.18);

        opacity:0;
        visibility:hidden;
        transition:0.35s ease;
        z-index:1001;
        overflow:hidden;
    }

    .nav-center.active{
        transform:translateX(-50%) translateY(0);
        opacity:1;
        visibility:visible;
    }

    .nav-center a{
        width:100%;
        padding:18px 22px;
        font-size:16px;
        font-weight:500;
        color:#111827;
        border-bottom:1px solid #f1f1f1;
        text-decoration:none;
    }

    .nav-center a:last-child{
        border-bottom:none;
    }

    .nav-center a:hover{
        background:rgba(212,162,76,0.12);
        color:#7c5c1e;
    }

    /* Hide desktop buttons */
    .header-actions a{
        display:none;
    }

    /* Show hamburger */
    .menu-toggle{
        display:block;
    }
    .coming-soon-grid {
        grid-template-columns: 1fr 1fr;
    }
    .nav-coming-soon{
        background: rgba(212,162,76,0.12);
        border-radius: 10px;
    }
    .nav-coming-soon::after{
        display:none;
    }
}
@media(max-width:768px){
  .page-hero{
    padding: 55px 0 45px;
  }
  .page-hero h1{
    font-size:28px;
  }
}

@media (max-width:576px){
    .hero{ padding:80px 0; }
    .hero-content h1{ font-size:40px; }
    .hero-actions{ flex-direction:column; }
    .btn-primary,.btn-outline{ width:100%; text-align:center; }
    .hero-decor,.visual-shape{ display:none; }
    .hero-decor,
    .hero-overlay{
        display:none;
    }
    .highlights-grid{
        grid-template-columns:1fr;
    }
    .about-section{
        padding:90px 0;
    }

    .about-experience{
        position:static;
        margin-top:20px;
        display:inline-block;
    }
    .testimonial-grid{
        grid-template-columns:1fr;
    }

    .testimonial-section{
        padding:90px 0;
    }
    .cta-section{
        padding:90px 0;
    }

    .cta-content h2{
        font-size:34px;
    }

    .cta-actions{
        flex-direction:column;
        width:100%;
    }

    .cta-btn-primary,
    .cta-btn-secondary{
        width:100%;
        text-align:center;
    }
    .footer-inner{
        grid-template-columns: 1fr;
        gap:32px;
        padding:60px 20px 40px;
        text-align:left;
    }

    .footer-brand p{
        max-width:100%;
    }

    .footer-col{
        margin-bottom:8px;     /* 🔥 remove extra spacing */
    }

    .footer-col h4{
        margin-bottom:12px;
    }

    .footer-bottom{
        font-size:13px;
        padding:14px 0;
    }
    .coming-soon-grid {
        grid-template-columns: 1fr;
    }
    
}