:root{
  --brand-main: #606c38;
  --brand-secondary: #cb9654;
  --brand-cream: #fafbf4;
  --hero-navy-1: #606c38;
  --hero-navy-2: #fafbf4;
  --hero-pink: #d81b86;
  --white: #ffffff;
  --black: #000000;
  --db-white: #ffffff;
  --db-navy: #606c38;
  --db-text: #2d2d2d;
  --db-muted: #6b7280;
  --db-tab-active-bg: #ffffff;
  --db-tab-inactive: #6b7280;
  --db-pill-bg: #efefef;
  --db-radius-pill: 999px;
  --db-radius-card: 16px;
  --db-bg: #ffffff;
  --db-muted: #444444;
  --db-border: #dadce0;
  --db-item-bg: #f8f9fa;
  --db-item-open-bg: #f1f3f4;
  --db-radius: 999px;

  --db-navy-light: #243060;
  --db-gold:       #e8a020;
  --db-red:        #e8001c;
  --db-input-bg:   #faf9f7;
  --db-form-radius:     16px;
  --db-overlay:    rgba(20, 26, 50, 0.55);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

.brand-font{
  /* font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; */
  font-weight: 800;

  font-family: 'Playfair Display' serif;
}

body {
  background: var(--db-white);
  font-family: 'DM Sans', sans-serif;
  color: var(--db-text);
  display: bold;
}

#db-popup-open{
  cursor: pointer;
}

/* Brand buttons */
.db-solid-btn{
  background-color: var(--db-navy);
  border: 2px solid var(--db-navy);
  border-radius: 200px;
  padding: 12px 30px;
  transition: .5s;
  margin: 25px 0;
  display: block;
  width: fit-content;
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
}

.db-solid-btn:hover{
  border: 2px solid #424a27;
  background-color: #424a27;
  color: #ffffff;
  border-radius: 10px;
}

.db-light-btn{
  border: .5px solid var(--db-navy);
  border-radius: 200px;
  padding: 12px 30px;
  transition: .5s;
  margin: 25px 0;
  display: block;
  width: fit-content;
  color: var(--db-navy);
  text-decoration: none;
  font-weight: 800;
  font-size: 18px;
}

.db-light-btn:hover{
  border: .5px solid #424a27;
  background-color: var(--brand-cream);
  border-radius: 10px;
}

.db-line-btn{
  font-size: 1.2rem;
  color: var(--brand-main);
  font-weight: 900;
  text-decoration: none;
  border-bottom: 2px solid;
  transition: all .5s;
  width: fit-content;
}

.db-line-btn:hover{
  border-bottom: 3px solid;
  color: var(--brand-secondary);

}

@media (max-width: 768px){
  .topbar .container{
    display: grid!important;
  grid-template-columns: 70% 30%; /* Defines two columns with the specified percentages */
  gap: 10px;
  }
  
  
}


.db-book-call{
  display: inline-block;
  border: .2px solid var(--brand-main);
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--brand-main);
  text-decoration: none;
  font-weight: 800;
  font-size: small;
  transform: .5s;
}

.db-book-call:hover{
  background-color: var(--brand-cream);
}


/* Navbar base */
.nav-blur{
  background: transparent;
  /* backdrop-filter: blur(10px);
  /* border-bottom: 1px solid rgba(255,255,255,0.10); */
    animation: adjust-header linear both;
  animation-timeline: scroll();
   animation-range: 50px 150px;
}
@keyframes adjust-header {
  to {
    background: #606c38af;    
  backdrop-filter: blur(10px);
    padding: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  }
}

.navbar{
  margin-bottom: 90px;
  padding-top: 15px;
}

.navbar .nav-link{
  color: rgba(255,255,255,0.88);
}
.navbar .nav-link:hover{
  color: #fff;
}

.brand-dot{
  display:inline-block;
  width:10px;
  height:10px;
  border-radius:50%;
  background: var(--brand-secondary);
  margin-right: .35rem;
  box-shadow: 0 0 0 6px rgba(203,150,84,.22);
  transform: translateY(-1px);
}

.brand-logo{
  display:inline-block;
  width: 250px;
  height: auto;
  margin-right: .35rem;
  transform: translateY(-1px);
}

/* Desktop dropdowns */
.db-dropdown .dropdown-menu{
  margin-top: 0.85rem;
}

.db-chevron{
  font-size: .85rem;
  opacity: .85;
}

