:root {
    --navy:    #ffffff;
    --navy2:   #f8f9fb;
    --blue:    #2563eb;
    --blue-lt: #2563eb;
    --cyan:    #0891b2;
    --green:   #059669;
    --muted:   #64748b;
    --border:  rgba(0,0,0,0.09);
    --white:   #0f172a;
    --text:    #334155;
    --gold:    #d97706;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--navy);
    color: var(--text);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    padding: 0 32px;
    display: flex; align-items: center; justify-content: space-between;
    height: 68px;
  }
  .nav-logo { display: flex; align-items: center; }
  .nav-logo-img { height: 62px; width: auto; display: block; }
  .nav-logo span { color: var(--blue-lt); }
  .nav-cta {
    background: var(--blue); color: #fff;
    padding: 9px 22px; border-radius: 6px;
    font-size: 14px; font-weight: 600; cursor: pointer; border: none;
    font-family: 'Inter', sans-serif;
    transition: background .2s, transform .15s;
    text-decoration: none;
  }
  .nav-cta:hover { background: var(--blue-lt); transform: translateY(-1px); }

  /* ── HERO ── */
  .hero { position: relative; overflow: hidden; padding: 100px 24px 80px; text-align: center; min-height: 600px; }
  .hero-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 70% 50% at 50% -10%, rgba(37,99,235,0.08) 0%, transparent 60%),
      radial-gradient(ellipse 40% 30% at 80% 80%, rgba(8,145,178,0.06) 0%, transparent 50%),
      #f0f4ff;
    z-index: 0;
  }
  .hero-bg::after {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(rgba(37,99,235,0.12) 1px, transparent 1px);
    background-size: 32px 32px;
  }
  .hero-inner { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    border: 1px solid rgba(37,99,235,0.3); background: rgba(37,99,235,0.08);
    border-radius: 50px; padding: 6px 16px;
    font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--blue-lt); margin-bottom: 28px;
  }
  .badge-dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; box-shadow: 0 0 6px var(--green); animation: pulse 2s infinite; }
  @keyframes pulse { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:.5;transform:scale(1.4);} }
  .hero h1 { font-size: clamp(2.4rem,5.5vw,4rem); font-weight: 900; line-height: 1.08; letter-spacing: -0.04em; color: #0f172a; margin-bottom: 24px; }
  .hero h1 em { font-style: normal; background: linear-gradient(135deg,var(--blue-lt),var(--cyan)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
  .hero-sub { font-size: 18px; color: var(--muted); max-width: 580px; margin: 0 auto 36px; line-height: 1.7; }
  .hero-rating { display: inline-flex; align-items: center; gap: 10px; background: rgba(37,99,235,0.06); border: 1px solid rgba(37,99,235,0.2); border-radius: 50px; padding: 10px 22px; margin-bottom: 40px; }
  .stars { color: var(--gold); letter-spacing: 2px; font-size: 15px; }
  .hero-rating strong { color: #0f172a; font-size: 15px; font-weight: 700; }
  .hero-rating span   { color: var(--muted); font-size: 13px; }
  .hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
  .btn-primary {
    background: var(--blue); color: #fff; padding: 15px 34px; border-radius: 8px;
    font-size: 15px; font-weight: 700; cursor: pointer; border: none;
    font-family: 'Inter', sans-serif;
    transition: background .2s, transform .15s, box-shadow .2s;
    box-shadow: 0 4px 20px rgba(37,99,235,0.35);
    text-decoration: none;
  }
  .btn-primary:hover { background: var(--blue-lt); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,99,235,0.45); }
  .btn-secondary {
    background: #ffffff; color: #1e40af; padding: 15px 34px; border-radius: 8px;
    font-size: 15px; font-weight: 600; text-decoration: none;
    border: 1px solid rgba(37,99,235,0.3); transition: background .2s, transform .15s;
  }
  .btn-secondary:hover { background: #eff6ff; transform: translateY(-2px); }

  /* ── STATS STRIP ── */
  .stats-strip { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: #f1f5f9; }
  .stats-inner { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); }
  .stat-item { padding: 28px 24px; text-align: center; border-right: 1px solid rgba(0,0,0,0.08); }
  .stat-item:last-child { border-right: none; }
  .stat-num { font-size: 2.2rem; font-weight: 900; color: #0f172a; letter-spacing: -0.04em; display: block; line-height: 1; margin-bottom: 6px; }
  .stat-num span { color: var(--blue-lt); }
  .stat-lbl { font-size: 13px; color: #0f172a; font-weight: 500; }
  @media(max-width:640px){ .stats-inner{grid-template-columns:1fr 1fr;} .stat-item:nth-child(2){border-right:none;} }

  /* ── MAIN LAYOUT ── */
  .page-wrap { max-width: 1080px; margin: 0 auto; padding: 72px 24px; display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: 48px; align-items: start; }
  @media(max-width:900px){ .page-wrap{grid-template-columns:1fr;} .sidebar{order:-1;} }

  /* ── MAIN COLUMN OVERFLOW GUARD ── */
  main { min-width: 0; width: 100%; }

  /* ── SECTION LABELS ── */
  .content-block { margin-bottom: 56px; min-width: 0; max-width: 100%; }
  .s-label { font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--blue-lt); margin-bottom: 10px; }
  .s-heading { font-size: 1.55rem; font-weight: 800; color: #0f172a; letter-spacing: -0.03em; margin-bottom: 20px; line-height: 1.2; }
  .content-block p { color: var(--muted); font-size: 15px; margin-bottom: 14px; line-height: 1.75; }

  /* ── TAGS ── */
  .tags-wrap { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; width: 100%; overflow: hidden; }
  .tag { background: rgb(37 99 235 / 9%); border: 1px solid rgba(37,99,235,0.25); border-radius: 6px; padding: 6px 14px; font-size: 13px; font-weight: 600; color: var(--blue-lt); cursor: default; transition: background .2s; white-space: nowrap; }
  .tag:hover { background: rgb(37 99 235 / 14%); }

  /* ── CHECKLIST ── */
  .what-list { list-style: none; margin-top: 16px; }
  .what-list li { display: flex; gap: 14px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid rgba(0,0,0,0.07); font-size: 14px; color: var(--text); line-height: 1.6; }
  .what-list li:last-child { border-bottom: none; }
  .chk { width: 22px; height: 22px; background: rgba(5,150,105,0.08); border: 1px solid rgba(5,150,105,0.25); border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; margin-top: 1px; }
  .chk::after { content: '✓'; color: var(--green); font-size: 11px; font-weight: 800; }

  /* ── VIDEO EMBED ── */
  .video-block { margin-bottom: 48px; }
  .video-wrap {
    width: 100%;
    max-width: 640px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    overflow: hidden;
    background: #000;
  }
  .video-wrap iframe {
    display: block;
    width: 640px;
    height: 360px;
    max-width: 100%;
    border: none;
  }

  /* ── UPWORK REVIEW CARDS ── */
  .upwork-reviews { margin-bottom: 48px; }
  .review-cards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 20px; }
  @media(max-width:640px){ .review-cards-grid { grid-template-columns: 1fr; } }

  .rc {
    background: var(--navy2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    display: flex; flex-direction: column; gap: 12px;
    transition: border-color .2s, transform .2s;
    position: relative;
    overflow: hidden;
  }
  .rc::before {
    content: '"';
    font-size: 5rem; color: var(--blue-lt);
    position: absolute; top: 4px; right: 14px;
    line-height: 1; opacity: 0.1; font-family: Georgia, serif;
    pointer-events: none;
  }
  .rc:hover { border-color: rgba(37,99,235,0.4); transform: translateY(-3px); }

  .rc-header { display: flex; flex-direction: column; gap: 6px; }
  .rc-title { font-size: 13px; font-weight: 700; color: var(--blue-lt); line-height: 1.3; }
  .rc-meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
  .rc-stars { color: var(--gold); font-size: 13px; letter-spacing: 1px; }
  .rc-score { font-size: 13px; font-weight: 700; color: #0f172a; }
  .rc-date { font-size: 11px; color: var(--muted); }
  .rc-text { font-size: 13px; color: var(--text); line-height: 1.65; font-style: italic; }
  .rc-tags { display: flex; flex-wrap: wrap; gap: 6px; }
  .rc-tag { font-size: 11px; font-weight: 500; color: var(--muted); background: rgba(37,99,235,0.06); border: 1px solid rgba(37,99,235,0.2); border-radius: 50px; padding: 3px 10px; }
  .rc-footer { font-size: 11px; color: var(--muted); border-top: 1px solid var(--border); padding-top: 10px; display: flex; gap: 16px; flex-wrap: wrap; }
  .rc-footer span { display: flex; align-items: center; gap: 4px; }

  /* ── video (winmatics images) ── */
  .video-wrapper {position: relative; width: 100%; aspect-ratio: 16 / 9; margin: auto; cursor: pointer; border-radius: 12px; overflow: hidden;}
.video-thumb {width: 100%; display: block; transition: transform 0.3s ease; height: 100%; object-fit: cover;}
.play-button {position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 70px; height: 70px; background: #ff0000; color: #fff; font-size: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: 0.3s ease;}

  /* review slider */
  .testimonial-slider {width: 100%; margin: auto; padding: 20px 0;}
  .testimonial-slider .reviewSwiper{width: 100%; margin: auto;}
.reviewSwiper .swiper-slide {display: flex; justify-content: center; align-items: center;}
.reviewSwiper .swiper-slide img {width: 100%; max-width: 100%; height: 100%; padding: 30px 20px; border: 1px solid rgba(37, 99, 235, 0.45); border-radius: 12px; margin-bottom: 10px;}


  /* ── LIGHTBOX ── */
  .lightbox { display: none; position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,0.85); align-items: center; justify-content: center; backdrop-filter: blur(8px); }
  .lightbox.open { display: flex; }
  .lightbox img { max-width: 90vw; max-height: 90vh; border-radius: 12px; box-shadow: 0 24px 80px rgba(0,0,0,0.6); }
  .lightbox-close { position: fixed; top: 24px; right: 28px; font-size: 32px; color: #fff; cursor: pointer; z-index: 10000; line-height: 1; opacity: .7; transition: opacity .2s; }
  .lightbox-close:hover { opacity: 1; }

  /* ── SIDEBAR ── */
  .sidebar { position: sticky; top: 80px; }
  .calendly-card { background: #ffffff; border: 1px solid rgba(0,0,0,0.1); border-radius: 16px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,0.10); margin-bottom: 16px; }
  .calendly-card-header { padding: 22px 24px 16px; border-bottom: 1px solid rgba(0,0,0,0.08); }
  .calendly-card-header h3 { font-size: 16px; font-weight: 800; color: #0f172a; letter-spacing: -0.02em; margin-bottom: 4px; }
  .calendly-card-header p { font-size: 12px; color: var(--muted); }
  .calendly-inline-widget { min-width: 100% !important; height: 680px !important; }
  .trust-card { background: #ffffff; border: 1px solid rgba(0,0,0,0.08); border-radius: 16px; padding: 22px; text-align: center; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
  .trust-num   { font-size: 3rem; font-weight: 900; color: #0f172a; letter-spacing: -0.05em; line-height: 1; margin-bottom: 4px; }
  .trust-stars { color: var(--gold); font-size: 17px; letter-spacing: 3px; margin-bottom: 4px; }
  .trust-lbl   { font-size: 12px; color: var(--muted); }

  /* ── CTA BANNER ── */
  .cta-wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px 72px; }
  .cta-banner { background: linear-gradient(135deg,rgba(37,99,235,0.10) 0%,rgba(8,145,178,0.08) 100%); border: 1px solid rgba(37,99,235,0.3); border-radius: 16px; padding: 56px 40px; text-align: center; position: relative; overflow: hidden; }
  .cta-banner::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(37,99,235,0.08) 1px,transparent 1px); background-size: 24px 24px; pointer-events: none; }
  .cta-banner h2 { font-size: 2rem; font-weight: 900; color: #1e3a8a; letter-spacing: -0.04em; margin-bottom: 12px; }
  .cta-banner p  { font-size: 15px; color: var(--muted); margin-bottom: 28px; text-align: center;}

  /* ── FOOTER ── */
  footer { border-top: 1px solid var(--border); padding: 28px 24px; text-align: center; background: #f1f5f9; font-size: 13px; color: #0f172a; border-top: 1px solid rgba(0,0,0,0.08); }
  footer p{text-align: center;}
  footer a { color: var(--blue-lt); text-decoration: none; font-weight: 500; }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp { from{opacity:0;transform:translateY(18px);} to{opacity:1;transform:translateY(0);} }
  .hero-badge { animation: fadeUp .5s ease both; }
  .hero h1    { animation: fadeUp .5s .1s ease both; }
  .hero-sub   { animation: fadeUp .5s .2s ease both; }
  .hero-rating{ animation: fadeUp .5s .3s ease both; }
  .hero-btns  { animation: fadeUp .5s .4s ease both; }

  /* ── HERO PROFILE PHOTO ── */
  .hero-profile {
    margin-bottom: 24px;
  }
  .hero-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: 3px solid rgba(37,99,235,0.4);
    box-shadow: 0 0 0 4px rgba(37,99,235,0.15), 0 8px 32px rgba(0,0,0,0.5);
    display: block;
    margin: 0 auto;
  }

  /* ── BOOK CARD (screenshot style) ── */
  .book-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  }
  .book-card-title { font-size: 20px; font-weight: 800; color: #0f172a; letter-spacing: -0.03em; margin-bottom: 4px; }
  .book-card-sub   { font-size: 13px; color: var(--muted); margin-bottom: 20px; }

  .price-opt {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 16px; border-radius: 10px;
    border: 1.5px solid rgba(0,0,0,0.1);
    margin-bottom: 10px; cursor: pointer;
    transition: border-color .2s, background .2s;
    background: #fafafa;
  }
  .price-opt.selected { border-color: var(--blue); background: rgba(37,99,235,0.07); }
  .price-radio {
    width: 18px; height: 18px; border-radius: 50%;
    border: 2px solid #e5e5e5;
    flex-shrink: 0;
    transition: border-color .2s;
    background: #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .price-radio:after{content: '';
    width: 6px;
    height: 6px;
    background: #d2d1d1;
    border-radius: 50%;
    position: absolute;}
  .selected-dot {
    border-color: var(--blue) !important;
    background: var(--blue);
    display: flex; align-items: center; justify-content: center;
    position: relative;
  }
  .selected-dot::after { content: ''; width: 6px; height: 6px; background: #fff; border-radius: 50%; position: absolute; }
  .price-dur { font-size: 15px; font-weight: 500; color: #334155; flex: 1; }
  .price-val { font-size: 20px; font-weight: 800; color: #0f172a; letter-spacing: -0.03em; }
  .selected-price { color: var(--blue-lt) !important; }

  .sched-section { margin-top: 22px; }
  .sched-heading { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; color: var(--muted); margin-bottom: 12px; }

  .sched-opt {
    display: flex; gap: 14px; align-items: flex-start;
    padding: 14px 16px; border-radius: 10px;
    border: 1.5px solid rgba(0,0,0,0.1);
    margin-bottom: 10px; transition: border-color .2s, background .2s;
  }
  .sched-opt.active { border-color: var(--blue); background: rgba(37,99,235,0.07); }
  .sched-opt.dim { opacity: 0.4; }
  .sched-radio {
    width: 18px; height: 18px; border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.2);
    flex-shrink: 0; margin-top: 2px;
  }
  .active-dot {
    border-color: var(--blue) !important;
    background: var(--blue);
    display: flex; align-items: center; justify-content: center;
    position: relative;
  }
  .active-dot::after { content: ''; width: 6px; height: 6px; background: #fff; border-radius: 50%; position: absolute; }
  .sched-info strong { display: block; font-size: 15px; font-weight: 700; color: #0f172a; margin-bottom: 2px; }
  .sched-info span   { font-size: 12px; color: var(--muted); }

  .time-chip {
    background: #f1f5f9; border: 1px solid rgba(0,0,0,0.08);
    border-radius: 8px; padding: 12px 16px;
    font-size: 15px; font-weight: 600; color: #0f172a;
    text-align: center; margin-top: 4px;
    letter-spacing: 0.02em;
  }

  .book-btn-main {
    display: block; width: 100%;
    background: var(--blue); color: #fff;
    border-radius: 10px; padding: 16px;
    font-size: 16px; font-weight: 700;
    text-align: center; text-decoration: none;
    margin-top: 18px;
    transition: background .2s, transform .15s, box-shadow .2s;
    box-shadow: 0 4px 18px rgba(37,99,235,0.4);
    letter-spacing: -0.01em;
  }
  .book-btn-main:hover { background: var(--blue-lt); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,99,235,0.5); }

  .book-note { display: flex; gap: 10px; margin-top: 14px; font-size: 12px; color: var(--muted); line-height: 1.5; align-items: flex-start; }
  .book-note-icon { font-size: 15px; flex-shrink: 0; margin-top: 1px; }

  /* ── TESTIMONIAL CARDS (screenshot style) ── */
  .tcard-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 20px; }
  @media(max-width:640px){ .tcard-grid { grid-template-columns: 1fr; } }

  .tcard {
    background: #ffffff;
    border: 1.5px solid rgba(0,0,0,0.08);
    border-radius: 14px;
    padding: 22px;
    display: flex; flex-direction: column; gap: 12px;
    transition: border-color .2s, transform .2s;
    position: relative; overflow: hidden;
  }
  .tcard::after {
    content: '❝';
    font-size: 4.5rem; color: var(--blue-lt);
    position: absolute; top: 6px; right: 14px;
    line-height: 1; opacity: 0.08; font-family: Georgia, serif;
    pointer-events: none;
  }
  .tcard:hover { border-color: rgba(37,99,235,0.45); transform: translateY(-3px); }

  .tcard-stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; }
  .tcard-text  { font-size: 14px; color: var(--text); line-height: 1.7; }
  .tcard-tags  { display: flex; flex-wrap: wrap; gap: 6px; }
  .tcard-tags span { font-size: 11px; font-weight: 500; color: #2563eb; background: rgba(37,99,235,0.06); border: 1px solid rgba(37,99,235,0.2); border-radius: 50px; padding: 3px 11px; }

  .tcard-footer { display: flex; align-items: center; gap: 12px; padding-top: 10px; border-top: 1px solid rgba(0,0,0,0.07); margin-top: auto; }
  .tcard-avatar {
    width: 36px; height: 36px; border-radius: 10px;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    color: #fff; font-size: 12px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; letter-spacing: 0;
  }
  .tcard-name { font-size: 13px; font-weight: 700; color: #0f172a; margin-bottom: 2px; }
  .tcard-role { font-size: 11px; color: var(--muted); line-height: 1.4; }


  /* ══════════════════════════════════════
     RESPONSIVE — LAPTOP (max 1100px)
  ══════════════════════════════════════ */
  @media (max-width: 1100px) {
    .page-wrap {
      grid-template-columns: 1fr 340px;
      gap: 32px;
      padding: 56px 20px;
    }
  }

  /* ══════════════════════════════════════
     RESPONSIVE — TABLET / SMALL LAPTOP (max 900px)
  ══════════════════════════════════════ */
  @media (max-width: 900px) {
    /* Stack layout */
    .page-wrap {
      grid-template-columns: 1fr;
      padding: 40px 20px;
      gap: 32px;
    }
    .sidebar { order: -1; position: static; top: auto; }

    /* Nav */
    nav { padding: 0 20px; }

    /* Hero */
    .hero { padding: 72px 20px 60px; }
    .hero h1 { font-size: 2.2rem; }
    .hero-sub { font-size: 16px; }

    /* Stats strip */
    .stats-inner { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2) { border-right: none; }
    .stat-item:nth-child(3) { border-top: 1px solid rgba(0,0,0,0.08); }
    .stat-item:nth-child(4) { border-top: 1px solid rgba(0,0,0,0.08); border-right: none; }

    /* Section headings */
    .s-heading { font-size: 1.3rem; }

    /* Video */
    .video-wrap { max-width: 100%; }
    .video-wrap iframe { width: 100%; height: auto; aspect-ratio: 16/9; }

    /* Review grids */
    .tcard-grid { grid-template-columns: 1fr; }
    .review-cards-grid { grid-template-columns: 1fr; }

    /* CTA banner */
    .cta-banner { padding: 40px 24px; }
    .cta-banner h2 { font-size: 1.5rem; }
  }

  @media(max-width:767px){
    .nav-logo-img{height: 52px;}
    .video-wrapper{margin-bottom: 0;}
    .video-wrapper iframe{height: 300px;}
    .reviewSwiper .swiper-slide img{padding: 16px 10px;}
  }

  /* ══════════════════════════════════════
     RESPONSIVE — MOBILE (max 640px)
  ══════════════════════════════════════ */
  @media (max-width: 640px) {
    /* Nav */
    nav { padding: 0 16px; height: 56px; }
    .nav-logo { font-size: 16px; }
    .nav-cta { padding: 7px 14px; font-size: 13px; }

    /* Hero */
    .hero { padding: 60px 16px 48px; }
    .hero h1 { font-size: clamp(1.8rem, 7vw, 2.4rem); letter-spacing: -0.03em; }
    .hero-sub { font-size: 15px; margin-bottom: 24px; }
    .hero-avatar { width: 80px; height: 80px; }
    .hero-rating { padding: 8px 16px; flex-wrap: wrap; justify-content: center; }
    .hero-btns { flex-direction: column; align-items: center; gap: 10px; }
    .btn-primary, .btn-secondary { width: 100%; max-width: 320px; text-align: center; padding: 14px 24px; }

    /* Stats */
    .stats-inner { grid-template-columns: 1fr 1fr; }
    .stat-item { padding: 20px 12px; }
    .stat-num { font-size: 1.7rem; }
    .stat-lbl { font-size: 11px; }

    /* Page wrap */
    .page-wrap { padding: 32px 16px; gap: 28px; }

    /* Section labels & headings */
    .s-label { font-size: 10px; }
    .s-heading { font-size: 1.2rem; margin-bottom: 14px; }
    .content-block p { font-size: 14px; }
    .content-block { margin-bottom: 40px; }

    /* Tags */
    .tags-wrap { gap: 6px; }
    .tag { font-size: 12px; padding: 5px 11px; }

    /* Checklist */
    .what-list li { font-size: 13px; padding: 13px 0; }

    /* Video — full width on mobile */
    .video-wrap { max-width: 100%; border-radius: 10px; }
    .video-wrap iframe { width: 100%; height: auto; min-height: 200px; aspect-ratio: 16/9; }

    /* Testimonial cards */
    .tcard-grid { grid-template-columns: 1fr; gap: 12px; }
    .tcard { padding: 18px; }
    .tcard-text { font-size: 13px; }

    /* Book card */
    .book-card { padding: 20px 16px; }
    .book-card-title { font-size: 18px; }
    .price-opt { padding: 12px 14px; }
    .price-val { font-size: 18px; }
    .book-btn-main { font-size: 15px; padding: 14px; }

    /* Calendly widget */
    .calendly-inline-widget { height: 580px !important; }

    /* Trust card */
    .trust-card { padding: 18px; }
    .trust-num { font-size: 2.5rem; }

    /* CTA Banner */
    .cta-wrap { padding: 0 16px 48px; }
    .cta-banner { padding: 36px 20px; border-radius: 12px; }
    .cta-banner h2 { font-size: 1.3rem; }
    .cta-banner p { font-size: 14px; }

    /* Footer */
    footer { padding: 20px 16px; font-size: 12px; }
  }

  /* ══════════════════════════════════════
     GLOBAL TEXT JUSTIFY & READABILITY
  ══════════════════════════════════════ */
  p, .tcard-text, .rc-text, .content-block p {
    text-align: left;
    word-break: break-word;
    overflow-wrap: anywhere;
    hyphens: auto;
    max-width: 100%;
  }

  /* Prevent orphaned single words */
  h1, h2, h3, .s-heading, .hero h1 {
    word-break: break-word;
    overflow-wrap: break-word;
    text-wrap: balance;
  }


  /* ══════════════════════════════════════
     CASE STUDIES SECTION
  ══════════════════════════════════════ */
  .cs-section {
    background: #f8faff;
    border-top: 1px solid rgba(0,0,0,0.07);
    border-bottom: 1px solid rgba(0,0,0,0.07);
    padding: 72px 24px;
  }
  .cs-inner {
    max-width: 1080px;
    margin: 0 auto;
  }
  .cs-header {
    text-align: center;
    margin-bottom: 56px;
  }
  .cs-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.04em;
    margin-bottom: 14px;
    line-height: 1.1;
  }
  .cs-intro {
    font-size: 16px;
    color: #64748b;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
  }

  /* Card */
  .cs-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 28px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    transition: box-shadow .2s, transform .2s;
  }
  .cs-card:hover { box-shadow: 0 8px 32px rgba(37,99,235,0.1); transform: translateY(-2px); }

  .cs-card-header {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 18px;
    flex-wrap: wrap;
  }
  .cs-number {
    font-size: 13px;
    font-weight: 900;
    color: #2563eb;
    background: rgba(37,99,235,0.08);
    border: 1px solid rgba(37,99,235,0.2);
    border-radius: 8px;
    padding: 6px 12px;
    letter-spacing: 0.05em;
    flex-shrink: 0;
    margin-top: 2px;
  }
  .cs-card-meta { flex: 1; min-width: 0; }
  .cs-card-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
    line-height: 1.2;
  }
  .cs-card-sub {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
  }

  /* Badges */
  .cs-badge {
    background: rgba(37,99,235,0.08);
    border: 1px solid rgba(37,99,235,0.2);
    color: #1d4ed8;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    white-space: nowrap;
    flex-shrink: 0;
    align-self: flex-start;
  }
  .cs-badge-green  { background: rgba(5,150,105,0.08); border-color: rgba(5,150,105,0.25); color: #065f46; }
  .cs-badge-purple { background: rgba(124,58,237,0.08); border-color: rgba(124,58,237,0.25); color: #5b21b6; }
  .cs-badge-gold   { background: rgba(217,119,6,0.08); border-color: rgba(217,119,6,0.25); color: #92400e; }

  .cs-card-text {
    font-size: 14px;
    color: #475569;
    line-height: 1.75;
    margin-bottom: 18px;
  }
  .cs-card-text strong { color: #0f172a; font-weight: 700; }

  /* Links */
  .cs-links { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
  .cs-link {
    font-size: 13px; font-weight: 600;
    color: #2563eb;
    background: rgba(37,99,235,0.06);
    border: 1px solid rgba(37,99,235,0.2);
    border-radius: 6px;
    padding: 6px 14px;
    text-decoration: none;
    transition: background .2s;
  }
  .cs-link:hover { background: rgba(37,99,235,0.12); }

  /* Stats row */
  .cs-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 24px;
    padding: 16px;
    background: #f8faff;
    border: 1px solid rgba(37,99,235,0.1);
    border-radius: 10px;
  }
  .cs-stat { text-align: center; }
  .cs-stat-num {
    display: block;
    font-size: 1.4rem;
    font-weight: 900;
    color: #2563eb;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 4px;
  }
  .cs-stat-lbl {
    font-size: 11px;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }

  /* Screenshot images */
  .cs-imgs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 8px;
  }
  .cs-imgs-single { grid-template-columns: 1fr; }
  .cs-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.1);
    cursor: zoom-in;
    transition: transform .2s, box-shadow .2s;
    display: block;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  }
  .cs-img:hover { transform: scale(1.01); box-shadow: 0 6px 24px rgba(0,0,0,0.15); }

  /* Responsive */
  @media (max-width: 640px) {
    .cs-section{ padding: 48px 16px; }
    .cs-card { padding: 20px 16px; }
    .cs-card-header { gap: 12px; }
    .cs-card-title { font-size: 1rem; }
    .cs-stats-row { grid-template-columns: repeat(2, 1fr); }
    .cs-imgs { grid-template-columns: 1fr; }
    .cs-stat-num { font-size: 1.2rem; }
    .cs-badge { font-size: 11px; padding: 5px 10px; }
  }
  @media (max-width: 900px) {
    .cs-stats-row { grid-template-columns: repeat(2, 1fr); }
  }


/* Dropdown styles (added) */
.dropdown { margin-bottom: 12px; position: relative; }
.dropdown-selected {
  background: #f1f5f9;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}
.dropdown-menu {
  display: none;
  position: absolute;
  width: 100%;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 10px;
  margin-top: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  z-index: 999;
}
.dropdown-menu.show { display: block; }
.dropdown-menu div { padding: 12px 14px; cursor: pointer; font-size: 14px; }
.dropdown-menu div:hover { background: #eff6ff; }

.privacy-section{background: #fff; padding: 72px 24px 52px;}
.privacy-title h1{font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 900; color: #0f172a; letter-spacing: -0.04em; margin-bottom: 20px; line-height: 1.1;}
.privacy-section h2{margin-bottom: 20px; margin-top: 28px; font-size: 24px; line-height: 1.3; color: #0f172a; font-weight: 700;}
.privacy-section p{font-size: 14px; color: #475569; line-height: 1.7; margin-bottom: 20px;}
.privacy-section a{color: var(--blue-lt); text-decoration: none; font-weight: 500;}

@media (max-width: 640px) {
  .privacy-section {padding: 48px 16px 28px;}
  .privacy-section h2{font-size: 22px;}
}

/* ── WHATSAPP FLOATING BUTTON ── */
.whatsapp-float {
  position: fixed;
  right: 25px;
  bottom: 22px;
  width: 60px;
  height: 60px;
  z-index: 9999;
  transition: transform .2s ease;
  text-decoration: none;
  border-radius: 50%;
  animation: round 2s infinite;
  background-color: #25D366;
  color: #ffffff;
  padding: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.05);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  display: block;
  position: relative;
  fill: #ffffff;
  padding-left: 2px;
}

@keyframes round {
    0% {
        box-shadow: 0 0 0 0 hsl(142.41deg 70.16% 48.63%)
    }

    100% {
        box-shadow: 0 0 0 15px rgb(37 211 102 / 1%)
    }
}

@media (max-width: 640px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    right: 16px;
    bottom: 16px;
  }
  .whatsapp-float svg{width: 26px; height: 26px;}
}