    :root {
      --dv-navy:    #0B1E3D;
      --dv-teal:    #00C6BE;
      --dv-gold:    #F5A623;
      --dv-bg:      #F0F4FA;
      --dv-muted:   #5A6A82;
      --dv-navy2:   #1a3a6e;
    }
    *, *::before, *::after { box-sizing: border-box; }

    body {
      font-family: 'Plus Jakarta Sans', sans-serif;
      background: linear-gradient(140deg, #0B1E3D 0%, #1a3a6e 100%);
      color: var(--dv-navy);
      overflow-x: hidden;
      min-height: 100vh;
      margin: 0;
      padding-top: 73px;
    }

    h1, h2, h3, h4 {
      font-family: 'Fraunces', serif;
      margin: 0;
    }
    p { margin: 0; }
    ul { margin: 0; padding: 0; list-style: none; }
    button { font-family: inherit; cursor: pointer; border: none; background: none; padding: 0; }
    a { text-decoration: none; }

    /* ── Particles ── */
    .dv-particles { position:fixed; inset:0; overflow:hidden; z-index:0; pointer-events:none; }
    .dv-particle {
      position:absolute; width:4px; height:4px;
      background:rgba(0,198,190,0.2); border-radius:50%;
      animation:dvFloatUp 20s infinite linear;
    }
    .dv-particle:nth-child(1){left:5%;animation-delay:0s;animation-duration:15s}
    .dv-particle:nth-child(2){left:18%;animation-delay:2s;animation-duration:18s}
    .dv-particle:nth-child(3){left:33%;animation-delay:4s;animation-duration:22s}
    .dv-particle:nth-child(4){left:50%;animation-delay:1s;animation-duration:16s}
    .dv-particle:nth-child(5){left:67%;animation-delay:3s;animation-duration:20s}
    .dv-particle:nth-child(6){left:82%;animation-delay:5s;animation-duration:17s}
    .dv-particle:nth-child(7){left:95%;animation-delay:2s;animation-duration:21s}
    @keyframes dvFloatUp {
      0%{transform:translateY(100vh) scale(0);opacity:0}
      10%{opacity:1} 90%{opacity:1}
      100%{transform:translateY(-100vh) scale(1);opacity:0}
    }

    /* ── Hero wrapper ── */
    .dv-hero {
      position: relative; z-index: 1;
      padding: clamp(40px,7vh,72px) clamp(20px,5vw,64px) 0;
      display: grid;
      grid-template-columns: 1fr minmax(0, 420px);
      gap: clamp(32px,5vw,64px);
      max-width: 1400px; margin: 0 auto;
      align-items: start;
    }

    .dv-hero-left { animation: dvSlideLeft 0.7s ease both; }

    .dv-course-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(0,198,190,0.15); border: 1px solid rgba(0,198,190,0.3);
      color: var(--dv-teal); padding: 6px 16px; border-radius: 100px;
      font-size: 12px; font-weight: 700; text-transform: uppercase;
      letter-spacing: 0.8px; margin-bottom: 20px;
      font-family: 'Plus Jakarta Sans', sans-serif;
    }

    .dv-course-heading {
      font-size: clamp(2rem,5vw,3.6rem); font-weight: 900; color: #fff;
      line-height: 1.08; margin-bottom: 20px; font-family: 'Fraunces', serif;
    }
    .dv-course-heading em { color: var(--dv-teal); font-style: normal; }

    .dv-course-intro {
      font-size: clamp(14px,2vw,16px); color: rgba(255,255,255,0.62);
      line-height: 1.78; margin-bottom: 32px; max-width: 600px;
    }

    /* Stats */
    .dv-stats-row {
      display: flex; gap: clamp(16px,3vw,32px); flex-wrap: wrap; margin-bottom: 36px;
    }
    .dv-stat-box { display: flex; flex-direction: column; gap: 4px; }
    .dv-stat-num {
      font-family: 'Fraunces', serif;
      font-size: clamp(22px,3vw,28px); font-weight: 900; color: #fff;
    }
    .dv-stat-num em { color: var(--dv-teal); font-style: normal; }
    .dv-stat-caption {
      font-size: 11px; color: rgba(255,255,255,0.45); font-weight: 600;
      text-transform: uppercase; letter-spacing: 0.6px;
    }

    /* CTA */
    .dv-cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
    .dv-btn-enroll {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--dv-teal); color: #fff;
      font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 15px;
      padding: 14px 32px; border-radius: 12px; border: none; cursor: pointer;
      transition: all 0.3s; box-shadow: 0 8px 24px rgba(0,198,190,0.35);
    }
    .dv-btn-enroll:hover { background: #00d4cc; transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,198,190,0.45); }

    .dv-btn-download {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(255,255,255,0.08); color: #fff;
      border: 1px solid rgba(255,255,255,0.2);
      font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 15px;
      padding: 14px 32px; border-radius: 12px; transition: all 0.3s; cursor: pointer;
    }
    .dv-btn-download:hover { background: rgba(255,255,255,0.14); transform: translateY(-2px); }

    /* Pricing card */
    .dv-price-card {
      background: #fff; border-radius: 24px;
      box-shadow: 0 24px 64px rgba(0,0,0,0.25);
      overflow: hidden; position: sticky; top: 24px;
      animation: dvSlideRight 0.7s ease both;
    }
    .dv-card-thumbnail { height: 200px; position: relative; overflow: hidden; }
    .dv-card-thumbnail img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .dv-card-thumbnail::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(to bottom, rgba(11,30,61,0.05), rgba(11,30,61,0.5));
    }
    .dv-level-pill {
      position: absolute; top: 14px; right: 14px; z-index: 2;
      background: rgba(0,198,190,0.9); color: #fff;
      padding: 5px 14px; border-radius: 100px;
      font-size: 11px; font-weight: 700; text-transform: uppercase;
      font-family: 'Plus Jakarta Sans', sans-serif;
    }
    .dv-card-body { padding: 24px; }
    .dv-price-row { display: flex; align-items: baseline; gap: 10px; margin-bottom: 20px; }
    .dv-price-main {
      font-family: 'Fraunces', serif;
      font-size: 36px; font-weight: 900; color: var(--dv-navy);
    }
    .dv-price-emi { font-size: 13px; color: var(--dv-muted); }
    .dv-features-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
    .dv-feature-row {
      display: flex; align-items: center; gap: 10px;
      font-size: 13.5px; color: var(--dv-navy); font-weight: 500;
    }
    .dv-feature-icon {
      width: 30px; height: 30px; border-radius: 8px;
      background: rgba(0,198,190,0.1); display: flex; align-items: center;
      justify-content: center; font-size: 15px; flex-shrink: 0;
    }
    .dv-enroll-btn {
      width: 100%; background: var(--dv-teal); color: #fff;
      font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 15px;
      padding: 14px; border-radius: 12px; border: none; cursor: pointer;
      transition: all 0.3s; box-shadow: 0 6px 20px rgba(0,198,190,0.35);
      margin-bottom: 10px;
    }
    .dv-enroll-btn:hover { background: #00d4cc; transform: translateY(-1px); }
    .dv-secure-note { text-align: center; font-size: 12px; color: var(--dv-muted); }

    /* ── Main body ── */
    .dv-body-grid {
      position: relative; z-index: 1;
      max-width: 1400px; margin: 0 auto;
      padding: clamp(48px,7vh,72px) clamp(20px,5vw,64px);
      display: grid;
      grid-template-columns: 1fr minmax(0, 420px);
      gap: clamp(32px,5vw,64px);
      align-items: start;
    }
    .dv-body-main { min-width: 0; }
    .dv-body-aside { position: sticky; top: 24px; }

    /* Section heading */
    .dv-section-heading {
      font-family: 'Fraunces', serif;
      font-size: clamp(20px,3vw,26px); font-weight: 800; color: #fff;
      margin-bottom: 24px; display: flex; align-items: center; gap: 12px;
    }
    .dv-section-heading::after {
      content: ''; flex: 1; height: 2px;
      background: linear-gradient(to right, rgba(0,198,190,0.4), transparent);
      border-radius: 2px;
    }

    /* Learn grid */
    .dv-learn-grid {
      display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr));
      gap: 14px; margin-bottom: 56px;
    }
    .dv-learn-tile {
      display: flex; align-items: flex-start; gap: 10px;
      background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
      border-radius: 12px; padding: 14px 16px; transition: background 0.2s;
    }
    .dv-learn-tile:hover { background: rgba(255,255,255,0.1); }
    .dv-learn-tick {
      width: 20px; height: 20px; min-width: 20px; border-radius: 50%;
      background: rgba(0,198,190,0.2); display: flex; align-items: center;
      justify-content: center; color: var(--dv-teal); font-size: 11px;
      font-weight: 700; margin-top: 1px; flex-shrink: 0;
    }
    .dv-learn-label { font-size: 13.5px; color: rgba(255,255,255,0.8); line-height: 1.5; }

    /* Tools */
    .dv-tools-block { margin-bottom: 56px; }
    .dv-tools-wrap { display: flex; flex-wrap: wrap; gap: 12px; }
    .dv-tool-tag {
      display: flex; align-items: center; gap: 8px;
      background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
      border-radius: 100px; padding: 8px 16px;
      font-size: 13px; color: #fff; font-weight: 500; transition: all 0.2s;
    }
    .dv-tool-tag:hover { background: rgba(0,198,190,0.15); border-color: rgba(0,198,190,0.4); }
    .dv-tool-tag span { font-size: 16px; }

    /* Syllabus timeline */
    .dv-syllabus-block { margin-bottom: 56px; }
    .dv-timeline { display: flex; flex-direction: column; }
    .dv-timeline-row {
      display: grid; grid-template-columns: 56px 1fr;
      position: relative;
    }
    .dv-timeline-row:not(:last-child) .dv-tl-line::after {
      content: ''; position: absolute;
      left: 27px; top: 52px; bottom: -20px;
      width: 2px; background: rgba(0,198,190,0.2);
    }
    .dv-tl-line {
      position: relative; display: flex;
      flex-direction: column; align-items: center; padding-top: 4px;
    }
    .dv-tl-dot {
      width: 14px; height: 14px; border-radius: 50%;
      background: var(--dv-teal); border: 3px solid rgba(0,198,190,0.3);
      flex-shrink: 0; margin-top: 8px; transition: transform 0.2s;
    }
    .dv-timeline-row:hover .dv-tl-dot { transform: scale(1.3); }

    .dv-week-panel {
      background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
      border-radius: 16px; padding: 18px 20px; margin-bottom: 16px;
      cursor: pointer; transition: all 0.25s;
    }
    .dv-week-panel:hover { background: rgba(255,255,255,0.09); border-color: rgba(0,198,190,0.3); }
    .dv-week-panel.dv-open { background: rgba(0,198,190,0.06); border-color: rgba(0,198,190,0.35); }

    .dv-week-top {
      display: flex; align-items: center;
      justify-content: space-between; gap: 12px;
    }
    .dv-week-info { display: flex; align-items: center; gap: 10px; flex: 1; min-width: 0; }
    .dv-week-tag {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 11px; font-weight: 700;
      color: var(--dv-teal); text-transform: uppercase;
      letter-spacing: 0.8px; white-space: nowrap;
    }
    .dv-week-name {
      font-family: 'Fraunces', serif;
      font-size: 15px; font-weight: 700; color: #fff; line-height: 1.3;
    }
    .dv-week-arrow {
      width: 28px; height: 28px; border-radius: 50%;
      background: rgba(255,255,255,0.06); display: flex;
      align-items: center; justify-content: center;
      color: rgba(255,255,255,0.5); font-size: 14px; flex-shrink: 0;
      transition: all 0.3s;
    }
    .dv-week-panel.dv-open .dv-week-arrow {
      background: rgba(0,198,190,0.15); color: var(--dv-teal); transform: rotate(180deg);
    }
    .dv-week-content {
      display: none; margin-top: 14px; padding-top: 14px;
      border-top: 1px solid rgba(255,255,255,0.08);
    }
    .dv-week-panel.dv-open .dv-week-content { display: block; }
    .dv-topic-list { display: flex; flex-direction: column; gap: 8px; }
    .dv-topic-item {
      display: flex; align-items: center; gap: 10px;
      font-size: 13.5px; color: rgba(255,255,255,0.7);
    }
    .dv-topic-item::before {
      content: ''; width: 6px; height: 6px; min-width: 6px;
      border-radius: 50%; background: var(--dv-teal); opacity: 0.7;
    }

    /* Capstone */
    .dv-capstone-box {
      background: linear-gradient(135deg, rgba(0,198,190,0.12) 0%, rgba(245,166,35,0.08) 100%);
      border: 1px solid rgba(0,198,190,0.25); border-radius: 20px;
      padding: 28px; margin-bottom: 56px;
    }
    .dv-capstone-heading {
      font-family: 'Fraunces', serif;
      font-size: 18px; font-weight: 800; color: #fff; margin-bottom: 12px;
      display: flex; align-items: center; gap: 10px;
    }
    .dv-capstone-text { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.7; }
    .dv-pipeline-track {
      display: flex; align-items: center; flex-wrap: wrap;
      gap: 6px; margin-top: 20px;
    }
    .dv-pipeline-node {
      background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
      border-radius: 8px; padding: 7px 14px;
      font-size: 12.5px; color: #fff; font-weight: 600;
      display: flex; align-items: center; gap: 6px;
    }
    .dv-pipeline-sep { color: var(--dv-teal); font-size: 16px; font-weight: 700; }

    /* Sidebar cards */
    .dv-aside-card {
      background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
      border-radius: 20px; padding: 24px; margin-bottom: 20px;
    }
    .dv-aside-heading {
      font-family: 'Fraunces', serif;
      font-size: 16px; font-weight: 800; color: #fff; margin-bottom: 16px;
    }
    .dv-req-list { display: flex; flex-direction: column; gap: 10px; }
    .dv-req-row {
      display: flex; align-items: flex-start; gap: 10px;
      font-size: 13.5px; color: rgba(255,255,255,0.7); line-height: 1.5;
    }
    .dv-req-dot {
      width: 6px; height: 6px; min-width: 6px; border-radius: 50%;
      background: var(--dv-gold); margin-top: 6px; flex-shrink: 0;
    }
    .dv-outcome-list { display: flex; flex-direction: column; gap: 10px; }
    .dv-outcome-row {
      display: flex; align-items: flex-start; gap: 10px;
      font-size: 13.5px; color: rgba(255,255,255,0.7); line-height: 1.5;
    }
    .dv-outcome-tick { color: var(--dv-teal); font-size: 14px; margin-top: 1px; flex-shrink: 0; }

    /* Instructor card */
    .dv-instructor-card {
      background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
      border-radius: 20px; padding: 24px; margin-bottom: 20px;
    }
    .dv-instructor-top { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
    .dv-instructor-avatar {
      width: 54px; height: 54px; border-radius: 50%;
      background: linear-gradient(135deg, var(--dv-teal), #0096f0);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Fraunces', serif; font-size: 22px; font-weight: 900; color: #fff;
      flex-shrink: 0;
    }
    .dv-instructor-name {
      font-family: 'Fraunces', serif;
      font-size: 15px; font-weight: 800; color: #fff; margin-bottom: 3px;
    }
    .dv-instructor-role { font-size: 12px; color: var(--dv-teal); font-weight: 600; }
    .dv-instructor-bio { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.6; }

    /* ── Responsive ── */
    @media(max-width:1024px){
      .dv-hero { grid-template-columns: 1fr; }
      .dv-price-card { position: relative; top: auto; }
      .dv-body-grid { grid-template-columns: 1fr; }
      .dv-body-aside { position: relative; top: auto; }
    }
    @media(max-width:768px){
      .dv-hero { padding-top: 32px; }
      .dv-stats-row { gap: 20px; }
      .dv-cta-row { flex-direction: column; }
      .dv-btn-enroll, .dv-btn-download { justify-content: center; }
      .dv-learn-grid { grid-template-columns: 1fr; }
      .dv-pipeline-track { gap: 4px; }
    }
    @media(max-width:480px){
      .dv-week-name { font-size: 13.5px; }
    }

    @keyframes dvSlideLeft  { from{opacity:0;transform:translateX(-28px)} to{opacity:1;transform:translateX(0)} }
    @keyframes dvSlideRight { from{opacity:0;transform:translateX(28px)}  to{opacity:1;transform:translateX(0)} }
    @media(prefers-reduced-motion:reduce){ *, *::before, *::after { animation:none!important; transition:none!important; } }
    /* ── NAVBAR ── */
    .fg-navbar {
      position: fixed; top: 0; left: 0; right: 0; z-index: 999;
      background: rgba(11,30,61,0.96); backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(0,198,190,0.15);
      transition: box-shadow 0.3s;
    }
    .fg-nav-inner {
      display: flex; align-items: center; justify-content: space-between;
      padding: 16px 24px; max-width: 1280px; margin: 0 auto;
    }
    .fg-brand { display: flex; align-items: center; gap: 12px; font-family: 'Syne', sans-serif; text-decoration: none; }
    .fg-brand-logo {
      width: 40px; height: 40px; border-radius: 12px; flex-shrink: 0;
      background: linear-gradient(135deg, #00C6BE, #0B1E3D);
      display: flex; align-items: center; justify-content: center;
      color: #fff; font-size: 18px; font-weight: 900;
    }
    .fg-brand-name { color: #fff; font-weight: 700; font-size: 17px; line-height: 1.1; }
    .fg-brand-sub  { color: rgba(255,255,255,0.4); font-size: 11px; font-family: 'DM Sans', sans-serif; }
    .fg-nav-links  { display: flex; align-items: center; gap: 32px; }
    .fg-nav-links a {
      color: rgba(255,255,255,0.65); font-size: 14px; font-weight: 500;
      text-decoration: none; transition: color 0.25s;
    }
    .fg-nav-links a:hover { color: #00C6BE; }
    .fg-nav-enroll {
      display: inline-flex; align-items: center; gap: 8px;
      background: #00C6BE; color: #0B1E3D;
      font-family: 'Syne', sans-serif; font-weight: 700; font-size: 13px;
      padding: 10px 22px; border-radius: 8px; border: none; cursor: pointer;
      text-decoration: none; transition: background 0.3s, transform 0.3s;
    }
    .fg-nav-enroll:hover { background: #00e8e0; transform: translateY(-2px); }
    .fg-hamburger {
      display: none; background: none; border: none; cursor: pointer;
      color: #fff; padding: 4px;
    }
    .fg-hamburger svg { display: block; width: 24px; height: 24px; }
    .fg-mobile-menu {
      display: none; background: rgba(11,30,61,0.98);
      border-top: 1px solid rgba(0,198,190,0.1);
      padding: 16px 24px 20px; flex-direction: column; gap: 4px;
    }
    .fg-mobile-menu.fg-open { display: flex; }
    .fg-mobile-menu a {
      color: rgba(255,255,255,0.7); font-size: 14px; font-weight: 500;
      padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
      text-decoration: none; transition: color 0.25s;
    }
    .fg-mobile-menu a:hover { color: #00C6BE; }
    .fg-mobile-menu .fg-nav-enroll {
      margin-top: 8px; padding: 12px 24px; justify-content: center;
      color: #0B1E3D;
    }
    @media(max-width:768px) {
      .fg-nav-links { display: none; }
      .fg-hamburger { display: block; }
    }

    /* ── FOOTER ── */
    .fg-footer { background: #060f1e; padding: 64px 24px 32px; margin-top: 0; }
    .fg-footer-inner { max-width: 1280px; margin: 0 auto; }
    .fg-footer-grid {
      display: grid; grid-template-columns: 2fr 1fr 1fr;
      gap: 40px; margin-bottom: 48px;
    }
    .fg-footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
    .fg-footer-brand .fg-brand-name { color: #fff; font-weight: 700; font-size: 17px; line-height: 1.1; font-family: 'Syne', sans-serif; }
    .fg-footer-brand .fg-brand-sub  { color: rgba(255,255,255,0.35); font-size: 11px; font-family: 'DM Sans', sans-serif; }
    .fg-footer-desc {
      font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.7;
      max-width: 340px; margin-bottom: 24px;
    }
    .fg-social-row { display: flex; gap: 10px; }
    .fg-social-btn {
      width: 36px; height: 36px; background: rgba(255,255,255,0.06);
      border-radius: 8px; display: flex; align-items: center; justify-content: center;
      font-size: 12px; color: rgba(255,255,255,0.5); font-weight: 700;
      text-decoration: none; transition: background 0.25s, color 0.25s;
    }
    .fg-social-btn:hover { background: rgba(0,198,190,0.15); color: #00C6BE; }
    .fg-footer-col h4 {
      color: #fff; font-size: 12px; font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.1em;
      margin-bottom: 20px; font-family: 'Syne', sans-serif;
    }
    .fg-footer-col ul { display: flex; flex-direction: column; gap: 12px; list-style: none; margin: 0; padding: 0; }
    .fg-footer-col a { font-size: 13px; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.25s; }
    .fg-footer-col a:hover { color: #00C6BE; }
    .fg-footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.06);
      padding-top: 28px; display: flex;
      align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 16px;
    }
    .fg-footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); margin: 0; }
    .fg-footer-links { display: flex; gap: 24px; }
    .fg-footer-links a { font-size: 12px; color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.25s; }
    .fg-footer-links a:hover { color: #00C6BE; }
    @media(max-width:1024px) { .fg-footer-grid { grid-template-columns: 1fr 1fr; } }
    @media(max-width:768px)  { .fg-footer-grid { grid-template-columns: 1fr; } .fg-footer-bottom { flex-direction: column; align-items: flex-start; } }
        /*whatsup and call toggle buttons*/
     .fg-float-wrap {
    position: fixed;
    left: 20px;
    bottom: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  /* Toggle button */
  .fg-toggle {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(11,30,61,.90);
    border: 1.5px solid rgba(0,198,190,.35);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0,0,0,.3);
    transition: background .25s;
    backdrop-filter: blur(8px);
    margin-bottom: 2px;
  }
  .fg-toggle:hover { background: #00C6BE; }
  .fg-toggle svg { width: 18px; height: 18px; color: #fff; display: block; transition: transform .35s; }

  /* Buttons container */
  .fg-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: opacity .35s, transform .35s;
  }
  .fg-btns.fg-hidden {
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
  }

  /* Each button */
  .fg-float-btn {
    display: flex;
    align-items: center;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,.22);
    cursor: pointer;
    text-decoration: none;
    max-width: 52px;
    transition: max-width .4s cubic-bezier(.22,1,.36,1), box-shadow .3s, transform .3s;
    white-space: nowrap;
    position: relative;
  }
  .fg-float-btn:hover {
    max-width: 240px;
    box-shadow: 0 8px 32px rgba(0,0,0,.28);
    transform: translateY(-2px);
  }

  /* Pulse ring */
  .fg-float-btn::before {
    content: '';
    position: absolute;
    width: 52px; height: 52px;
    border-radius: 50%;
    border: 2px solid;
    animation: fg-ring 2s ease-out infinite;
    pointer-events: none;
    left: 0; top: 0;
  }
  .fg-wa::before   { border-color: #25D366; }
  .fg-call::before { border-color: #00C6BE; animation-delay: 1s; }
  @keyframes fg-ring {
    0%   { transform: scale(1);   opacity: .7; }
    100% { transform: scale(1.8); opacity: 0; }
  }

  /* Icon */
  .fg-float-icon {
    width: 52px; height: 52px;
    border-radius: 50px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .fg-float-icon svg { width: 26px; height: 26px; display: block; }

  /* Label */
  .fg-float-label {
    font-family: 'Syne', 'Segoe UI', Arial, sans-serif;
    font-size: 13px; font-weight: 700;
    padding: 0 16px 0 10px;
    color: #fff;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity .3s ease .1s, transform .3s ease .1s;
    pointer-events: none;
    letter-spacing: .01em;
  }
  .fg-float-btn:hover .fg-float-label {
    opacity: 1;
    transform: translateX(0);
  }

  /* Colors */
  .fg-wa   { background: #25D366; }
  .fg-wa   .fg-float-icon { background: #25D366; }
  .fg-call { background: #0B1E3D; }
  .fg-call .fg-float-icon { background: #0B1E3D; }

  /* Tooltip */
  .fg-tooltip {
    background: #0B1E3D;
    color: #fff;
    font-family: 'DM Sans', 'Segoe UI', Arial, sans-serif;
    font-size: 11px; font-weight: 600;
    padding: 5px 12px;
    border-radius: 8px;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(0,0,0,.2);
    border: 1px solid rgba(0,198,190,.25);
    align-self: flex-start;
    margin-bottom: 2px;
    transition: opacity .4s;
  }

  /* Mobile */
  @media (max-width: 480px) {
    .fg-float-wrap { left: 12px; bottom: 20px; gap: 8px; }
    .fg-float-btn  { max-width: 46px; }
    .fg-float-btn:hover { max-width: 200px; }
    .fg-float-icon { width: 46px; height: 46px; }
    .fg-float-icon svg { width: 22px; height: 22px; }
    .fg-float-btn::before { width: 46px; height: 46px; }
    .fg-toggle { width: 34px; height: 34px; }
    .fg-toggle svg { width: 15px; height: 15px; }
    .fg-float-label { font-size: 12px; }
  }
  /* faq accordion */
    .dv-faq-section {
      position: relative;
      z-index: 1;
      max-width: 1400px;
      margin: 0 auto;
      padding: clamp(32px, 5vw, 56px) clamp(20px, 5vw, 64px);
    }

    .dv-faq-container {
      background: rgba(255, 255, 255, 0.02);
      border-radius: 28px;
      padding: 28px 24px;
      backdrop-filter: blur(2px);
    }

    /* section heading (optional, to match original style) */
    .dv-section-heading {
      font-family: 'Fraunces', serif;
      font-size: clamp(20px, 3vw, 26px);
      font-weight: 800;
      color: #fff;
      margin-bottom: 24px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .dv-section-heading::after {
      content: '';
      flex: 1;
      height: 2px;
      background: linear-gradient(to right, rgba(0, 198, 190, 0.4), transparent);
      border-radius: 2px;
    }

    /* FAQ grid & items */
    .dv-faq-grid {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .dv-faq-item {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 20px;
      transition: all 0.25s;
      overflow: hidden;
    }

    .dv-faq-item:hover {
      background: rgba(255, 255, 255, 0.07);
      border-color: rgba(0, 198, 190, 0.3);
    }

    /* question row */
    .dv-faq-question {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 18px 24px;
      font-family: 'Fraunces', serif;
      font-weight: 700;
      font-size: 16px;
      color: #fff;
      cursor: pointer;
      user-select: none;
    }

    .dv-faq-icon {
      font-size: 18px;
      color: #00C6BE;
      transition: transform 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
      flex-shrink: 0;
    }

    /* answer panel */
    .dv-faq-answer {
      display: none;
      padding: 0 24px 20px 24px;
      font-size: 14px;
      line-height: 1.65;
      color: rgba(255, 255, 255, 0.7);
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      margin-top: 6px;
    }

    /* open state */
    .dv-faq-item.dv-open .dv-faq-icon {
      transform: rotate(180deg);
    }

    .dv-faq-item.dv-open .dv-faq-answer {
      display: block;
      animation: dvFadeSlide 0.3s ease forwards;
    }

    @keyframes dvFadeSlide {
      0% {
        opacity: 0;
        transform: translateY(-8px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* responsive adjustments for faq */
    @media (max-width: 768px) {
      .dv-faq-container {
        padding: 20px 16px;
      }
      .dv-faq-question {
        padding: 14px 18px;
        font-size: 14px;
      }
      .dv-faq-answer {
        padding: 0 18px 16px 18px;
        font-size: 13px;
      }
    }
    .social-row {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  font-size: 18px;
  transition: 0.3s;
}

.social-btn:hover {
  background: #0077b5; /* LinkedIn color example */
}
/* ── popup pdf download Button ── */
#fgdm-trigger-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(105deg, #00b7ae 0%, #0d8c82 100%);
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 183, 174, 0.35);
  transition: all 0.25s ease;
}
#fgdm-trigger-btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(0, 183, 174, 0.4);
}
#fgdm-trigger-btn:active { transform: scale(0.97); }

/* ── Overlay ── */
#fgdm-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(11, 25, 34, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
#fgdm-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ── Modal card ── */
#fgdm-card {
  background: #ffffff;
  width: 100%;
  max-width: 420px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 198, 190, 0.15);
  transform: translateY(20px) scale(0.96);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
#fgdm-overlay.active #fgdm-card {
  transform: translateY(0) scale(1);
}

/* ── Header ── */
#fgdm-header {
  background: #152745;
  padding: 18px 22px 16px;
  position: relative;
}
.fgdm-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 198, 190, 0.2);
  border: 0.5px solid rgba(0, 198, 190, 0.4);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 700;
  color: #7ef3ec;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.fgdm-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00f5ec;
  box-shadow: 0 0 0 0 rgba(0, 245, 236, 0.7);
  animation: fgdm-pulse 1.8s infinite;
}
@keyframes fgdm-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(0, 245, 236, 0.7); }
  70%  { box-shadow: 0 0 0 5px rgba(0, 245, 236, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 245, 236, 0); }
}
#fgdm-header h2 {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.2px;
  margin-bottom: 4px;
}
#fgdm-header p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
}
.fgdm-meta-pills {
  display: flex;
  gap: 6px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.fgdm-meta-pill {
  background: rgba(255, 255, 255, 0.1);
  border: 0.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  padding: 3px 10px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 4px;
  backdrop-filter: blur(2px);
}
#fgdm-close-btn {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.1);
  border: 0.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.2s;
  line-height: 1;
}
#fgdm-close-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  transform: scale(1.02);
}

/* ── Form body ── */
#fgdm-form-body {
  padding: 20px 22px 24px;
  background: #ffffff;
}
.fgdm-field { margin-bottom: 14px; }
.fgdm-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: #2c5a54;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}
.fgdm-req { color: #e5484d; margin-left: 2px; }
.fgdm-opt {
  font-size: 10px;
  color: #8ba39e;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  margin-left: 4px;
}
.fgdm-input-wrap { position: relative; }
.fgdm-prefix {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  color: #5d827b;
  pointer-events: none;
  user-select: none;
  font-weight: 500;
}
.fgdm-input, .fgdm-select {
  width: 100%;
  padding: 10px 12px;
  font-size: 13px;
  font-family: inherit;
  border: 1.5px solid #e0ecea;
  border-radius: 14px;
  background: #fefefe;
  color: #1a3b36;
  outline: none;
  transition: all 0.2s;
  -webkit-appearance: none;
  box-sizing: border-box;
}
.fgdm-input.has-prefix { padding-left: 58px; }
.fgdm-input:focus, .fgdm-select:focus {
  border-color: #00b7ae;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(0, 183, 174, 0.12);
}
.fgdm-input.error, .fgdm-select.error {
  border-color: #e5484d;
  background: #fff8f8;
}
.fgdm-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%232c5a54' stroke-width='1.5' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
  background-color: #fefefe;
}
.fgdm-err-msg {
  font-size: 10px;
  color: #e5484d;
  font-weight: 600;
  margin-top: 4px;
  display: none;
}
.fgdm-err-msg.show { display: block; }

/* ── Submit button ── */
#fgdm-submit-btn {
  width: 100%;
  background: linear-gradient(105deg, #00b7ae 0%, #0d8c82 100%);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  margin-top: 8px;
  transition: all 0.25s ease;
  box-shadow: 0 6px 18px rgba(0, 183, 174, 0.35);
}
#fgdm-submit-btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(0, 183, 174, 0.4);
}
#fgdm-submit-btn:active { transform: scale(0.97); }
#fgdm-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.fgdm-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: fgdm-spin 0.7s linear infinite;
  display: none;
  flex-shrink: 0;
}
#fgdm-submit-btn.loading .fgdm-spinner  { display: inline-block; }
#fgdm-submit-btn.loading .fgdm-btn-text { display: none; }
@keyframes fgdm-spin { to { transform: rotate(360deg); } }
.fgdm-trust {
  text-align: center;
  font-size: 10px;
  color: #95aea9;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

/* ── Success screen ── */
#fgdm-success {
  display: none;
  padding: 36px 22px 40px;
  text-align: center;
  background: #ffffff;
}
.fgdm-suc-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e0f9f7, #caf2ef);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 20px;
  box-shadow: 0 4px 12px rgba(0, 183, 174, 0.15);
}
.fgdm-suc-title {
  font-size: 24px;
  font-weight: 800;
  color: #146b62;
  margin-bottom: 12px;
}
.fgdm-suc-text {
  font-size: 14px;
  color: #5f7e78;
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}
.fgdm-close-final {
  display: inline-block;
  background: linear-gradient(105deg, #00b7ae 0%, #0d8c82 100%);
  color: white;
  border: none;
  padding: 12px 32px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 183, 174, 0.3);
  margin-top: 8px;
}
.fgdm-close-final:hover {
  opacity: 0.92;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 183, 174, 0.4);
}
.fgdm-close-final:active { transform: scale(0.97); }

/* ── Honeypot ── */
.fgdm-hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }

/* ── Responsive ── */
@media (max-width: 480px) {
  #fgdm-card { max-width: 94%; border-radius: 24px; }
  #fgdm-header { padding: 16px 18px 14px; }
  #fgdm-header h2 { font-size: 20px; }
  #fgdm-form-body { padding: 18px 18px 22px; }
  #fgdm-success { padding: 28px 18px 32px; }
  .fgdm-suc-title { font-size: 22px; }
  .fgdm-suc-text { font-size: 13px; }
  .fgdm-close-final { padding: 10px 28px; font-size: 13px; }
}