.db-simple{
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: var(--brand-main);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.db-simple .dropdown-item{
  color: rgba(255,255,255,.9);
  padding: .75rem 1rem;
}
.db-simple .dropdown-item:hover{
  background: rgba(255,255,255,.06);
  color: #fff;
}

/* bootstrap override */
.dropdown-item.active{
  background-color: transparent;
}

/* Services mega panel */
.db-mega{
  width: min(980px, calc(100vw - 2rem));
  background: transparent;
  border: 0;
}

.db-mega-inner{
  background: #f5f6f4;
  border-radius: 20px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 18px;
}

.db-services-grid{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

.db-service-tile{
  display: grid;
  place-items: center;
  text-align: center;
  padding: 18px 10px;
  text-decoration: none;
  border-right: 1px solid rgba(15, 23, 42, 0.06);
  min-height: 120px;
}

.db-service-tile:last-child{
  border-right: 0;
}

.db-tile-icon{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--brand-main);
  color: var(--white);
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.db-tile-label{
  font-weight: 800;
  color: var(--brand-main);
  line-height: 1.05;
  font-size: .95rem;
}

.db-tile-sub{
  font-weight: 700;
  color: rgba(15, 23, 42, 0.55);
  font-size: .85rem;
}

/* Hover open on desktop */
/* Let JS handle hover opening. Bootstrap adds .show */
.db-dropdown .dropdown-menu{
  display: none;
}
.db-dropdown .dropdown-menu.show{
  display: block;
}


/* Mobile offcanvas */
.db-offcanvas{
  width: 100vw;
  /* background: linear-gradient(135deg, rgba(11,14,68,0.98), rgba(10,42,154,0.92)); */
  color: #fff;
  border-left: 0;
}

.db-offcanvas .offcanvas-header{
  padding: 18px 18px 8px 18px;
}

.db-offcanvas-close{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.30);
  background: transparent;
  color: #fff;
  display: grid;
  place-items: center;
}

.db-acc .accordion-item{
  background: transparent;
  border: 0;
}

.db-acc-btn{
  background: transparent;
  color: #fff;
  padding: 18px 0;
  box-shadow: none;
  border: 0;
}

.db-acc-btn::after{
  display: none;
}

.db-acc-chevron{
  transition: transform 160ms ease;
}

.accordion-button:not(.collapsed) .db-acc-chevron{
  transform: rotate(180deg);
}

.db-acc-body{
  padding: 0 0 8px 0;
}

.db-m-link{
  display: block;
  padding: 10px 0;
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  font-weight: 600;
}

.db-m-main{
  display: block;
  padding: 14px 0;
  color: #fff;
  text-decoration: none;
  font-size: 1.35rem;
  font-weight: 800;
}

/* Ensure dropdowns can escape the navbar height without clipping */
#mainNav{
  overflow: visible;
}

/* Make dropdown anchor predictable */
.db-dropdown{
  position: relative;
}

/* Default: keep your current sizing, but ensure it never overflows viewport */
.db-mega{
  width: min(980px, calc(100vw - 2rem));
  max-width: calc(100vw - 2rem);
  left: 50%;
  transform: translateX(-50%);
  right: auto;
}




/* Hide desktop collapse on mobile, offcanvas replaces it */
@media (max-width: 991.98px){
  #mainNav .navbar-collapse{
    display: none !important;
  }
}


/* Hero */
.hero2{
  background: radial-gradient(1200px 700px at 50% 0%, rgba(216,27,134,0.18), transparent 55%),
              linear-gradient(180deg, var(--hero-navy-1), var(--hero-navy-2));
  color: #fff;
  /* padding-top: 90px; */
  padding-bottom: 120px;
  position: relative;
}

.hero2-inner{
  padding-top: 36px;
  padding-bottom: 28px;
}
.hero2-inner .hero-btn{
  margin: auto;
  margin-top: 50px;
}

.hero2-kicker{
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  margin-bottom: 18px;
}

.hero2-title{
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.05;
  margin-bottom: 26px;  
  height: 100px;
}

.hero2-btn{
  background: var(--brand-secondary);
  border-color: var(--brand-secondary);
  border-radius: 100px;
  padding-left: 28px;
  padding-right: 28px;
  font-weight: 600;
}
.hero2-btn:hover{
  filter: brightness(.95);
}

.type-target{
  display: inline-block;
  min-height: 1.2em;
}

.type-caret{
  display: inline-block;
  width: 2px;
  height: 1.05em;
  margin-left: 6px;
  background: rgba(255,255,255,0.95);
  transform: translateY(4px);
  animation: caretBlink 900ms steps(2, start) infinite;
}

@keyframes caretBlink{
  0%, 49%{ opacity: 1; }
  50%, 100%{ opacity: 0; }
}

/* Hero media */
.hero2-media-wrap{
  position: relative;
  /* margin-top: 12px; */
}

.hero2-media{
  border-radius: 56px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 30px 90px rgba(0,0,0,0.35);
  transform: translateY(56px);
  position: relative;
}

.hero2-img{
  width: 100%;
  height: min(430px, 52vw);
  object-fit: cover;
}

/* Floating chips */
.hero2-chip{
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(235, 238, 255, 0.92);
  color: rgba(11,14,68,0.9);
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 12px 26px rgba(0,0,0,0.18);
}

.hero2-chip-1{ top: 42px; left: 42px; }
.hero2-chip-2{ top: 110px; right: 44px; }
.hero2-chip-3{ top: 168px; right: 70px; }
.hero2-chip-4{ bottom: 38px; left: 140px; }

@media (max-width: 991.98px){
  .hero2-chip{ display: none; }
  .hero2-media{ border-radius: 34px; }
}

/* Brands CSS */

.brand-strip{
  background: var(--brand-cream);
}

.marquee{
  overflow: hidden;
  position: relative;
}

.marquee-track{
  display: flex;
  gap: 2.25rem;
  width: max-content;
  animation: marqueeLeft 22s linear infinite;
}

.marquee:hover .marquee-track{
  animation-play-state: paused;
}

@keyframes marqueeLeft{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

.logo-chip{
  min-width: 170px;
  max-width: 170px;
  height: 100px;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: rgba(15, 23, 42, 0.75);
}

.logo-chip img{
  width: 100%;  
}

/* Brands End */

/* Journey Start */

.journey-section{
  background: #fff;
}

.journey-subtitle{
  color: rgba(15, 23, 42, 0.65);
}

.journey-icon{
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(96,108,56,0.10);
  color: var(--brand-main);
  font-size: 1.7rem;
  margin: 0 auto 0.75rem auto;
}

.down-arrow{
  opacity: 0.2;
  font-size: 2.2rem;
  line-height: 1;
}

.cta-banner{
  border-radius: 22px;
  padding: 3rem 1.5rem;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(96,108,56,0.92), rgba(203,150,84,0.92)),
    url("https://images.unsplash.com/photo-1556761175-4b46a572b786?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 50px rgba(15,23,42,0.18);
}

.cta-banner .btn{
  border-radius: 999px;
}

/* Journey Ends */

/* Unnamed */

/* Right column scroll container so ScrollSpy can run separately from body */
.profile-scroll{
  /* max-height: calc(100vh - 140px); */
  overflow-y: auto;
  padding-right: 10px;
  scroll-behavior: smooth;
}

/* Scrollbar styling (optional, remove if you want default) */
.profile-scroll{
  scrollbar-width: thin;
}
.profile-scroll::-webkit-scrollbar{
  width: 10px;
}
.profile-scroll::-webkit-scrollbar-thumb{
  background: rgba(15, 23, 42, 0.15);
  border-radius: 999px;
}
.profile-scroll::-webkit-scrollbar-track{
  background: transparent;
}

/* On mobile, disable nested scrolling so it behaves like a normal section */
@media (max-width: 991.98px){
  .profile-scroll{
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }
}

/* Sidebar nav */
.side-nav{
  padding-top: 10px;
}

.side-link{
  text-decoration: none;
  font-weight: 800;
  color: rgba(15, 23, 42, 0.75);
  padding: 6px 0;
  position: relative;
  transition: color 0.5s ease;
}

.side-link::before{
  content: "";
  display: inline-block;
  width: 0;
  height: 2px;
  background: var(--brand-main);
  margin-right: 10px;
  transform: translateY(-3px);
  opacity: 0;
  transition: width 0.5s ease, opacity 0.5s ease;
}

.side-link.active{
  color: var(--brand-main);
}

.side-link.active::before{
  width: 26px;
  opacity: 1;
}

/* Section title */
.section-title{
  color: var(--brand-main);
  font-size: clamp(2rem, 3.2vw, 3rem);
}

/* Content blocks spacing */
.content-block{
  scroll-margin-top: 18px;
  padding-top: 10px;
  padding-bottom: 36px;
}

.content-block p, .content-block li{
  color: rgba(15, 23, 42, 0.79);
  margin-bottom: 10px;
}

.content-block p span, .content-block li span{
  background: url(/assets/images/db-p-highlight.png);
  background-size: 100% 100%;
  margin-right: 3px;
  margin-left: 3px;
  padding: 5px 10px 5px 15px;
  font-weight: bold;
}

.content-block p.quote{
  font-weight: bold;
  font-style: italic;
  font-size: xx-large;
  margin: 20px 0;
}

.content-block .first-para{
  font-weight: bold;
}

.content-block .heading{
  font-weight: bold;
  font-size: x-large;
  margin-top: 20px;
  }

.content-block .lower-heading{
  font-weight: bold;
  font-size: large;
  margin-top: 10px;
}

.content-block .db-dash-list{
  list-style: none;
  padding-left: 0;
}

.content-block .db-dash-list li {
  position: relative;
  padding-left: 1.5rem;
}

.content-block .db-dash-list li::before {
  content: "—";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--brand-main);
}
/* Timeline layout */
.timeline-card{
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: start;
}

.timeline-icon{
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(96,108,56,0.15);
  color: var(--brand-main);
  font-size: 1.2rem;
  margin-top: 6px;
}

.timeline-meta{
  font-weight: 900;
  color: rgba(96,108,56,0.9);
  margin-bottom: 4px;
  font-size: 1.05rem;
}

.timeline-role{
  font-weight: 900;
  font-size: clamp(1.4rem, 2vw, 2rem);
  margin-bottom: 6px;
}

.timeline-org{
  font-weight: 800;
  margin-bottom: 12px;
}

.timeline-text{
  color: rgba(15, 23, 42, 0.55);
  line-height: 1.9;
  margin-bottom: 10px;
}

.timeline-subtitle{
  margin-top: 18px;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.85);
}

.timeline-list{
  margin-top: 10px;
  color: rgba(15, 23, 42, 0.45);
}

/* Skills cards */
.skill-card{
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
}

.skill-title{
  font-weight: 600;
  margin-bottom: 6px;
}

.skill-meta{
  color: rgba(15, 23, 42, 0.6);
}

/* Case Study */

.story2{
  background: var(--brand-cream);
}

/* Media */
.story2-media{
  position: relative;
  border-radius: 22px;
  overflow: visible;
}

.story2-img{
  width: 100%;
  height: 440px;
  object-fit: contain;
  border-radius: 22px;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.14);
  border: 1px solid var(--brand-main);
}

/* Stats overlay */
.story2-stats{
  position: absolute;
  right: -16px;
  bottom: -24px;
  width: min(360px, 92%);
  background: #fff;
  border-radius: 16px;
  padding: 18px 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
  box-shadow: 0 18px 55px rgba(15, 23, 42, 0.18);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.story2-num{
  font-weight: 900;
  color: rgba(15, 23, 42, 0.78);
  font-size: 1.25rem;
  line-height: 1.1;
}

.story2-label{
  margin-top: 4px;
  color: rgba(15, 23, 42, 0.55);
  font-size: 0.78rem;
  line-height: 1.2;
}

/* Copy */

.story2-kicker{
  color: rgba(15, 23, 42, 0.55);
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}

.story2-title{
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1.08;
  color: rgba(15, 23, 42, 0.90);
}

.story2-text{
  color: rgba(15, 23, 42, 0.62);
  line-height: 1.85;
  margin-bottom: 14px;
}

/* Button */
.story2-btn{
  background: var(--brand-main);
  color: #fff;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 900;
  border: 1px solid var(--brand-main);
}

.story2-btn:hover{
  filter: brightness(0.95);
  color: #fff;
}

/* Responsive tweaks */
@media (max-width: 991.98px){
  .story2-img{
    height: 320px;
  }

  .story2-stats{
    left: 18px;
    right: 18px;
    bottom: -34px;
    width: auto;
  }

  /* add spacing because the stats card overlaps */
  .story2-media{
    margin-bottom: 56px;
  }

  .story2 .col-lg-6:last-child{
    margin-top: 25px;
  }
}

/* Website section */

.saas-hero{
  background: radial-gradient(900px 420px at 50% 0%, rgba(203,150,84,0.18), transparent 60%),
              radial-gradient(900px 420px at 50% 0%, rgba(96,108,56,0.12), transparent 55%),
              var(--brand-cream);
  padding-top: 50px;
}

.saas-pill{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(96,108,56,0.08);
  border: 1px solid rgba(96,108,56,0.16);
  color: rgba(15,23,42,0.72);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: lowercase;
}

.saas-pill-dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand-secondary);
  box-shadow: 0 0 0 6px rgba(203,150,84,0.18);
}

.saas-title{
  line-height: 1.05;
  color: rgba(15,23,42,0.92);
}

.saas-grad{
  background: linear-gradient(90deg, var(--brand-main), var(--brand-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.saas-subtitle{
  max-width: 720px;
  color: rgba(15,23,42,0.62);
  font-size: 1.05rem;
  line-height: 1.7;
}

@media (max-width: 768px){
  .saas-hero .db-solid-btn, .saas-hero .db-light-btn{
  margin: 10px auto;
} 
}


/* Mock container */
.saas-mock-wrap{
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.saas-mock{
  border-radius: 22px;
  padding: 18px;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow: 0 30px 90px rgba(15,23,42,0.10);
}

.saas-mock .saas-image-container{
  width: 100%;
}
.responsive-img {
  width: 100%;
  height: auto;
  display: block;
}

/*-------------------------- Testimoial --------------- */

   /* ── Section ── */
    .db-testimonials-section {
      padding: 64px 0 80px;
      overflow: hidden;
    }

    /* ── Header ── */
    .db-testimonials-header {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 26px;
      margin-bottom: 48px;
      padding: 0 24px;
    }

    .db-testimonials-header h2 {
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      font-weight: 700;
      margin: 0;
    }

    @media screen and (max-width: 768px){
      .db-testimonials-header h2 {
        text-align: center;
    }
    }

    .db-nav-btns {
      display: flex;
      gap: 8px;
      flex-shrink: 0;
    }

    .db-nav-btn {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      border: none;
      background: #fff;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
      font-size: 1.1rem;
      color: var(--brand-main);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s, transform 0.15s;
    }

    .db-nav-btn:hover {
      color: var(--brand-main);
      transform: scale(1.05);
    }

    .db-nav-btn:hover i{
      opacity: .5;
    }

    /* ── Track ── */
    .db-carousel-track-wrapper {
      overflow: hidden;
      padding: 12px 24px 20px;
      cursor: grab;
      user-select: none;
    }

    .db-carousel-track-wrapper.db-is-dragging {
      cursor: grabbing;
    }

    .db-carousel-track {
      display: flex;
      gap: 24px;
      transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
      will-change: transform;
    }

    /* ── Card ── */
    .db-testimonial-card {
      background: #fff;
      border-radius: 20px;
      padding: 32px 28px 28px;
      box-shadow: 0 4px 24px rgba(0,0,0,0.06);
      flex: 0 0 calc(33.333% - 16px);
      min-width: 280px;
      display: flex;
      flex-direction: column;
      gap: 20px;
      transition: box-shadow 0.2s, transform 0.2s;
    }

    .db-testimonial-card:hover {
      box-shadow: 0 8px 32px rgba(0,0,0,0.12);
      transform: translateY(-3px);
    }

    .db-quote-text {
      font-style: italic;
      font-size: 0.97rem;
      line-height: 1.7;
      color: var(--db-text);
      flex: 1;
      margin: 0;
    }

    /* Stars */
    .db-stars {
      display: flex;
      gap: 3px;
    }

    .db-star {
      color: #eeba2b;
      font-size: .8rem;
    }

    /* Author */
    .db-author-row {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .db-author-avatar {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      object-fit: cover;
      flex-shrink: 0;
      background: #ddd;
    }

    /* Placeholder avatar circle */
    .db-avatar-placeholder {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      flex-shrink: 0;
      background: linear-gradient(135deg, var(--db-navy) 0%, var(--brand-secondary) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      color: #fff;
      font-weight: 700;
    }

    .db-author-info {
      flex: 1;
    }

    .db-author-name {
      font-weight: 700;
      font-size: 0.95rem;
      color: var(--db-navy);
      margin: 0 0 2px;
    }

    .db-author-title {
      font-size: 0.83rem;
      color: var(--db-muted);
      margin: 0;
    }

    /* Stars on mobile go above quote; on desktop they stay in author row */
    .db-stars-desktop { display: flex; }
    .db-stars-mobile  { display: none; }

    /* ── Dots ── */
    .db-carousel-dots {
      display: flex;
      justify-content: center;
      gap: 6px;
      margin-top: 28px;
    }

    .db-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #d1cdc6;
      border: none;
      padding: 0;
      cursor: pointer;
      transition: background 0.3s, transform 0.3s;
    }

    .db-dot.db-active {
      background: var(--brand-main);
      transform: scale(1.4);
    }

    /* ── Mobile ── */
    @media (max-width: 767.98px) {
      .db-testimonials-header {
        padding: 0 16px;
        flex-wrap: wrap;
      }

      .db-carousel-track-wrapper {
        padding: 12px 16px 20px;
      }

      .db-testimonial-card {
        flex: 0 0 85vw;
        min-width: 260px;
        padding: 24px 20px 20px;
        gap: 14px;
      }

      .db-testimonial-card {
        flex-direction: column;
      }

      .db-stars-desktop { display: none; }
      .db-stars-mobile  { display: flex; }

      .db-author-row {
        margin-top: auto;
      }
    }

    @media (min-width: 768px) and (max-width: 1023.98px) {
      .db-testimonial-card {
        flex: 0 0 calc(50% - 12px);
      }
    }



/* -------------------testimonial end ---------------------*/


   /* ── Banner wrapper ── */
    .success-banner {
      position: relative;
      /* overflow: hidden; */
      background: linear-gradient(90deg, var(--brand-main), var(--brand-secondary));
      min-height: 220px;
      height: 260px;
      display: flex;
      align-items: center;
    }


    /* subtle noise / grain overlay for depth */
    .success-banner::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
      opacity: 0.35;
    }

    /* ── Person cutouts ── */
    .person-img {
      position: absolute;
      bottom: 0;
      /*height: 200%;           slightly taller than the banner */
      object-fit: contain;
      filter: grayscale(1) contrast(1.05);
      -webkit-filter: grayscale(1) contrast(1.05);
      pointer-events: none;
      transition: transform .4s ease;
    }

    .person-left  { left: 0;   transform-origin: bottom left;  }
    .person-right { right: 0;  transform-origin: bottom right; }

    /* ── Centre content ── */
    .banner-content {
      position: relative;
      z-index: 2;
      text-align: center;
    }

    .banner-headline {
      /* font-family: 'DM Sans', sans-serif; */
      font-weight: 700;
      font-size: clamp(1.45rem, 3vw, 2.1rem);
      color: var(--white);
      letter-spacing: -0.01em;
      line-height: 1.2;
      margin-bottom: 1.25rem;
    }

    .banner-headline em {
      font-family: 'Playfair Display', serif;
      font-style: italic;
      font-weight: 700;
    }

    /* ── CTA button ── */
    .btn-cta {
      display: inline-block;
      background-color: var(--brand-secondary);
      color: var(--white);
      font-family: 'DM Sans', sans-serif;
      font-weight: 700;
      font-size: .8rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      padding: .72rem 2.1rem;
      border: none;
      border-radius: 50px;
      text-decoration: none;
      transition: background-color .25s ease, transform .2s ease, box-shadow .25s ease;
      box-shadow: 0 4px 18px #f1ef7342;
    }

    .btn-cta:hover {
      background: transparent;
      border: 1px solid var(--button);
      color: var(--white);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px #ccf4b0;
      border-radius: 10px;
    }



    /* ════════════════════════════════
       DESKTOP  (md and up)
    ════════════════════════════════ */
    @media (min-width: 768px) {
      .success-banner {
        min-height: 200px;
      }

      .person-left  { left: 0;   width: auto; max-width: 32%; }
      .person-right { right: 0;  width: auto; max-width: 32%; }
    }

    /* ════════════════════════════════
       MOBILE  (below md)
    ════════════════════════════════ */
    @media (max-width: 767.98px) {
      .success-banner {
        min-height: 240px;
        align-items: flex-start;
        padding-top: 2rem!important;
        padding-bottom: 5rem;
        overflow: hidden;        
      }

      .person-img {
        height: 52%;
      }

      .person-left  { left:  -10px; }
      .person-right { right: -10px; }

      .banner-headline {
        font-size: 1.35rem;
      }

      .btn-cta {
        font-size: .75rem;
        padding: .65rem 1.6rem;
      }
    }

    /* very small screens */
    @media (max-width: 400px) {
      .person-img { height: 44%; }
    }


  /* ── Section wrapper ── */
    .creative-section {
      background: var(--brand-main);
      position: relative;
      overflow: hidden;
      padding: 3rem 0;
    }

    .creative-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle, rgba(255,255,255,.08) 1px, transparent 1px);
      background-size: 28px 28px;
      pointer-events: none;
    }

    /* ── Carousel track ── */
    .dual-carousel {
      position: relative;
      overflow: hidden;
      border-radius: 6px;
    }

    .dual-track {
      display: flex;
      gap: 16px;
      will-change: transform;
      /* transition only applied when JS adds .is-sliding */
    }

    .dual-track.is-sliding {
      transition: transform 0.35s ease-in-out;
    }

    /* Each card is exactly half the track width (accounting for gap) */
    .dual-card {
      flex: 0 0 calc(50% - 8px);
      border-radius: 6px;
      overflow: hidden;
    }

    .dual-card img {
      width: 100%;
      height: 360px;
      object-fit: cover;
      display: block;
      border-radius: 6px;
    }

    /* ── Text col ── */
    .text-col {
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .section-body {
      font-family: 'DM Sans', sans-serif;
      font-size: 1.05rem;
      color: var(--white);
      line-height: 1.65;
      max-width: 340px;
      position: relative;
      z-index: 2;
    }

    .section-body em {
      font-family: 'Playfair Display', serif;
      font-style: italic;
      font-weight: 700;
    }

    /* ── Arrow buttons ── */
    .carousel-nav {
      display: flex;
      gap: 10px;
      margin-top: 1.75rem;
      position: relative;
      z-index: 2;
    }

    .carousel-nav button {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      border: none;
      background: rgba(255,255,255,.18);
      color: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background .2s ease, transform .2s ease;
      backdrop-filter: blur(4px);
    }

    .carousel-nav button:hover {
      background: rgba(255,255,255,.32);
      transform: scale(1.08);
    }

    .carousel-nav button svg {
      width: 18px;
      height: 18px;
      fill: var(--white);
    }

    /* ── Person cutout ── */
    .person-cutout {
      position: absolute;
      bottom: -7rem;
      right: -2rem;
      height: 115%;
      object-fit: contain;
      filter: grayscale(1) contrast(1.05);
      pointer-events: none;
      z-index: 1;
    }

    @media (max-width: 991.98px) {
      .dual-card img { height: 220px; }
      .person-cutout { height: 70%; right: -1rem; bottom: -1rem; opacity: .5; }
      .section-body { max-width: 100%; font-size: .95rem; }
      .text-col { padding-top: 2rem; }
    }

    @media (max-width: 575.98px) {
      .dual-card { flex: 0 0 100%; }
      .person-cutout { display: none; }
    }

/* ---------------- Planning Block ------------------- */

/* ── Section ── */
.db-keywords-section {
  padding: 72px 0 80px;
}

.db-keywords-section .container{
  margin: auto;
  max-width: 999px;
}

/* ── Tab Pill Nav ── */
.db-tab-nav-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 56px;
}

.db-tab-nav {
  display: inline-flex;
  background: var(--db-pill-bg);
  border-radius: var(--db-radius-pill);
  padding: 5px;
  gap: 2px;
}

.db-tab-btn {
  background: transparent;
  border: none;
  border-radius: var(--db-radius-pill);
  padding: 9px 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--db-tab-inactive);
  cursor: pointer;
  transition: background 0.22s, color 0.22s, box-shadow 0.22s;
  white-space: nowrap;
}

.db-tab-btn.db-active {
  background: var(--db-tab-active-bg);
  color: var(--db-navy);
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

.db-tab-btn:hover:not(.db-active) {
  color: var(--db-navy);
}

/* ── Content Row ── */
.db-keywords-content {
  display: flex;
  align-items: center;
  gap: 64px;
}

/* ── Image / Infographic side ── */
.db-keywords-graphic {
  flex: 0 0 auto;
  width: 380px;
  max-width: 100%;
}

.db-keywords-graphic img {
  width: 100%;
  height: auto;
  border-radius: var(--db-radius-card);
  box-shadow: 0 4px 28px rgba(0,0,0,0.07);
  display: block;
}

/* Placeholder shown until real image is swapped in */
.db-graphic-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--db-radius-card);
  background: var(--db-white);
  box-shadow: 0 4px 28px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  padding: 28px 24px 24px;
  gap: 16px;
}

.db-graphic-placeholder-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #606c38;
  letter-spacing: 0.01em;
}

.db-graphic-placeholder-note {
  font-size: 0.78rem;
  color: var(--db-muted);
  margin-top: auto;
  border-top: 1px dashed #e0e0e0;
  padding-top: 12px;
  font-style: italic;
}

/* ── Text side ── */
.db-keywords-text {
  flex: 1;
  min-width: 0;
}

.db-keywords-text h2 {
  font-family: 'Playfair Display' serif;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 700;
  color: var(--db-navy);
  margin: 0 0 16px;
  line-height: 1.2;
}

.db-keywords-text p {
  font-size: 0.97rem;
  line-height: 1.75;
  color: var(--db-muted);
  margin: 0;
  max-width: 480px;
}

/* ── Tab panels (hide/show) ── */
.db-tab-panel {
  display: none;
}

.db-tab-panel.db-active {
  display: flex;
  align-items: center;
  gap: 64px;
}

/* ── Mobile ── */
@media (max-width: 767.98px) {
  .db-keywords-section {
    padding: 48px 0 56px;
  }

  .db-tab-nav {
    overflow-x: auto;
    max-width: calc(100vw - 32px);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .db-tab-nav::-webkit-scrollbar { display: none; }

  .db-tab-btn {
    padding: 8px 18px;
    font-size: 0.88rem;
  }

  .db-tab-panel.db-active {
    flex-direction: column;
    gap: 32px;
    align-items: stretch;
  }

  .db-keywords-graphic {
    width: 100%;
  }

  .db-keywords-text {
    text-align: center;
  }

  .db-keywords-text p {
    max-width: 100%;
    margin: 0 auto;
  }
}

/* ---------------- End planning block ------------------- */


/* ------------------- GA CTA section  ------------------------ */
    /* ── Section ── */
    .db-partner-section {
      padding: 0 0 72px 0;
      margin-bottom: 40px;
    }

    .db-partner-section .container{
      /* max-width: 999px; */
    }
 
    /* ── Image placeholder ── */
    .db-partner-image-wrap {
      border-radius: 20px;
      overflow: hidden;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
 
    .db-partner-image-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      border-radius: 20px;
    }
 
    /* Placeholder shown until real image is dropped in */
    .db-partner-image-placeholder {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.85rem;
      color: #999;
      font-style: italic;
      text-align: center;
      padding: 16px;
    }
 
    /* ── Text side ── */
    .db-partner-text {
      display: flex;
      flex-direction: column;
      justify-content: center;
      height: 100%;
      padding-left: 48px;
    }
 
    .db-partner-text h2 {
      font-family: 'DM Sans', sans-serif;
      font-size: clamp(1.6rem, 2.8vw, 2.2rem);
      font-weight: 700;
      color: var(--db-navy);
      line-height: 1.25;
      margin: 0 0 24px;
    }
 
    .db-partner-text ul {
      list-style: disc;
      padding-left: 20px;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
 
    .db-partner-text ul li {
      font-size: 0.97rem;
      line-height: 1.6;
      color: var(--db-muted);
    }
 
    /* ── Mobile ── */
    @media (max-width: 767.98px) {
      .db-partner-section {
        /* padding: 48px 0; */
      }
 
      .db-partner-text {
        padding-left: 0;
        padding-top: 32px;
        text-align: left;
      }
    }

/* -----------------FAQs------------------------ */
/* --------------------------------------------- */

/* ── Section ── */
.db-faq-section {
  padding: 72px 0 80px;
}

/* ── Heading ── */
.db-faq-heading {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--db-text);
  text-align: center;
  margin: 0 0 24px;
}

/* ── Expand all button ── */
.db-faq-controls {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 16px;
}

.db-expand-all-btn {
  background: transparent;
  border: 1.5px solid var(--db-navy);
  border-radius: var(--db-radius);
  color: var(--db-navy);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 7px 18px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.18s, color 0.18s;
}

.db-expand-all-btn:hover {
  background: var(--brand-cream);
}

.db-expand-all-btn .db-expand-chevron {
  display: inline-block;
  font-size: 0.8rem;
  transition: transform 0.25s;
}

.db-expand-all-btn.db-all-open .db-expand-chevron {
  transform: rotate(180deg);
}

/* ── Accordion list ── */
.db-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ── Single item ── */
.db-faq-item {
  border: 1.5px solid var(--db-border);
  border-radius: var(--db-radius-card);
  background: var(--white);
  overflow: hidden;
  transition: border-color 0.2s;
}

.db-faq-item:hover{
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.133);
}

.db-faq-item.db-open {
  background: var(--db-item-open-bg);
  border-color: #c8cace;
}

/* ── Question row ── */
.db-faq-question {
  width: 100%;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.db-faq-question-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--db-text);
  line-height: 1.4;
}

/* ── +/− icon ── */
.db-faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.db-faq-icon::before,
.db-faq-icon::after {
  content: '';
  position: absolute;
  background: var(--db-text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

/* horizontal bar */
.db-faq-icon::before {
  width: 14px;
  height: 1.5px;
}

/* vertical bar */
.db-faq-icon::after {
  width: 1.5px;
  height: 14px;
}

/* When open, vertical bar rotates to hide → becomes − */
.db-faq-item.db-open .db-faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

/* ── Answer panel ── */
.db-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.db-faq-item.db-open .db-faq-answer {
  max-height: 600px;
}

.db-faq-answer-inner {
  padding: 0 28px 24px;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--db-muted);
}

.db-faq-answer-inner a {
  color: var(--db-navy);
  text-decoration: underline;
}

/* ── Mobile ── */
@media (max-width: 767.98px) {
  .db-faq-section {
    padding: 48px 0 56px;
  }

  .db-faq-heading {
    text-align: left;
  }

  .db-faq-question {
    padding: 18px 20px;
  }

  .db-faq-answer-inner {
    padding: 0 20px 20px;
  }
}
/* --------------------------------------------- */
/* -------------------BOTTOM CTA---------------- */
/* --------------------------------------------- */

/* ── Section ── */
.db-cta-section {
  padding: 96px 0 104px;
  text-align: center;
}

/* ── Heading ── */
.db-cta-heading {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--db-text);
  line-height: 1.18;
  margin: 0 0 24px;
  letter-spacing: -0.01em;
}

/* ── Subtext ── */
.db-cta-sub {
  font-size: 1rem;
  color: var(--db-muted);
  line-height: 1.6;
  margin: 0 auto 40px;
  max-width: 520px;
}

/* button */

.bottom-cta{
  margin: auto;
}


/* ── Mobile ── */
@media (max-width: 767.98px) {
  .db-cta-section {
    padding: 64px 0 72px;
  }
}

/* ---------- FOOTER ------------ */
/* ------------------------------ */

    /* ── Footer ── */ 
.db-footer {
  background: var(--brand-cream);
  padding: 64px 0 32px;
}

/* ── Col 1: Brand ── */
.db-footer-brand-logo {
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 20px;
  /* Gradient text matching the teal/purple/pink style */
  background: linear-gradient(90deg, var(--brand-main )0%, var(--brand-secondary) 50%, var(--brand-main) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.db-footer-brand-desc {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--db-muted);
  max-width: 280px;
  margin: 0;
}

/* ── Col 2 & 3: Nav columns ── */
.db-footer-nav-heading {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--db-footer-heading);
  margin: 0 0 20px;
}

.db-footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.db-footer-nav-list a {
  text-decoration: none;
  color: #555555;
  font-size: 0.92rem;
  transition: color 0.18s;
}

.db-footer-nav-list a:hover {
  color: var(--brand-secondary);
}

/* ── Col 4: Discount + Badges ── */
.db-footer-discount-heading {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #000000;
  margin: 0 0 10px;
}

.db-footer-discount-text {
  font-size: 0.88rem;
  color: var(--db-muted);
  line-height: 1.6;
  margin: 0 0 24px;
}

/* Badge grid */
.db-footer-badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.db-footer-badge-row {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}

.badge-placeholder{
  padding: 15px;
  border-radius: 10px;
  background-color: var(--white);
}

.db-footer-badge-item {
  height: 70px;
  width: auto;
  object-fit: contain;
}

.db-footer-badge-row:last-child img{
  height: 40px;
}

.google-partner{
  height: 90px;
}

/* Badge placeholders (swap with real <img> tags) */
.db-footer-badge-placeholder {
  height: 36px;
  min-width: 80px;
  background: #ede0e3;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: #999;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0 10px;
  flex-shrink: 0;
}

/* ── Social icons row ── */
.db-footer-social {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  margin-top: 32px;
}

.db-footer-social a {
  color: var(--brand-main);
  font-size: 1.4rem;
  text-decoration: none;
  transition: opacity 0.18s, transform 0.18s;
  line-height: 1;
}

.db-footer-social a:hover {
  opacity: 0.75;
  transform: translateY(-2px);
}

/* ── Bottom bar ── */
.db-footer-bottom {
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid var(--brand-main);
  text-align: center;
  font-size: 0.8rem;
  color: var(--db-muted);
}

/* ── Mobile ── */
@media (max-width: 767.98px) {
  .db-footer {
    padding: 48px 0 24px;
  }

  .db-footer-brand-desc {
    max-width: 100%;
    margin-bottom: 8px;
    font-size: 0.88rem;
    color: var(--db-muted);
    line-height: 1.6;
  }

  .db-footer-col {
    margin-bottom: 32px;
  }

  .db-footer-social {
    justify-content: flex-start;
    margin-top: 30px;
  }

  .db-footer-discount-heading,
  .db-footer-discount-text {
    text-align: left;
  }
}


/* ---------- POPUP FORM ------------ */
/* ------------------------------ */

.db-popup-trigger:hover {
  transform: translateY(-2px);
  cursor: pointer;
}

/* ── Overlay ── */
.db-popup-overlay {
  position: fixed;
  inset: 0;
  background: var(--db-overlay);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;

  /* Hidden state */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.db-popup-overlay.db-active {
  opacity: 1;
  visibility: visible;
  z-index: 2000;
}

/* ── Modal box ── */
.db-popup-modal {
  background: var(--db-white);
  border-radius: var(--db-form-radius);
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.22);

  /* Hidden state */
  transform: translateY(32px) scale(0.97);
  transition: transform 0.38s cubic-bezier(0.34, 1.28, 0.64, 1), opacity 0.35s ease;
  opacity: 0;
}

.db-popup-overlay.db-active .db-popup-modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Scrollbar styling */
.db-popup-modal::-webkit-scrollbar { width: 5px; }
.db-popup-modal::-webkit-scrollbar-track { background: transparent; }
.db-popup-modal::-webkit-scrollbar-thumb { background: var(--db-border); border-radius: 99px; }

/* ── Modal header ── */
.db-popup-header {
  background: var(--db-navy);
  border-radius: var(--db-form-radius) var(--db-form-radius) 0 0;
  padding: 36px 40px 32px;
  position: relative;
}

.db-popup-header-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--db-gold);
  margin: 0 0 10px;
}

.db-popup-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--db-white);
  margin: 0 0 8px;
  line-height: 1.2;
}

.db-popup-header p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.62);
  margin: 0;
  line-height: 1.6;
}

/* ── Close button ── */
.db-popup-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: none;
  color: var(--db-white);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background 0.18s;
}

.db-popup-close:hover {
  background: rgba(255,255,255,0.22);
}

/* ── Form body ── */
.db-popup-body {
  padding: 36px 40px 40px;
}

/* ── Field groups ── */
.db-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.db-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.db-form-group:last-child {
  margin-bottom: 0;
}

.db-form-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--db-navy);
  letter-spacing: 0.03em;
}

.db-form-input,
.db-form-textarea,
.db-form-select {
  width: 100%;
  background: var(--db-input-bg);
  border: 1.5px solid var(--db-border);
  border-radius: 10px;
  padding: 12px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  color: var(--db-text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}

.db-form-input::placeholder,
.db-form-textarea::placeholder {
  color: #b0aaa0;
}

.db-form-input:focus,
.db-form-textarea:focus,
.db-form-select:focus {
  border-color: var(--db-navy);
  box-shadow: 0 0 0 3px rgba(26, 34, 64, 0.10);
}

.db-form-textarea {
  resize: vertical;
  min-height: 120px;
}

/* ── Submit button ── */
.db-form-submit {
  width: 100%;
  background: var(--db-navy);
  color: var(--db-white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 10px;
  padding: 16px;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s, transform 0.15s;
}

.db-form-submit:hover {
  background: var(--brand-cream);
  transform: translateY(-1px);
}

.db-form-submit:active {
  transform: translateY(0);
}

/* ── Success state ── */
.db-form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 40px;
  gap: 16px;
}

.db-form-success.db-visible {
  display: flex;
}

.db-success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #eaf4ee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.db-form-success h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--db-navy);
  margin: 0;
}

.db-form-success p {
  font-size: 0.92rem;
  color: var(--db-muted);
  margin: 0;
  max-width: 360px;
  line-height: 1.65;
}

/* ── Mobile ── */
@media (max-width: 575.98px) {
  .db-popup-header,
  .db-popup-body {
    padding-left: 24px;
    padding-right: 24px;
  }

  .db-form-row {
    grid-template-columns: 1fr;
  }
}