:root {
    --white:        #FAFAF8;
    --off-white:    #F4F3F0;
    --purple:       #2B1B72;
    --purple-mid:   #3B2A8A;
    --purple-light: #EEE9FF;
    --purple-line:  rgba(43,27,114,0.12)
    --gold:         #C9A84C;
    --gold-light:   #E8CB7A;
    --text:         #181524;
    --muted:        #6B6785;
    --border:       rgba(43,27,114,0.1);
  }

  *, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'Outfit', sans-serif;
    background: var(--white);
    color: var(--text);
    overflow-x: hidden;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed; top:0; left:0; right:0; z-index:200;
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 56px;
    background: rgba(250,250,248,0.94);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s;
  }

  .logo {
    display: flex; align-items: center; gap: 11px;
    text-decoration: none;
  }

  .logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 16px; font-weight: 700;
    color: var(--purple);
    letter-spacing: 0.01em;
    line-height: 1.15;
  }

  .logo-name span { color: var(--gold); }

  .logo-powered {
    font-family: 'Outfit', sans-serif;
    font-size: 9.5px; font-weight: 400;
    color: var(--muted);
    letter-spacing: 0.04em;
    line-height: 1.4;
    margin-top: 2px;
    border-left: 2px solid var(--border);
    padding-left: 8px;
  }

  .logo-powered strong {
    display: block;
    color: var(--purple);
    font-weight: 600;
    font-size: 10px;
  }

  /* Pipedrive calendar modal */
  .pipedrive-overlay {
    display: none;
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(24,21,36,0.7);
    backdrop-filter: blur(6px);
    align-items: center; justify-content: center;
  }

  .pipedrive-overlay.active { display: flex; }

  .pipedrive-modal {
    background: #fff;
    border-radius: 16px;
    width: min(780px, 95vw);
    height: min(680px, 90vh);
    overflow: hidden;
    position: relative;
    box-shadow: 0 32px 80px rgba(43,27,114,0.25);
    display: flex; flex-direction: column;
  }

  .pipedrive-modal-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
  }

  .pipedrive-modal-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px; font-weight: 700; color: var(--purple);
  }

  .pipedrive-modal-header p {
    font-size: 12px; color: var(--muted); margin-top: 2px;
  }

  .modal-close {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--off-white);
    border: none; cursor: pointer;
    font-size: 18px; color: var(--muted);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
  }

  .modal-close:hover { background: var(--purple); color: #fff; }

  .pipedrive-modal iframe {
    flex: 1; border: none; width: 100%;
  }

  /* Mission section */
  .mission-section {
    background: var(--purple);
    padding: 96px 56px;
    position: relative;
    overflow: hidden;
  }

  .mission-section::before {
    content: '';
    position: absolute;
    top: -120px; right: -120px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(201,168,76,0.08) 0%, transparent 70%);
    pointer-events: none;
  }

  .mission-section::after {
    content: '';
    position: absolute;
    bottom: -80px; left: 10%;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.03) 0%, transparent 70%);
    pointer-events: none;
  }

  .mission-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    position: relative; z-index: 1;
  }

  .mission-label {
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 12px;
  }

  .mission-inner h2 {
    color: #fff;
    font-size: clamp(32px, 3.5vw, 48px);
    margin-bottom: 24px;
  }

  .mission-inner h2 em { color: var(--gold-light); font-style: italic; }

  .mission-body {
    font-size: 17px; font-weight: 300;
    color: rgba(255,255,255,0.75);
    line-height: 1.85;
    margin-bottom: 16px;
  }

  .mission-body strong { color: #fff; font-weight: 500; }

  .mission-divider {
    width: 48px; height: 2px;
    background: var(--gold);
    margin: 32px auto;
    border-radius: 1px;
  }

  .mission-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin: 40px 0;
    text-align: left;
  }

  .mission-pillar {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 24px 22px;
    transition: background 0.2s;
  }

  .mission-pillar:hover { background: rgba(255,255,255,0.09); }

  .mission-pillar-icon { font-size: 24px; margin-bottom: 12px; display: block; }

  .mission-pillar h4 {
    font-family: 'Playfair Display', serif;
    font-size: 16px; font-weight: 700;
    color: #fff; margin-bottom: 8px;
  }

  .mission-pillar p {
    font-size: 13px; font-weight: 300;
    color: rgba(255,255,255,0.6);
    line-height: 1.65;
  }

  .mission-cta {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--gold);
    color: var(--purple);
    padding: 16px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px; font-weight: 600;
    transition: all 0.2s;
    margin-top: 8px;
  }

  .mission-cta:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.2);
  }

  /* Story paragraphs */
  .mission-story {
    text-align: left;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 36px 40px;
    margin: 28px 0;
  }

  .mission-story p {
    font-size: 17px; font-weight: 300;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 14px;
  }

  .mission-story p:last-child { margin-bottom: 0; }

  .mission-story strong { color: #fff; font-weight: 600; }
  .mission-story em { color: var(--gold-light); font-style: italic; }

  /* Who we help grid */
  .mission-who-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 20px 0 8px;
    text-align: left;
  }

  .mission-who-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 16px 18px;
    transition: background 0.2s;
  }

  .mission-who-item:hover { background: rgba(255,255,255,0.09); }

  .mission-who-icon {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 1px;
  }

  .mission-who-item div {
    display: flex; flex-direction: column; gap: 3px;
  }

  .mission-who-item strong {
    font-size: 14px; font-weight: 600;
    color: #fff;
  }

  .mission-who-item span {
    font-size: 12.5px; font-weight: 300;
    color: rgba(255,255,255,0.55);
    line-height: 1.5;
  }

  .nav-links {
    display: flex; align-items: center; gap: 32px;
    list-style: none;
  }

  .nav-links a {
    text-decoration: none;
    font-size: 14px; font-weight: 400;
    color: var(--muted);
    letter-spacing: 0.02em;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--purple); }

  .nav-cta {
    background: var(--purple);
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 7px;
    font-weight: 500 !important;
    transition: background 0.2s, transform 0.15s !important;
  }

  .nav-cta:hover {
    background: var(--purple-mid) !important;
    transform: translateY(-1px);
  }

  /* ─── HERO ─── */
  .hero {
    min-height: 92vh;
    padding: 150px 56px 80px;
    display: grid;
    grid-template-columns: 1fr 370px;
    gap: 56px;
    align-items: center;
    position: relative;
    overflow: hidden;
  }

  .hero-content {
    max-width: 660px;
    position: relative; z-index: 1;
    animation: riseIn 0.8s cubic-bezier(0.22,1,0.36,1) both;
  }

  /* ─── HERO RIGHT: CONTACT CARD ─── */
  .hero-contact-wrap {
    position: relative;
    z-index: 1;
    animation: riseIn 0.8s cubic-bezier(0.22,1,0.36,1) 0.2s both;
    align-self: center;
  }

  .contact-card-hero {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
      0 2px 4px rgba(43,27,114,0.04),
      0 20px 56px rgba(43,27,114,0.1);
  }

  .cc-top {
    background: var(--purple);
    padding: 26px 26px 22px;
    position: relative;
    overflow: hidden;
  }

  .cc-top::before {
    content: '';
    position: absolute;
    top: -50px; right: -50px;
    width: 180px; height: 180px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(201,168,76,0.18), transparent 70%);
    pointer-events: none;
  }

  .cc-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
  }

  .cc-status-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #4ade80;
    animation: ccPulse 2s ease infinite;
  }

  @keyframes ccPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.6); }
  }

  .cc-top h3 {
    font-family: 'Playfair Display', serif;
    font-size: 21px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
  }

  .cc-top h3 em {
    color: var(--gold-light);
    font-style: italic;
  }

  .cc-top > p {
    font-size: 12.5px;
    color: rgba(255,255,255,0.5);
    font-weight: 300;
    line-height: 1.55;
    position: relative;
    z-index: 1;
  }

  .cc-body {
    padding: 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .cc-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 14px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text);
    transition: all 0.2s;
    border: 1px solid transparent;
  }

  .cc-item:hover {
    background: var(--purple-light);
    border-color: rgba(43,27,114,0.08);
    transform: translateX(3px);
  }

  .cc-item-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
    transition: all 0.2s;
  }

  .cc-item-icon.phone { background: #ecfdf5; }
  .cc-item-icon.email { background: #eef2ff; }
  .cc-item-icon.insta { background: #fdf2f8; }
  .cc-item-icon.linkedin { background: #eff6ff; }

  .cc-item:hover .cc-item-icon { transform: scale(1.05); }

  .cc-item-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
  }

  .cc-item-label {
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
  }

  .cc-item-value {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .cc-item-arrow {
    margin-left: auto;
    font-size: 13px;
    color: var(--border);
    transition: all 0.2s;
    flex-shrink: 0;
  }

  .cc-item:hover .cc-item-arrow {
    color: var(--purple);
    transform: translateX(3px);
  }

  .cc-footer {
    padding: 14px 22px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--off-white);
  }

  .cc-footer span {
    font-size: 12px;
    color: var(--muted);
  }

  .cc-footer strong {
    color: var(--purple);
    font-weight: 600;
  }

  /* subtle geometric background */
  .hero::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 700px; height: 700px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(43,27,114,0.055) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 30%;
    width: 500px; height: 300px;
    background: radial-gradient(ellipse at center, rgba(201,168,76,0.04) 0%, transparent 70%);
    pointer-events: none;
  }

  /* dot grid */
  .dot-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(43,27,114,0.08) 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: radial-gradient(ellipse 80% 80% at 85% 20%, black 0%, transparent 80%);
    pointer-events: none;
  }

  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 9px;
    background: var(--purple-light);
    border: 1px solid rgba(43,27,114,0.15);
    color: var(--purple);
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 11.5px; font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    margin-bottom: 26px;
  }

  .hero-eyebrow::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
  }

  h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(42px, 4.8vw, 64px);
    font-weight: 700;
    line-height: 1.06;
    color: var(--text);
    margin-bottom: 22px;
    letter-spacing: -0.02em;
  }

  h1 em {
    font-style: italic;
    color: var(--purple);
  }

  .hero-sub {
    font-size: 17px; font-weight: 300;
    color: var(--muted);
    line-height: 1.75;
    max-width: 500px;
    margin-bottom: 36px;
  }

  .hero-actions {
    display: flex; gap: 14px; flex-wrap: wrap;
    margin-bottom: 52px;
  }

  .btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--purple);
    color: #fff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px; font-weight: 500;
    transition: all 0.2s;
    border: 2px solid transparent;
  }

  .btn-primary:hover {
    background: var(--purple-mid);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(43,27,114,0.22);
  }

  .btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent;
    color: var(--purple);
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px; font-weight: 500;
    font-family: 'Outfit', sans-serif;
    border: 2px solid var(--border);
    transition: all 0.2s;
    cursor: pointer;
  }

  .btn-outline:hover {
    border-color: var(--purple);
    background: var(--purple-light);
  }

  /* trust bar */
  .trust-bar {
    display: flex; align-items: center; gap: 28px;
    flex-wrap: wrap;
  }

  .trust-item {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; color: var(--muted);
  }

  .trust-icon {
    width: 28px; height: 28px;
    background: var(--purple-light);
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
  }

  .trust-divider {
    width: 1px; height: 20px;
    background: var(--border);
  }

  /* ─── HERO RIGHT: FORM CARD ─── */
  .hero-form-wrap {
    position: relative; z-index: 1;
    animation: riseIn 0.8s cubic-bezier(0.22,1,0.36,1) 0.2s both;
  }

  .form-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 36px 32px;
    box-shadow:
      0 2px 4px rgba(43,27,114,0.04),
      0 20px 60px rgba(43,27,114,0.09);
  }

  .form-card-header {
    margin-bottom: 24px;
  }

  .form-card-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 22px; font-weight: 700;
    color: var(--text);
    margin-bottom: 5px;
  }

  .form-card-header p {
    font-size: 13px; color: var(--muted);
  }

  .form-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
    margin-bottom: 12px;
  }

  .form-group { margin-bottom: 12px; }

  .form-group label {
    display: block;
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.07em; text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 12px 14px;
    background: var(--off-white);
    border: 1.5px solid transparent;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px; font-weight: 400;
    color: var(--text);
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    appearance: none;
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--purple);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(43,27,114,0.07);
  }

  .form-group textarea { resize: vertical; min-height: 80px; }

  .form-submit {
    width: 100%;
    padding: 15px;
    background: var(--purple);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px; font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 4px;
  }

  .form-submit:hover {
    background: var(--purple-mid);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(43,27,114,0.2);
  }

  .form-disclaimer {
    text-align: center;
    font-size: 11px; color: var(--muted);
    margin-top: 12px;
    line-height: 1.5;
  }

  /* ─── DLCG BANNER ─── */
  .dlcg-banner {
    background: var(--purple);
    padding: 22px 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
  }

  .dlcg-item {
    display: flex; align-items: center; gap: 12px;
    color: rgba(255,255,255,0.85);
    font-size: 14px;
  }

  .dlcg-item strong {
    color: var(--gold-light);
    font-weight: 600;
  }

  .dlcg-sep {
    width: 1px; height: 24px;
    background: rgba(255,255,255,0.15);
  }

  /* ─── SECTION SHELL ─── */
  .section { padding: 96px 56px; }
  .section-alt { background: var(--off-white); }

  .section-label {
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
  }

  h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 700; line-height: 1.15;
    color: var(--text);
    margin-bottom: 16px;
  }

  h2 em { font-style: italic; color: var(--purple); }

  .section-sub {
    font-size: 16px; font-weight: 300;
    color: var(--muted); line-height: 1.75;
    max-width: 520px;
  }

  .section-head { margin-bottom: 52px; }

  /* ─── WHO WE HELP ─── */
  .client-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
  }

  .client-card {
    background: #fff;
    padding: 36px 28px;
    position: relative; overflow: hidden;
    transition: all 0.25s;
    cursor: default;
  }

  .client-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--purple), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
  }

  .client-card:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(43,27,114,0.09); }
  .client-card:hover::after { transform: scaleX(1); }

  .client-icon {
    font-size: 30px; margin-bottom: 18px;
    display: block;
  }

  .client-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px; font-weight: 700;
    color: var(--text); margin-bottom: 10px;
  }

  .client-card p {
    font-size: 14px; font-weight: 300;
    color: var(--muted); line-height: 1.7;
  }

  /* ─── HOW IT WORKS ─── */
  .steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    margin-top: 52px;
  }

  .steps::before {
    content: '';
    position: absolute;
    top: 28px; left: 10%; right: 10%;
    height: 1px;
    background: var(--border);
    z-index: 0;
  }

  .step {
    padding: 0 20px;
    text-align: center;
    position: relative; z-index: 1;
  }

  .step-num {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--purple);
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 22px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    box-shadow: 0 0 0 6px var(--off-white);
  }

  .step h3 {
    font-family: 'Playfair Display', serif;
    font-size: 17px; font-weight: 700;
    color: var(--text); margin-bottom: 10px;
  }

  .step p {
    font-size: 13.5px; font-weight: 300;
    color: var(--muted); line-height: 1.65;
  }

  /* ─── TESTIMONIALS ─── */
  /* ─── RATING SUMMARY ─── */

  .google-link-wrap {
    display: flex; justify-content: center;
    margin-top: 36px;
  }

  .google-link {
    display: inline-flex; align-items: center; gap: 9px;
    text-decoration: none;
    color: var(--purple);
    font-size: 14px; font-weight: 500;
    border: 1.5px solid var(--border);
    padding: 11px 22px;
    border-radius: 8px;
    transition: all 0.2s;
  }

  .google-link:hover {
    border-color: var(--purple);
    background: var(--purple-light);
  }

  /* Google "G" icon */
  .g-icon {
    width: 18px; height: 18px;
    background: linear-gradient(135deg, #4285F4 25%, #34A853 25% 50%, #FBBC05 50% 75%, #EA4335 75%);
    border-radius: 50%;
    flex-shrink: 0;
  }

  /* ─── CONTACT STRIP ─── */
  .contact-strip {
    background: var(--purple);
    padding: 72px 56px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
  }

  .contact-left h2 {
    color: #fff; margin-bottom: 12px;
  }

  .contact-left h2 em { color: var(--gold-light); }

  .contact-left p {
    color: rgba(255,255,255,0.6);
    font-size: 15px; font-weight: 300;
    line-height: 1.7;
    margin-bottom: 32px;
  }

  .contact-methods {
    display: flex; flex-direction: column; gap: 14px;
  }

  .contact-method {
    display: flex; align-items: center; gap: 13px;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
  }

  .contact-method:hover { color: var(--gold-light); }

  .contact-method-icon {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 15px; flex-shrink: 0;
    transition: background 0.2s;
  }

  .contact-method:hover .contact-method-icon {
    background: rgba(201,168,76,0.2);
  }

  .contact-right {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 32px;
  }

  .contact-right h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px; font-weight: 700;
    color: #fff; margin-bottom: 6px;
  }

  .contact-right > p {
    font-size: 13px; color: rgba(255,255,255,0.5);
    margin-bottom: 22px;
  }

  .contact-right .form-group label { color: rgba(255,255,255,0.4); }

  .contact-right .form-group input,
  .contact-right .form-group select,
  .contact-right .form-group textarea {
    background: rgba(255,255,255,0.07);
    color: #fff;
    border-color: rgba(255,255,255,0.1);
  }

  .contact-right .form-group input::placeholder { color: rgba(255,255,255,0.3); }

  .contact-right .form-group input:focus,
  .contact-right .form-group select:focus,
  .contact-right .form-group textarea:focus {
    border-color: var(--gold);
    background: rgba(255,255,255,0.1);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
  }

  .contact-right .form-group select option { background: var(--purple); color: #fff; }

  .btn-gold {
    width: 100%;
    padding: 14px;
    background: var(--gold);
    color: var(--purple);
    border: none;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px; font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
  }

  .btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
  }

  /* ─── FOOTER ─── */
  footer {
    background: #120D3A;
    padding: 52px 56px 28px;
    color: rgba(255,255,255,0.55);
  }

  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 44px;
    padding-bottom: 44px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }

  .footer-brand .logo-name { font-size: 17px; }

  .footer-desc {
    font-size: 13.5px; font-weight: 300;
    line-height: 1.7;
    margin-top: 14px;
    color: rgba(255,255,255,0.4);
    max-width: 260px;
  }

  .footer-col h4 {
    font-size: 10.5px; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: 14px;
  }

  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }

  .footer-col ul a {
    text-decoration: none;
    color: rgba(255,255,255,0.5);
    font-size: 13.5px; font-weight: 300;
    transition: color 0.2s;
  }

  .footer-col ul a:hover { color: var(--gold-light); }

  .footer-social {
    display: flex; gap: 10px; margin-top: 18px;
  }

  .social-btn {
    width: 34px; height: 34px;
    background: rgba(255,255,255,0.07);
    border-radius: 7px;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
    font-size: 15px;
    transition: background 0.2s;
  }

  .social-btn:hover { background: rgba(201,168,76,0.2); }

  .footer-bottom {
    display: flex; align-items: center; justify-content: space-between;
    font-size: 12px; flex-wrap: wrap; gap: 10px;
  }

  .license-tag {
    display: flex; align-items: center; gap: 7px;
    color: rgba(255,255,255,0.3);
  }

  .license-dot {
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--gold);
  }

  /* ─── REVEAL ─── */
  .reveal {
    opacity: 0; transform: translateY(22px);
    transition: opacity 0.65s ease, transform 0.65s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }

  /* ─── ANIMATIONS ─── */
  @keyframes riseIn {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* ─── SUCCESS STATE ─── */
  .form-success {
    display: none;
    text-align: center;
    padding: 24px 0;
  }

  .form-success-icon { font-size: 40px; margin-bottom: 12px; }
  .form-success h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px; color: var(--purple);
    margin-bottom: 8px;
  }
  .form-success p { font-size: 14px; color: var(--muted); }

  /* ─── RATING SUMMARY ─── */
  .rating-summary {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
  }

  .rating-score {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 700;
    color: var(--purple);
    line-height: 1;
  }

  .rating-stars-big {
    color: var(--gold);
    font-size: 22px;
    letter-spacing: 3px;
    margin-bottom: 4px;
  }

  .rating-count {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 10px;
  }

  .google-link-inline {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    text-decoration: none;
    color: var(--purple);
    font-size: 13px;
    font-weight: 500;
    border: 1.5px solid var(--border);
    padding: 6px 14px;
    border-radius: 6px;
    transition: all 0.2s;
  }

  .google-link-inline:hover {
    border-color: var(--purple);
    background: var(--purple-light);
  }

  /* ─── CAROUSEL ─── */
  .carousel-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
  }

  .carousel-fade-left,
  .carousel-fade-right {
    position: absolute;
    top: 0; bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
  }

  .carousel-fade-left {
    left: 0;
    background: linear-gradient(to right, var(--off-white) 0%, transparent 100%);
  }

  .carousel-fade-right {
    right: 0;
    background: linear-gradient(to left, var(--off-white) 0%, transparent 100%);
  }

  .carousel-track {
    overflow: hidden;
    width: 100%;
  }

  .carousel-inner {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: scrollLeft 50s linear infinite;
  }

  .carousel-inner.reverse {
    animation: scrollRight 55s linear infinite;
  }

  .carousel-inner:hover,
  .carousel-inner.reverse:hover {
    animation-play-state: paused;
  }

  @keyframes scrollLeft {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  @keyframes scrollRight {
    0%   { transform: translateX(-50%); }
    100% { transform: translateX(0); }
  }

  /* ─── REVIEW CARD ─── */
  .review-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px 26px;
    width: 340px;
    flex-shrink: 0;
    position: relative;
    transition: box-shadow 0.2s, transform 0.2s;
    cursor: default;
  }

  .review-card:hover {
    box-shadow: 0 12px 36px rgba(43,27,114,0.1);
    transform: translateY(-2px);
  }

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

  .review-avatar {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--purple);
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 16px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }

  .review-meta { flex: 1; }
  .review-name { font-size: 14px; font-weight: 500; color: var(--text); }
  .review-date { font-size: 11.5px; color: var(--muted); margin-top: 1px; }

  .review-stars {
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
  }

  .review-text {
    font-size: 13.5px;
    font-weight: 300;
    color: var(--text);
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* ─── MOBILE ─── */
  
  /* ─── HAMBURGER ─── */
  .hamburger {
    display: none;
    flex-direction: column; justify-content: center; gap: 5px;
    width: 36px; height: 36px;
    background: none; border: none; cursor: pointer; padding: 4px; flex-shrink: 0;
  }
  .hamburger span {
    display: block; width: 22px; height: 2px;
    background: var(--purple); border-radius: 2px;
    transition: all 0.25s;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mobile-menu {
    display: none; position: fixed; top:0; left:0; right:0; bottom:0;
    background: var(--white); z-index: 210;
    flex-direction: column; padding: 100px 32px 40px; overflow-y: auto;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    display: block; font-family: 'Playfair Display', serif;
    font-size: 28px; font-weight: 700; color: var(--text);
    text-decoration: none; padding: 14px 0;
    border-bottom: 1px solid var(--border); transition: color 0.2s;
  }
  .mobile-menu a:hover, .mobile-menu a.active { color: var(--purple); }
  .mobile-menu-cta {
    margin-top: 32px; background: var(--purple) !important;
    color: #fff !important; text-align: center;
    padding: 18px 32px !important; border-radius: 10px;
    font-family: 'Outfit', sans-serif !important;
    font-size: 16px !important; font-weight: 600 !important;
    border-bottom: none !important;
  }

  @media (max-width: 960px) {
    .hamburger { display: flex; flex-shrink: 0; }
    .logo-powered { display: none; }
    nav { padding: 14px 24px; }
    .nav-links { display: none !important; }
    .hero::before, .dot-grid { display: none; }
    .section { padding: 64px 24px; }
    .client-grid { grid-template-columns: 1fr 1fr; }
    .steps { grid-template-columns: 1fr 1fr; gap: 32px; }
    .steps::before { display: none; }
    .contact-strip { grid-template-columns: 1fr; padding: 52px 24px; }
    .mission-pillars { grid-template-columns: 1fr; }
    .mission-section { padding: 64px 24px; }
    .mission-who-grid { grid-template-columns: 1fr; }
    .mission-story { padding: 24px; }
    .hero { padding: 120px 24px 70px; grid-template-columns: 1fr; gap: 36px; min-height: auto; }
    .hero-contact-wrap { max-width: 420px; }
    .cc-item { padding: 11px 12px; gap: 11px; }
    .cc-item-icon { width: 36px; height: 36px; font-size: 15px; }
    .cc-item-value { font-size: 13px; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .dlcg-banner { padding: 20px 24px; gap: 20px; }
    footer { padding: 40px 24px 24px; }
    .form-row { grid-template-columns: 1fr; }
  }

/* ── ABOUT PAGE STYLES ── */
  :root {
    --white:        #FAFAF8;
    --off-white:    #F4F3F0;
    --purple:       #2B1B72;
    --purple-mid:   #3B2A8A;
    --purple-light: #EEE9FF;
    --gold:         #C9A84C;
    --gold-light:   #E8CB7A;
    --text:         #181524;
    --muted:        #6B6785;
    --border:       rgba(43,27,114,0.1);
  }
  /* ─── NAV ─── */
  .nav-links a.active { color: var(--purple); font-weight: 500; }
  /* ─── PAGE HERO ─── */
  .page-hero { background: var(--purple); padding: 160px 56px 100px; position: relative; overflow: hidden; }
  .page-hero::before { content: ''; position: absolute; top: -150px; right: -100px; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(ellipse, rgba(201,168,76,0.08) 0%, transparent 70%); pointer-events: none; }
  .page-hero-inner { max-width: 700px; position: relative; z-index: 1; }
  .page-label { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 14px; animation: riseIn 0.6s ease both; }
  .page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(38px, 5vw, 62px); font-weight: 700; line-height: 1.08; color: #fff; margin-bottom: 22px; letter-spacing: -0.02em; animation: riseIn 0.7s ease both 0.1s; }
  .page-hero h1 em { font-style: italic; color: var(--gold-light); }
  .page-hero-sub { font-size: 17px; font-weight: 300; color: rgba(255,255,255,0.65); line-height: 1.75; max-width: 580px; animation: riseIn 0.7s ease both 0.2s; }
  /* ─── STAT BAR ─── */
  .stat-bar { display: flex; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 14px; overflow: hidden; margin-top: 52px; animation: riseIn 0.7s ease both 0.3s; }
  .stat-item { flex: 1; padding: 28px 24px; text-align: center; border-right: 1px solid rgba(255,255,255,0.08); }
  .stat-item:last-child { border-right: none; }
  .stat-num { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; color: var(--gold-light); line-height: 1; margin-bottom: 6px; }
  .stat-label { font-size: 12px; color: rgba(255,255,255,0.45); font-weight: 300; line-height: 1.4; }
  /* ─── SECTIONS ─── */
  .section-dark { background: var(--purple); }
  /* ─── WHY WE STARTED ─── */
  .origin-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-top: 16px; }
  .origin-body p { font-size: 16px; font-weight: 300; color: var(--muted); line-height: 1.85; margin-bottom: 20px; }
  .origin-body p:last-child { margin-bottom: 0; }
  .origin-body p strong { color: var(--text); font-weight: 500; }
  .origin-body p em { color: var(--purple); font-style: italic; }
  .origin-callout { background: var(--purple); border-radius: 16px; padding: 44px 40px; position: relative; overflow: hidden; }
  .origin-callout::before { content: '\201C'; font-family: 'Playfair Display', serif; font-size: 140px; line-height: 1; color: rgba(255,255,255,0.06); position: absolute; top: -10px; left: 16px; pointer-events: none; }
  .origin-callout blockquote { font-family: 'Playfair Display', serif; font-size: 21px; font-weight: 400; font-style: italic; color: #fff; line-height: 1.65; margin-bottom: 24px; position: relative; z-index: 1; }
  .origin-callout blockquote em { color: var(--gold-light); }
  .origin-callout cite { font-size: 13px; color: rgba(255,255,255,0.4); font-style: normal; letter-spacing: 0.04em; }
  .origin-callout cite strong { color: rgba(255,255,255,0.7); }
  .gold-rule { width: 40px; height: 2px; background: var(--gold); border-radius: 1px; margin-bottom: 20px; }
  /* ─── WHAT MAKES US DIFFERENT ─── */
  .diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 52px; }
  .diff-card { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 34px 28px; position: relative; overflow: hidden; transition: all 0.25s; }
  .diff-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--purple), var(--gold)); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
  .diff-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(43,27,114,0.08); }
  .diff-card:hover::after { transform: scaleX(1); }
  .diff-num { font-family: 'Playfair Display', serif; font-size: 48px; font-weight: 700; color: var(--purple-light); line-height: 1; margin-bottom: 16px; }
  .diff-card h3 { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
  .diff-card p { font-size: 14px; font-weight: 300; color: var(--muted); line-height: 1.7; }
  /* ─── WHO WE SERVE ─── */
  .serve-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 52px; }
  .serve-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 26px 22px; display: flex; align-items: flex-start; gap: 14px; transition: background 0.2s; }
  .serve-card:hover { background: rgba(255,255,255,0.09); }
  .serve-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
  .serve-card h4 { font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 4px; }
  .serve-card p { font-size: 12.5px; font-weight: 300; color: rgba(255,255,255,0.5); line-height: 1.55; }
  /* ─── CREDENTIALS ─── */
  .creds-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 52px; }
  .cred-card { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 30px 24px; text-align: center; transition: all 0.2s; }
  .cred-card:hover { box-shadow: 0 8px 28px rgba(43,27,114,0.08); transform: translateY(-2px); }
  .cred-icon { font-size: 30px; margin-bottom: 14px; display: block; }
  .cred-card h4 { font-family: 'Playfair Display', serif; font-size: 15px; font-weight: 700; color: var(--purple); margin-bottom: 6px; line-height: 1.3; }
  .cred-card p { font-size: 12.5px; font-weight: 300; color: var(--muted); line-height: 1.6; }
  /* ─── PROMISE ─── */
  .promise-wrap { max-width: 780px; margin: 0 auto; text-align: center; }
  .promise-quote { font-family: 'Playfair Display', serif; font-size: clamp(20px, 2.5vw, 28px); font-weight: 400; font-style: italic; color: #fff; line-height: 1.65; margin-bottom: 28px; position: relative; }
  .promise-quote::before { content: '\201C'; font-size: 110px; color: rgba(201,168,76,0.12); position: absolute; top: -24px; left: -10px; font-family: 'Playfair Display', serif; line-height: 1; pointer-events: none; }
  .promise-attr { font-size: 13px; color: rgba(255,255,255,0.35); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 44px; }
  .promise-attr strong { color: var(--gold-light); font-weight: 600; }
  .promise-divider { width: 48px; height: 2px; background: var(--gold); margin: 0 auto 44px; border-radius: 1px; }
  /* ─── CTA ─── */
  .cta-strip { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
  .cta-strip-text h3 { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; color: #fff; margin-bottom: 6px; }
  .cta-strip-text p { font-size: 15px; color: rgba(255,255,255,0.5); }
  .btn-outline-white { display: inline-flex; align-items: center; gap: 9px; background: transparent; color: #fff; padding: 15px 32px; border-radius: 8px; text-decoration: none; font-size: 15px; font-weight: 500; border: 2px solid rgba(255,255,255,0.2); white-space: nowrap; transition: all 0.2s; flex-shrink: 0; }
  .btn-outline-white:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.06); }
  /* ─── FOOTER ─── */
  /* ─── PIPEDRIVE MODAL ─── */
  /* ─── REVEAL ─── */
  /* ─── MOBILE ─── */
  @media (max-width: 960px) {
    nav { padding: 14px 24px; }
    nav ul { display: none; }
    .section { padding: 60px 24px; }
    .page-hero { padding: 120px 24px 64px; }
    .origin-grid { grid-template-columns: 1fr; gap: 40px; }
    .diff-grid { grid-template-columns: 1fr; }
    .serve-grid { grid-template-columns: 1fr 1fr; }
    .creds-grid { grid-template-columns: 1fr 1fr; }
    .cta-strip { flex-direction: column; text-align: center; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    footer { padding: 40px 24px 24px; }
    .stat-bar { flex-wrap: wrap; }
    .stat-item { min-width: 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  }

/* ── SERVICES PAGE STYLES ── */
  :root {
    --white:        #FAFAF8;
    --off-white:    #F4F3F0;
    --purple:       #2B1B72;
    --purple-mid:   #3B2A8A;
    --purple-light: #EEE9FF;
    --gold:         #C9A84C;
    --gold-light:   #E8CB7A;
    --text:         #181524;
    --muted:        #6B6785;
    --border:       rgba(43,27,114,0.1);
  }
  /* ─── NAV ─── */
  .nav-links a.active { color: var(--purple); font-weight: 500; }
  /* ─── PAGE HERO ─── */
  .page-hero {
    background: var(--purple); padding: 160px 56px 100px;
    position: relative; overflow: hidden;
  }
  .page-hero::before { content: ''; position: absolute; top: -150px; right: -100px; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(ellipse, rgba(201,168,76,0.08) 0%, transparent 70%); pointer-events: none; }
  .page-hero-inner { max-width: 700px; position: relative; z-index: 1; }
  .page-label { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 14px; animation: riseIn 0.6s ease both; }
  .page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(38px, 5vw, 62px); font-weight: 700; line-height: 1.08; color: #fff; margin-bottom: 22px; letter-spacing: -0.02em; animation: riseIn 0.7s ease both 0.1s; }
  .page-hero h1 em { font-style: italic; color: var(--gold-light); }
  .page-hero-sub { font-size: 17px; font-weight: 300; color: rgba(255,255,255,0.65); line-height: 1.75; max-width: 560px; animation: riseIn 0.7s ease both 0.2s; }
  /* ─── SERVICE NAV PILLS ─── */
  .service-nav {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 0 56px;
    position: sticky; top: 72px; z-index: 100;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .service-nav::-webkit-scrollbar { display: none; }
  .service-nav-inner {
    display: flex; gap: 0;
    white-space: nowrap;
    min-width: max-content;
  }
  .service-pill {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 16px 20px;
    font-size: 13px; font-weight: 400;
    font-family: 'Outfit', sans-serif;
    color: var(--muted);
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
  }
  .service-pill:hover { color: var(--purple); border-bottom-color: var(--purple-light); }
  .service-pill.active { color: var(--purple); font-weight: 500; border-bottom-color: var(--purple); }
  .service-pill-icon { font-size: 15px; }
  /* ─── SERVICE SECTIONS ─── */
  .service-section {
    padding: 96px 56px;
    scroll-margin-top: 0;
  }
  .service-section:nth-child(even) { background: var(--off-white); }
  .service-inner {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 72px;
    align-items: start;
  }
  .service-inner.flip { grid-template-columns: 420px 1fr; }
  .service-inner.flip .service-body { order: 2; }
  .service-inner.flip .service-sidebar { order: 1; }
  /* ─── SERVICE BODY ─── */
  .service-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--purple-light);
    color: var(--purple);
    font-size: 12px; font-weight: 600;
    letter-spacing: 0.06em; text-transform: uppercase;
    padding: 6px 14px; border-radius: 20px;
    margin-bottom: 16px;
  }
  .service-body h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 700; line-height: 1.15;
    color: var(--text); margin-bottom: 16px;
  }
  .service-body h2 em { font-style: italic; color: var(--purple); }
  .service-intro {
    font-size: 16px; font-weight: 300;
    color: var(--muted); line-height: 1.85;
    margin-bottom: 28px;
  }
  .service-intro strong { color: var(--text); font-weight: 500; }
  /* Benefits list */
  .service-benefits { list-style: none; margin-bottom: 32px; display: flex; flex-direction: column; gap: 12px; }
  .service-benefits li {
    display: flex; align-items: flex-start; gap: 12px;
    font-size: 15px; font-weight: 300; color: var(--muted); line-height: 1.6;
  }
  .service-benefits li::before {
    content: '';
    width: 18px; height: 18px; border-radius: 50%;
    background: var(--purple-light);
    border: 2px solid var(--purple);
    flex-shrink: 0; margin-top: 2px;
    display: flex; align-items: center; justify-content: center;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='%232B1B72' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: center;
  }
  .service-benefits li strong { color: var(--text); font-weight: 500; }
  /* Steps */
  .service-steps { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
  .service-step {
    display: flex; gap: 16px; align-items: flex-start;
  }
  .step-content h4 { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 3px; }
  .step-content p { font-size: 13.5px; font-weight: 300; color: var(--muted); line-height: 1.6; }
  .service-cta-btn {
    display: inline-flex; align-items: center; gap: 9px;
    background: var(--purple); color: #fff;
    padding: 14px 28px; border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px; font-weight: 500;
    border: none; cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
  }
  .service-cta-btn:hover { background: var(--purple-mid); transform: translateY(-1px); }
  /* ─── SERVICE SIDEBAR ─── */
  .service-sidebar {
    background: var(--purple);
    border-radius: 16px;
    padding: 36px 32px;
    position: sticky; top: 150px;
  }
  .sidebar-icon { font-size: 36px; margin-bottom: 18px; display: block; }
  .sidebar-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px; font-weight: 700;
    color: #fff; margin-bottom: 10px; line-height: 1.3;
  }
  .sidebar-desc {
    font-size: 14px; font-weight: 300;
    color: rgba(255,255,255,0.6); line-height: 1.7;
    margin-bottom: 24px;
  }
  .sidebar-stats { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
  .sidebar-stat {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
  }
  .sidebar-stat-icon { font-size: 20px; flex-shrink: 0; }
  .sidebar-stat-text { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.7); line-height: 1.5; }
  .sidebar-stat-text strong { color: #fff; font-weight: 600; display: block; }
  .sidebar-btn {
    display: flex; align-items: center; justify-content: center; gap: 9px;
    width: 100%;
    background: var(--gold); color: var(--purple);
    padding: 15px; border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px; font-weight: 600;
    border: none; cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
  }
  .sidebar-btn:hover { background: var(--gold-light); transform: translateY(-1px); }
  /* ─── CTA SECTION ─── */
  .cta-section {
    background: var(--purple); padding: 80px 56px;
    text-align: center;
  }
  .cta-section h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px,3vw,42px); font-weight: 700; color: #fff; margin-bottom: 14px; }
  .cta-section h2 em { font-style: italic; color: var(--gold-light); }
  .cta-section p { font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.6); margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto; line-height: 1.75; }
  .cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
  .btn-outline-white { display: inline-flex; align-items: center; gap: 9px; background: transparent; color: #fff; padding: 15px 32px; border-radius: 8px; text-decoration: none; font-size: 15px; font-weight: 500; border: 2px solid rgba(255,255,255,0.2); transition: all 0.2s; }
  .btn-outline-white:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.06); }
  /* ─── FOOTER ─── */
  /* ─── PIPEDRIVE MODAL ─── */
  /* ─── REVEAL ─── */
  /* ─── MOBILE ─── */
  /* ─── HAMBURGER ─── */
  .mobile-menu a:hover { color: var(--purple); }
  .mobile-menu a.active { color: var(--purple); }
  @media (max-width: 960px) {
    nav { padding: 14px 20px; }
    .nav-links { display: none !important; }
    .logo-powered { display: none; }
    .hamburger { display: flex; }
    .page-hero { padding: 110px 20px 56px; }
    .service-nav { padding: 0 16px; top: 61px; }
    .service-pill { padding: 13px 14px; font-size: 12px; gap: 5px; }
    .service-pill-icon { font-size: 13px; }
    .service-section { padding: 52px 20px; }
    .service-inner, .service-inner.flip { grid-template-columns: 1fr; gap: 36px; }
    .service-inner.flip .service-body { order: 1; }
    .service-inner.flip .service-sidebar { order: 2; }
    .service-sidebar { position: static; }
    .service-tag { font-size: 11px; padding: 5px 12px; }
    .service-intro { font-size: 15px; }
    .service-benefits li { font-size: 14px; }
    .step-content h4 { font-size: 13px; }
    .step-content p { font-size: 13px; }
    .sidebar-title { font-size: 18px; }
    .sidebar-desc { font-size: 13px; }
    .cta-section { padding: 56px 20px; }
    .cta-btns { flex-direction: column; align-items: center; }
    .btn-gold, .btn-outline-white { width: 100%; justify-content: center; }
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    footer { padding: 40px 20px 24px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  }
  @media (max-width: 480px) {
    .logo-name { font-size: 14px; }
    .logo-powered { font-size: 8.5px; }
    .page-hero h1 { font-size: 32px; }
    .page-hero-sub { font-size: 15px; }
    .service-body h2 { font-size: 24px; }
  }

/* ── CONTACT PAGE STYLES ── */
  :root {
    --white:        #FAFAF8;
    --off-white:    #F4F3F0;
    --purple:       #2B1B72;
    --purple-mid:   #3B2A8A;
    --purple-light: #EEE9FF;
    --purple-line:  rgba(43,27,114,0.12);
    --gold:         #C9A84C;
    --gold-light:   #E8CB7A;
    --text:         #181524;
    --muted:        #6B6785;
    --border:       rgba(43,27,114,0.1);
  }
  /* ─── NAV ─── */
  .nav-links a.active { color: var(--purple); font-weight: 600; }
  /* ─── HAMBURGER (hidden on desktop) ─── */
  /* ─── MOBILE OVERLAY MENU ─── */
  /* ─── MOBILE MEDIA QUERY ─── */
  @media (max-width: 960px) {
    nav { padding: 14px 20px; }
    .nav-links { display: none !important; }
    .logo-powered { display: none; }
    .hamburger { display: flex; }
    .page-hero { padding: 120px 24px 60px; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-methods { grid-template-columns: 1fr; }
    .contact-wrap { padding: 60px 24px; }
    footer { padding: 40px 24px 24px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  }
  @media (max-width: 480px) {
    .footer-top { grid-template-columns: 1fr; }
    .page-hero h1 { font-size: 36px; }
  }
  /* ─── PAGE HERO ─── */
  .page-hero {
    padding: 160px 56px 80px;
    background: linear-gradient(135deg, var(--purple) 0%, #1a0f55 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
  }
  .page-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(201,168,76,0.15), transparent);
    pointer-events: none;
  }
  .page-hero-label {
    display: inline-block;
    font-size: 11px; font-weight: 600; letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(201,168,76,0.12);
    border: 1px solid rgba(201,168,76,0.3);
    padding: 6px 16px; border-radius: 20px;
    margin-bottom: 24px;
  }
  .page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 52px; font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
  }
  .page-hero h1 em {
    color: var(--gold);
    font-style: italic;
  }
  .page-hero p {
    font-size: 18px; color: rgba(255,255,255,0.75);
    max-width: 560px; margin: 0 auto;
    line-height: 1.7;
  }
  /* ─── MAIN CONTENT ─── */
  .contact-wrap {
    max-width: 1160px;
    margin: 0 auto;
    padding: 80px 56px;
  }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    align-items: start;
    max-width: 700px;
  }
  /* ─── LEFT: CONTACT INFO ─── */
  .contact-info-col {}
  .contact-info-col h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px; font-weight: 700;
    color: var(--text);
    margin-bottom: 14px;
  }
  .contact-info-col > p {
    font-size: 16px; color: var(--muted);
    line-height: 1.7;
    margin-bottom: 40px;
  }
  .method-icon {
    width: 40px; height: 40px; flex-shrink: 0;
    background: var(--purple-light);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
  }
  .method-text {}
  .method-label {
    font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--muted);
    margin-bottom: 4px;
  }
  .method-value {
    font-size: 14px; font-weight: 500; color: var(--text);
    line-height: 1.4;
  }
  /* Book consultation CTA */
  .consult-cta {
    display: flex; align-items: center; gap: 16px;
    background: linear-gradient(135deg, var(--purple), var(--purple-mid));
    border-radius: 14px;
    padding: 24px 28px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    width: 100%;
    text-align: left;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .consult-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(43,27,114,0.25);
  }
  .consult-icon {
    width: 48px; height: 48px; flex-shrink: 0;
    background: rgba(255,255,255,0.15);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
  }
  .consult-text {}
  .consult-title {
    font-size: 16px; font-weight: 600; color: #fff;
    margin-bottom: 4px;
  }
  .consult-sub {
    font-size: 13px; color: rgba(255,255,255,0.7);
  }
  .consult-arrow {
    margin-left: auto;
    color: rgba(255,255,255,0.5);
    font-size: 20px;
  }
  /* ─── SOCIAL LINKS ─── */
  .social-row {
    display: flex; align-items: center; gap: 12px;
    margin-top: 16px;
  }
  .social-row-label {
    font-size: 13px; color: var(--muted); font-weight: 500;
  }
  .social-link {
    display: flex; align-items: center; gap: 8px;
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    text-decoration: none;
    font-size: 13px; font-weight: 500; color: var(--text);
    transition: border-color 0.2s, color 0.2s;
  }
  .social-link:hover { border-color: var(--purple); color: var(--purple); }
  /* ─── RIGHT: CONTACT FORM ─── */
  .contact-form-col {}
  .form-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 24px; font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
  }
  .form-card > p {
    font-size: 14px; color: var(--muted);
    margin-bottom: 28px;
  }
  .form-group input,
  .form-group select,
  .form-group input:focus,
  .form-group select:focus,
  /* ─── MAP / LOCATION STRIP ─── */
  .location-strip {
    background: var(--off-white);
    padding: 64px 56px;
    text-align: center;
  }
  .location-strip h2 {
    font-family: 'Playfair Display', serif;
    font-size: 30px; font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
  }
  .location-strip p {
    font-size: 16px; color: var(--muted);
    margin-bottom: 32px;
  }
  .location-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
  }
  .location-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px 32px;
    min-width: 220px;
    flex: 1;
    max-width: 260px;
  }
  .location-card-icon { font-size: 28px; margin-bottom: 12px; }
  .location-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 16px; font-weight: 700;
    color: var(--text); margin-bottom: 6px;
  }
  .location-card p {
    font-size: 14px; color: var(--muted);
    line-height: 1.6; margin-bottom: 0;
  }
  /* ─── PIPEDRIVE CALENDAR MODAL ─── */
  #pipedriveFrame {
    border: none; width: 100%;
    height: 560px;
  }
  /* ─── FOOTER ─── */
  .footer-brand {}
  .footer-col ul li { margin-bottom: 10px; }
  .footer-col ul li a {
    font-size: 13px; color: rgba(255,255,255,0.55);
    text-decoration: none; transition: color 0.2s;
  }
  .footer-col ul li a:hover { color: #fff; }
  /* ─── REVEAL ANIMATION ─── */

/* ── BLOG PAGE STYLES ── */
  :root {
    --white:        #FAFAF8;
    --off-white:    #F4F3F0;
    --purple:       #2B1B72;
    --purple-mid:   #3B2A8A;
    --purple-light: #EEE9FF;
    --purple-line:  rgba(43,27,114,0.12);
    --gold:         #C9A84C;
    --gold-light:   #E8CB7A;
    --text:         #181524;
    --muted:        #6B6785;
    --border:       rgba(43,27,114,0.1);
  }
  /* ─── NAV ─── */
  .nav-links a.active { color: var(--purple); font-weight: 600; }
  /* ─── HAMBURGER ─── */
  /* ─── MOBILE MENU ─── */
  /* ─── PAGE HERO ─── */
  .page-hero {
    padding: 160px 56px 80px;
    background: linear-gradient(135deg, var(--purple) 0%, #1a0f55 100%);
    position: relative; overflow: hidden; text-align: center;
  }
  .page-hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(201,168,76,0.15), transparent);
    pointer-events: none;
  }
  .page-hero-label {
    display: inline-block;
    font-size: 11px; font-weight: 600; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--gold);
    background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.3);
    padding: 6px 16px; border-radius: 20px; margin-bottom: 24px;
  }
  .page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 52px; font-weight: 700; color: #fff;
    line-height: 1.15; margin-bottom: 20px;
  }
  .page-hero h1 em { color: var(--gold); font-style: italic; }
  .page-hero p {
    font-size: 18px; color: rgba(255,255,255,0.75);
    max-width: 580px; margin: 0 auto; line-height: 1.7;
  }
  /* ─── CATEGORIES BAR ─── */
  .categories-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 0 56px;
    position: sticky; top: 65px; z-index: 100;
  }
  .categories-inner {
    max-width: 1160px; margin: 0 auto;
    display: flex; gap: 0; overflow-x: auto;
    scrollbar-width: none;
  }
  .categories-inner::-webkit-scrollbar { display: none; }
  .cat-tab {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 16px 20px;
    font-size: 13px; font-weight: 500; color: var(--muted);
    text-decoration: none; white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
    cursor: pointer; background: none; border-top: none;
    border-left: none; border-right: none; font-family: 'Outfit', sans-serif;
  }
  .cat-tab:hover { color: var(--purple); }
  .cat-tab.active { color: var(--purple); font-weight: 600; border-bottom-color: var(--purple); }
  .cat-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: currentColor; opacity: 0.5; flex-shrink: 0;
  }
  /* ─── MAIN CONTENT WRAP ─── */
  .blog-wrap {
    max-width: 1160px; margin: 0 auto; padding: 72px 56px 80px;
  }
  /* ─── COMING SOON HERO CARD ─── */
  .coming-soon-card {
    background: linear-gradient(135deg, var(--purple) 0%, #1a0f55 100%);
    border-radius: 24px;
    padding: 72px 56px;
    text-align: center;
    position: relative; overflow: hidden;
    margin-bottom: 64px;
  }
  .coming-soon-card::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 70% at 50% 110%, rgba(201,168,76,0.2), transparent);
    pointer-events: none;
  }
  .coming-soon-badge {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 11px; font-weight: 600; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--gold);
    background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.3);
    padding: 6px 16px; border-radius: 20px; margin-bottom: 28px;
  }
  .coming-soon-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--gold);
    animation: pulse 1.8s ease-in-out infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.7); }
  }
  .coming-soon-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px; font-weight: 700; color: #fff;
    line-height: 1.2; margin-bottom: 18px;
    position: relative; z-index: 1;
  }
  .coming-soon-card h2 em { color: var(--gold); font-style: italic; }
  .coming-soon-card > p {
    font-size: 17px; color: rgba(255,255,255,0.75);
    max-width: 520px; margin: 0 auto 40px;
    line-height: 1.75; position: relative; z-index: 1;
  }
  .coming-soon-cta {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--gold); color: var(--purple);
    padding: 15px 32px; border-radius: 10px;
    font-size: 15px; font-weight: 600; text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    position: relative; z-index: 1;
  }
  .coming-soon-cta:hover { background: var(--gold-light); transform: translateY(-2px); }
  /* ─── CONTENT PREVIEW CARDS GRID ─── */
  .preview-label {
    font-size: 11px; font-weight: 600; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
  }
  .preview-heading {
    font-family: 'Playfair Display', serif;
    font-size: 30px; font-weight: 700; color: var(--text);
    margin-bottom: 8px;
  }
  .preview-sub {
    font-size: 16px; color: var(--muted); margin-bottom: 40px; line-height: 1.6;
  }
  .posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  /* ─── POST CARD ─── */
  .post-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    display: flex; flex-direction: column;
  }
  .post-card:hover {
    border-color: var(--purple);
    box-shadow: 0 8px 32px rgba(43,27,114,0.1);
    transform: translateY(-3px);
  }
  .post-card-thumb {
    height: 160px;
    display: flex; align-items: center; justify-content: center;
    font-size: 52px;
    position: relative; overflow: hidden;
  }
  .post-card-thumb.purple { background: linear-gradient(135deg, var(--purple), #1a0f55); }
  .post-card-thumb.gold   { background: linear-gradient(135deg, #7a5c1a, var(--gold)); }
  .post-card-thumb.slate  { background: linear-gradient(135deg, #1e2a3a, #2d4060); }
  .post-card-thumb.teal   { background: linear-gradient(135deg, #0f3a3a, #1a5c5c); }
  .post-thumb-label {
    position: absolute; bottom: 12px; left: 14px;
    font-size: 10px; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; color: rgba(255,255,255,0.7);
    background: rgba(0,0,0,0.3); padding: 4px 10px; border-radius: 20px;
  }
  .post-card-body {
    padding: 22px 24px 24px;
    display: flex; flex-direction: column; flex: 1;
  }
  .post-category {
    display: inline-block;
    font-size: 10px; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--purple);
    background: var(--purple-light);
    padding: 4px 10px; border-radius: 20px;
    margin-bottom: 12px; align-self: flex-start;
  }
  .post-card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 17px; font-weight: 700; color: var(--text);
    line-height: 1.4; margin-bottom: 10px;
  }
  .post-card-body p {
    font-size: 13px; color: var(--muted); line-height: 1.65;
    margin-bottom: 18px; flex: 1;
  }
  .post-footer {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 14px; border-top: 1px solid var(--border);
  }
  .post-read-time { font-size: 12px; color: var(--muted); }
  .post-coming-tag {
    font-size: 11px; font-weight: 600; letter-spacing: 0.06em;
    text-transform: uppercase; color: var(--gold);
    background: rgba(201,168,76,0.1);
    padding: 4px 10px; border-radius: 20px;
  }
  /* ─── FEATURED TOPIC STRIPS ─── */
  .topics-section { margin-top: 72px; }
  .topics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 32px;
  }
  .topic-card {
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px 20px;
    text-align: center;
    transition: border-color 0.2s, background 0.2s;
    cursor: default;
  }
  .topic-card:hover {
    border-color: var(--purple);
    background: var(--purple-light);
  }
  .topic-icon { font-size: 32px; margin-bottom: 12px; }
  .topic-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 6px;
  }
  .topic-card p { font-size: 13px; color: var(--muted); line-height: 1.5; }
  /* ─── NEWSLETTER SECTION ─── */
  .newsletter-section {
    background: var(--off-white);
    padding: 80px 56px;
  }
  .newsletter-inner {
    max-width: 700px; margin: 0 auto; text-align: center;
  }
  .newsletter-icon { font-size: 44px; margin-bottom: 20px; }
  .newsletter-inner h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px; font-weight: 700; color: var(--text);
    line-height: 1.2; margin-bottom: 14px;
  }
  .newsletter-inner h2 em { color: var(--purple); font-style: italic; }
  .newsletter-inner > p {
    font-size: 16px; color: var(--muted);
    line-height: 1.75; margin-bottom: 36px;
  }
  .newsletter-form {
    display: flex; gap: 12px; max-width: 480px; margin: 0 auto 16px;
  }
  .newsletter-form input {
    flex: 1; padding: 14px 18px;
    border: 1px solid var(--border); border-radius: 10px;
    font-family: 'Outfit', sans-serif; font-size: 14px; color: var(--text);
    background: var(--white); outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .newsletter-form input:focus {
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(43,27,114,0.08);
  }
  .newsletter-form button {
    padding: 14px 28px;
    background: var(--purple); color: #fff;
    border: none; border-radius: 10px;
    font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 600;
    cursor: pointer; white-space: nowrap;
    transition: background 0.2s, transform 0.15s;
  }
  .newsletter-form button:hover { background: var(--purple-mid); transform: translateY(-1px); }
  .newsletter-disclaimer {
    font-size: 12px; color: var(--muted); line-height: 1.5;
  }
  .newsletter-success {
    display: none;
    background: var(--purple-light); border: 1px solid var(--purple-line);
    border-radius: 12px; padding: 24px 28px; margin-top: 8px;
  }
  .newsletter-success p {
    font-size: 15px; color: var(--purple); font-weight: 500; margin: 0;
  }
  .newsletter-perks {
    display: flex; justify-content: center; gap: 32px;
    margin-top: 36px; flex-wrap: wrap;
  }
  .newsletter-perk {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; color: var(--muted);
  }
  .newsletter-perk span { font-size: 16px; }
  /* ─── PIPEDRIVE CALENDAR MODAL ─── */
  #pipedriveFrame { border: none; width: 100%; height: 560px; }
  /* ─── FOOTER ─── */
  .footer-col ul li { margin-bottom: 10px; }
  .footer-col ul li a {
    font-size: 13px; color: rgba(255,255,255,0.55);
    text-decoration: none; transition: color 0.2s;
  }
  .footer-col ul li a:hover { color: #fff; }
  /* ─── REVEAL ─── */
  /* ─── MOBILE ─── */
  @media (max-width: 960px) {
    nav { padding: 14px 20px; }
    .nav-links { display: none !important; }
    .logo-powered { display: none; }
    .hamburger { display: flex; }
    .page-hero { padding: 120px 24px 60px; }
    .categories-bar { padding: 0 20px; }
    .blog-wrap { padding: 48px 24px 60px; }
    .coming-soon-card { padding: 48px 28px; }
    .coming-soon-card h2 { font-size: 30px; }
    .posts-grid { grid-template-columns: 1fr 1fr; }
    .topics-grid { grid-template-columns: 1fr 1fr; }
    .newsletter-section { padding: 60px 24px; }
    .newsletter-form { flex-direction: column; }
    footer { padding: 40px 24px 24px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  }
  @media (max-width: 480px) {
    .page-hero h1 { font-size: 36px; }
    .posts-grid { grid-template-columns: 1fr; }
    .topics-grid { grid-template-columns: 1fr 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .newsletter-perks { flex-direction: column; gap: 12px; align-items: center; }
  }

/* ── CALCULATOR PAGE STYLES ── */
  :root {
    --white:        #FAFAF8;
    --off-white:    #F4F3F0;
    --purple:       #2B1B72;
    --purple-mid:   #3B2A8A;
    --purple-light: #EEE9FF;
    --purple-line:  rgba(43,27,114,0.12);
    --gold:         #C9A84C;
    --gold-light:   #E8CB7A;
    --text:         #181524;
    --muted:        #6B6785;
    --border:       rgba(43,27,114,0.1);
  }
  /* ─── NAV ─── */
  .nav-links a.active { color: var(--purple); font-weight: 600; }
  /* ─── HAMBURGER ─── */
  /* ─── MOBILE MENU ─── */
  /* ─── PAGE HERO ─── */
  .page-hero { padding: 160px 56px 80px; background: linear-gradient(135deg, var(--purple) 0%, #1a0f55 100%); position: relative; overflow: hidden; text-align: center; }
  .page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(201,168,76,0.15), transparent); pointer-events: none; }
  .page-hero-label { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.3); padding: 6px 16px; border-radius: 20px; margin-bottom: 24px; }
  .page-hero h1 { font-family: 'Playfair Display', serif; font-size: 52px; font-weight: 700; color: #fff; line-height: 1.15; margin-bottom: 20px; }
  .page-hero h1 em { color: var(--gold); font-style: italic; }
  .page-hero p { font-size: 18px; color: rgba(255,255,255,0.75); max-width: 580px; margin: 0 auto 36px; line-height: 1.7; }
  .hero-download-btn { display: inline-flex; align-items: center; gap: 12px; background: var(--gold); color: var(--purple); padding: 16px 36px; border-radius: 12px; font-size: 16px; font-weight: 700; text-decoration: none; transition: background 0.2s, transform 0.15s; position: relative; z-index: 1; }
  .hero-download-btn:hover { background: var(--gold-light); transform: translateY(-2px); }
  .hero-sub-note { font-size: 13px; color: rgba(255,255,255,0.45); margin-top: 14px; position: relative; z-index: 1; }
  /* ─── SECTION HELPERS ─── */
  .section-heading { font-family: 'Playfair Display', serif; font-size: 38px; font-weight: 700; color: var(--text); line-height: 1.2; margin-bottom: 16px; }
  .section-heading em { color: var(--purple); font-style: italic; }
  /* ─── APP HERO SECTION ─── */
  .app-hero { background: var(--white); padding: 80px 56px; }
  .app-hero-inner { max-width: 1160px; margin: 0 auto; }
  .app-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
  .app-hero-left p { font-size: 17px; color: var(--muted); line-height: 1.8; margin-bottom: 32px; }
  .download-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
  .dl-btn { display: inline-flex; align-items: center; gap: 12px; padding: 14px 24px; border-radius: 12px; text-decoration: none; transition: transform 0.15s, box-shadow 0.2s; font-family: 'Outfit', sans-serif; min-width: 176px; }
  .dl-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(43,27,114,0.2); }
  .dl-btn.purple { background: var(--purple); color: #fff; }
  .dl-btn.dark   { background: #1a1a2e; color: #fff; }
  .dl-btn.outline { background: var(--white); color: var(--text); border: 1.5px solid var(--border); }
  .dl-btn.outline:hover { border-color: var(--purple); }
  .dl-btn-icon { font-size: 24px; flex-shrink: 0; }
  .dl-btn-text { display: flex; flex-direction: column; }
  .dl-btn-sub { font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; opacity: 0.65; }
  .dl-btn-main { font-size: 15px; font-weight: 700; margin-top: 1px; }
  .app-trust-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
  /* App visual card */
  .app-card-main { background: linear-gradient(145deg, var(--purple) 0%, #1a0f55 100%); border-radius: 24px; padding: 36px 32px; position: relative; overflow: hidden; }
  .app-card-main::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 70% at 80% 110%, rgba(201,168,76,0.2), transparent); pointer-events: none; }
  .app-card-header { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; position: relative; z-index: 1; }
  .app-card-logo { width: 52px; height: 52px; background: rgba(255,255,255,0.12); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 26px; flex-shrink: 0; }
  .app-card-title { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: #fff; line-height: 1.2; }
  .app-card-subtitle { font-size: 12px; color: rgba(255,255,255,0.55); margin-top: 2px; }
  .app-tools-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; position: relative; z-index: 1; }
  .app-tool { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 14px 14px 12px; }
  .app-tool-emoji { font-size: 20px; margin-bottom: 8px; display: block; }
  .app-tool-name { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.9); line-height: 1.35; }
  .app-tool-desc { font-size: 11px; color: rgba(255,255,255,0.45); margin-top: 3px; line-height: 1.4; }
  .app-card-footer { margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: space-between; position: relative; z-index: 1; }
  .app-card-powered { font-size: 11px; color: rgba(255,255,255,0.4); line-height: 1.5; }
  .app-card-powered strong { color: var(--gold); display: block; }
  .app-card-stars { font-size: 14px; color: var(--gold); letter-spacing: 1px; }
  .app-card-rating-label { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 2px; text-align: right; }
  /* ───── TOOL-BY-TOOL ─── */
  .tools-section { background: var(--off-white); padding: 80px 56px; }
  .tools-inner { max-width: 1160px; margin: 0 auto; }
  .tools-list { margin-top: 56px; }
  .tool-row { display: grid; grid-template-columns: 80px 1fr 1fr; gap: 32px; align-items: center; padding: 36px 0; border-bottom: 1px solid var(--border); }
  .tool-row:first-child { border-top: 1px solid var(--border); }
  .tool-row-num { font-family: 'Playfair Display', serif; font-size: 40px; font-weight: 700; color: var(--purple-light); line-height: 1; text-align: center; }
  .tool-row-tag { display: inline-block; font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--purple); background: var(--purple-light); padding: 4px 10px; border-radius: 20px; margin-bottom: 10px; }
  .tool-row-left h3 { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
  .tool-row-left p { font-size: 15px; color: var(--muted); line-height: 1.7; }
  .tool-detail-items { display: flex; flex-direction: column; gap: 10px; }
  .tool-detail-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--muted); line-height: 1.5; }
  .tool-detail-item::before { content: '✓'; color: var(--purple); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
  /* ─── WHY THIS APP ─── */
  .why-section { background: var(--white); padding: 80px 56px; }
  .why-inner { max-width: 1160px; margin: 0 auto; }
  .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
  .why-card { background: var(--white); border: 1px solid var(--border); border-radius: 18px; padding: 32px 28px; transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s; }
  .why-card:hover { border-color: var(--purple); box-shadow: 0 8px 32px rgba(43,27,114,0.09); transform: translateY(-3px); }
  .why-card-icon { font-size: 36px; margin-bottom: 16px; }
  .why-card h4 { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
  .why-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }
  /* ─── HOW TO DOWNLOAD ─── */
  .how-section { background: var(--off-white); padding: 80px 56px; }
  .how-inner { max-width: 1160px; margin: 0 auto; }
  .how-steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; position: relative; }
  .how-steps-grid::before { content: ''; position: absolute; top: 28px; left: 12%; right: 12%; height: 1px; background: linear-gradient(90deg, transparent, var(--border), var(--border), transparent); }
  .how-step { text-align: center; position: relative; }
  .how-step-circle { width: 56px; height: 56px; background: var(--purple); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 22px; position: relative; z-index: 1; }
  .how-step h4 { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
  .how-step p { font-size: 14px; color: var(--muted); line-height: 1.65; }
  .how-step .step-note { display: inline-block; margin-top: 12px; font-size: 12px; color: var(--purple); font-weight: 600; background: var(--purple-light); padding: 4px 12px; border-radius: 20px; }
  /* ─── LANGUAGES & ACCESS ─── */
  .access-section { background: var(--white); padding: 64px 56px; }
  .access-inner { max-width: 1160px; margin: 0 auto; }
  .access-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 48px; }
  .access-card { background: var(--off-white); border-radius: 18px; padding: 32px 28px; }
  .access-card h3 { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
  .access-card p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }
  .language-pills { display: flex; flex-wrap: wrap; gap: 8px; }
  .lang-pill { padding: 6px 16px; background: var(--white); border: 1px solid var(--border); border-radius: 20px; font-size: 13px; font-weight: 500; color: var(--text); }
  .access-features { display: flex; flex-direction: column; gap: 12px; }
  .access-feat { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--muted); }
  .access-feat-icon { font-size: 20px; }
  /* ─── DOWNLOAD CTA ─── */
  .download-cta-section { background: linear-gradient(135deg, var(--purple) 0%, #1a0f55 100%); padding: 88px 56px; text-align: center; position: relative; overflow: hidden; }
  .download-cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 80% at 50% 110%, rgba(201,168,76,0.18), transparent); pointer-events: none; }
  .download-cta-inner { max-width: 720px; margin: 0 auto; position: relative; z-index: 1; }
  .download-cta-inner .section-label { color: var(--gold-light); }
  .download-cta-inner .section-heading { color: #fff; font-size: 44px; margin-bottom: 16px; }
  .download-cta-inner .section-sub { color: rgba(255,255,255,0.75); max-width: 100%; margin: 0 auto 44px; }
  .cta-download-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
  .cta-dl-btn { display: inline-flex; align-items: center; gap: 12px; padding: 16px 28px; border-radius: 12px; text-decoration: none; font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 700; transition: transform 0.15s, box-shadow 0.2s; min-width: 190px; border: none; cursor: pointer; }
  .cta-dl-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(0,0,0,0.3); }
  .cta-dl-btn.gold { background: var(--gold); color: var(--purple); }
  .cta-dl-btn.gold:hover { background: var(--gold-light); }
  .cta-dl-btn.ghost { background: rgba(255,255,255,0.1); color: #fff; border: 1px solid rgba(255,255,255,0.2); }
  .cta-dl-btn.ghost:hover { background: rgba(255,255,255,0.18); }
  .cta-dl-icon { font-size: 22px; }
  .cta-dl-text { text-align: left; }
  .cta-dl-sub { font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; opacity: 0.7; display: block; }
  .cta-dl-main { font-size: 16px; }
  .cta-disclaimer { margin-top: 20px; font-size: 12px; color: rgba(255,255,255,0.35); }
  /* ─── PIPEDRIVE MODAL ─── */
  #pipedriveFrame { border: none; width: 100%; height: 560px; }
  /* ─── FOOTER ─── */
  .footer-col ul li { margin-bottom: 10px; }
  .footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
  .footer-col ul li a:hover { color: #fff; }
  /* ─── REVEAL ─── */
  /* ─── MOBILE ─── */
  @media (max-width: 960px) {
    nav { padding: 14px 20px; }
    .nav-links { display: none !important; }
    .logo-powered { display: none; }
    .hamburger { display: flex; }
    .page-hero { padding: 120px 24px 60px; }
    .app-hero { padding: 60px 24px; }
    .app-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .tools-section { padding: 60px 24px; }
    .tool-row { grid-template-columns: 48px 1fr; gap: 20px; }
    .tool-row-right { grid-column: 2; }
    .why-section { padding: 60px 24px; }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .how-section { padding: 60px 24px; }
    .how-steps-grid { grid-template-columns: 1fr 1fr; }
    .how-steps-grid::before { display: none; }
    .access-section { padding: 48px 24px; }
    .access-grid { grid-template-columns: 1fr; }
    .download-cta-section { padding: 60px 24px; }
    footer { padding: 40px 24px 24px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  }
  @media (max-width: 480px) {
    .page-hero h1 { font-size: 36px; }
    .app-tools-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .how-steps-grid { grid-template-columns: 1fr; }
    .download-btns { flex-direction: column; }
    .cta-download-btns { flex-direction: column; align-items: center; }
    .footer-top { grid-template-columns: 1fr; }
    .tool-row { grid-template-columns: 1fr; }
    .tool-row-num { display: none; }
  }

/* ── PARTNERS PAGE STYLES ── */
  :root {
    --white:        #FAFAF8;
    --off-white:    #F4F3F0;
    --purple:       #2B1B72;
    --purple-mid:   #3B2A8A;
    --purple-light: #EEE9FF;
    --purple-line:  rgba(43,27,114,0.12);
    --gold:         #C9A84C;
    --gold-light:   #E8CB7A;
    --text:         #181524;
    --muted:        #6B6785;
    --border:       rgba(43,27,114,0.1);
  }
  /* ─── NAV ─── */
  .nav-links a.active { color: var(--purple); font-weight: 600; }
  /* ─── HAMBURGER ─── */
  /* ─── MOBILE MENU ─── */
  /* ─── PAGE HERO ─── */
  .page-hero {
    padding: 160px 56px 80px;
    background: linear-gradient(135deg, var(--purple) 0%, #1a0f55 100%);
    position: relative; overflow: hidden; text-align: center;
  }
  .page-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(201,168,76,0.15), transparent);
    pointer-events: none;
  }
  .page-hero-label {
    display: inline-block;
    font-size: 11px; font-weight: 600; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--gold);
    background: rgba(201,168,76,0.12);
    border: 1px solid rgba(201,168,76,0.3);
    padding: 6px 16px; border-radius: 20px; margin-bottom: 24px;
  }
  .page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 52px; font-weight: 700; color: #fff;
    line-height: 1.15; margin-bottom: 20px;
  }
  .page-hero h1 em { color: var(--gold); font-style: italic; }
  .page-hero p {
    font-size: 18px; color: rgba(255,255,255,0.75);
    max-width: 580px; margin: 0 auto; line-height: 1.7;
  }
  /* ─── SECTION WRAPPER ─── */
  .section-wrap {
    max-width: 1160px;
    margin: 0 auto;
    padding: 80px 56px;
  }
  .section-heading {
    font-family: 'Playfair Display', serif;
    font-size: 38px; font-weight: 700; color: var(--text);
    line-height: 1.2; margin-bottom: 18px;
  }
  .section-heading em { color: var(--purple); font-style: italic; }
  /* ─── WHY PARTNER ─ VALUE PROPS ─── */
  .why-section { background: var(--white); }
  .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }
  .why-left {}
  .why-points { margin-top: 36px; }
  .why-point {
    display: flex; gap: 18px;
    margin-bottom: 28px;
  }
  .why-point:last-child { margin-bottom: 0; }
  .why-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: var(--purple-light);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
  }
  .why-point-text {}
  .why-point-title {
    font-size: 15px; font-weight: 600; color: var(--text);
    margin-bottom: 5px;
  }
  .why-point-desc {
    font-size: 14px; color: var(--muted); line-height: 1.65;
  }
  .why-right {
    background: linear-gradient(135deg, var(--purple) 0%, #1a0f55 100%);
    border-radius: 20px;
    padding: 44px 40px;
    color: #fff;
  }
  .why-right-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px; font-weight: 700;
    color: #fff; margin-bottom: 8px;
  }
  .why-right-sub {
    font-size: 14px; color: rgba(255,255,255,0.65);
    margin-bottom: 32px; line-height: 1.6;
  }
  .stat-list { list-style: none; }
  .stat-item {
    display: flex; align-items: center; gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .stat-item:last-child { border-bottom: none; }
  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 28px; font-weight: 700; color: var(--gold);
    min-width: 80px;
  }
  .stat-desc {
    font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.5;
  }
  /* ─── PARTNER TYPES ─── */
  .partner-types-section { background: var(--off-white); }
  .partner-types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 48px;
  }
  .partner-type-card {
    background: var(--white);
    border: 1px solid var(--border);
   border-radius: 16px;
    padding: 32px 24px;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  }
  .partner-type-card:hover {
    border-color: var(--purple);
    box-shadow: 0 8px 32px rgba(43,27,114,0.1);
    transform: translateY(-3px);
  }
  .partner-type-icon {
    font-size: 36px; margin-bottom: 16px;
  }
  .partner-type-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px; font-weight: 700; color: var(--text);
    margin-bottom: 10px;
  }
  .partner-type-card p {
    font-size: 14px; color: var(--muted);
    line-height: 1.65; margin-bottom: 20px;
  }
  .partner-type-tag {
    display: inline-block;
    font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--purple);
    background: var(--purple-light);
    padding: 5px 12px; border-radius: 20px;
  }
  /* ─── HOW IT WORKS ─── */
  .how-section { background: var(--white); }
  .how-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 48px;
    position: relative;
  }
  .how-steps::before {
    content: '';
    position: absolute;
    top: 28px; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), var(--border), transparent);
  }
  .how-step { text-align: center; position: relative; }
  .how-step-num {
    width: 56px; height: 56px;
    background: var(--purple);
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 20px; font-weight: 700;
    margin: 0 auto 20px;
    position: relative; z-index: 1;
  }
  .how-step h4 {
    font-family: 'Playfair Display', serif;
    font-size: 16px; font-weight: 700; color: var(--text);
    margin-bottom: 8px;
  }
  .how-step p {
    font-size: 14px; color: var(--muted); line-height: 1.65;
  }
  /* ─── WHAT YOU GET (BENEFITS) ─── */
  .benefits-section { background: var(--off-white); }
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
  }
  .benefit-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px 24px;
  }
  .benefit-icon { font-size: 28px; margin-bottom: 14px; }
  .benefit-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 16px; font-weight: 700; color: var(--text);
    margin-bottom: 8px;
  }
  .benefit-card p {
    font-size: 14px; color: var(--muted); line-height: 1.65;
  }
  /* ─── CTA / PARTNER FORM ─── */
  .cta-section {
    background: linear-gradient(135deg, var(--purple) 0%, #1a0f55 100%);
    padding: 80px 56px;
    position: relative; overflow: hidden;
  }
  .cta-section::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 80% at 80% 50%, rgba(201,168,76,0.12), transparent);
    pointer-events: none;
  }
  .cta-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    position: relative; z-index: 1;
  }
  .cta-left {}
  .cta-left .section-label { color: var(--gold-light); }
  .cta-left h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px; font-weight: 700; color: #fff;
    line-height: 1.2; margin-bottom: 18px;
  }
  .cta-left h2 em { color: var(--gold); font-style: italic; }
  .cta-left p {
    font-size: 16px; color: rgba(255,255,255,0.75);
    line-height: 1.75; margin-bottom: 32px;
  }
  .cta-contacts { display: flex; flex-direction: column; gap: 12px; }
  .cta-contact-item {
    display: flex; align-items: center; gap: 12px;
    font-size: 15px; color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: color 0.2s;
  }
  .cta-contact-item:hover { color: #fff; }
  .cta-contact-icon {
    width: 36px; height: 36px; flex-shrink: 0;
    background: rgba(255,255,255,0.1);
    border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
  }
  /* ─── PARTNER FORM ─── */
  .partner-form-card {
    background: var(--white);
    border-radius: 18px;
    padding: 40px 36px;
    box-shadow: 0 32px 80px rgba(0,0,0,0.3);
  }
  .partner-form-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px; font-weight: 700; color: var(--text);
    margin-bottom: 6px;
  }
  .partner-form-card > p {
    font-size: 14px; color: var(--muted); margin-bottom: 28px;
  }
  .form-group input,
  .form-group select,
  .form-group input:focus,
  .form-group select:focus,
  /* ─── PIPEDRIVE CALENDAR MODAL ─── */
  #pipedriveFrame { border: none; width: 100%; height: 560px; }
  /* ─── FOOTER ─── */
  .footer-col ul li { margin-bottom: 10px; }
  .footer-col ul li a {
    font-size: 13px; color: rgba(255,255,255,0.55);
    text-decoration: none; transition: color 0.2s;
  }
  .footer-col ul li a:hover { color: #fff; }
  /* ─── REVEAL ─── */
  /* ─── MOBILE ─── */
  @media (max-width: 960px) {
    nav { padding: 14px 20px; }
    .nav-links { display: none !important; }
    .logo-powered { display: none; }
    .hamburger { display: flex; }
    .page-hero { padding: 120px 24px 60px; }
    .section-wrap { padding: 60px 24px; }
    .why-grid { grid-template-columns: 1fr; gap: 40px; }
    .partner-types-grid { grid-template-columns: 1fr 1fr; }
    .how-steps { grid-template-columns: 1fr 1fr; }
    .how-steps::before { display: none; }
    .benefits-grid { grid-template-columns: 1fr 1fr; }
    .cta-section { padding: 60px 24px; }
    .cta-inner { grid-template-columns: 1fr; gap: 40px; }
    footer { padding: 40px 24px 24px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  }
  @media (max-width: 480px) {
    .page-hero h1 { font-size: 36px; }
    .partner-types-grid { grid-template-columns: 1fr; }
    .how-steps { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .section-heading { font-size: 30px; }
  }

/* ── BLOG ARTICLE STYLES ── */
  :root {
    --white:        #FAFAF8;
    --off-white:    #F4F3F0;
    --purple:       #2B1B72;
    --purple-mid:   #3B2A8A;
    --purple-light: #EEE9FF;
    --purple-line:  rgba(43,27,114,0.12);
    --gold:         #C9A84C;
    --gold-light:   #E8CB7A;
    --text:         #181524;
    --muted:        #6B6785;
    --border:       rgba(43,27,114,0.1);
  }
  /* ─── NAV ─── */
  .nav-links a.active { color: var(--purple); font-weight: 600; }
  /* ─── HAMBURGER ─── */
  /* ─── MOBILE MENU ─── */
  /* ─── ARTICLE HERO ─── */
  .article-hero {
    padding: 160px 56px 60px;
    background: linear-gradient(135deg, var(--purple) 0%, #1a0f55 100%);
    position: relative; overflow: hidden;
  }
  .article-hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(201,168,76,0.15), transparent);
    pointer-events: none;
  }
  .article-hero-inner {
    max-width: 800px; margin: 0 auto; position: relative; z-index: 1;
  }
  .article-back {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.7);
    text-decoration: none; margin-bottom: 32px;
    transition: color 0.2s;
  }
  .article-back:hover { color: #fff; }
  .article-meta {
    display: flex; align-items: center; gap: 20px;
    flex-wrap: wrap; margin-bottom: 24px;
  }
  .article-badge {
    display: inline-block;
    font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--gold);
    background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.3);
    padding: 6px 14px; border-radius: 20px;
  }
  .article-date {
    font-size: 13px; color: rgba(255,255,255,0.65);
  }
  .article-readtime {
    font-size: 13px; color: rgba(255,255,255,0.65);
  }
  .article-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 52px; font-weight: 700; color: #fff;
    line-height: 1.15; margin-bottom: 0;
  }
  .article-hero h1 em { color: var(--gold); font-style: italic; }
  /* ─── ARTICLE CONTAINER ─── */
  .article-container {
    max-width: 1160px; margin: 0 auto; padding: 0 56px;
  }
  .article-wrap {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 64px;
    padding: 72px 0 80px;
  }
  /* ─── ARTICLE BODY ─── */
  .article-body {
    max-width: 720px;
  }
  .article-body h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px; font-weight: 700; color: var(--text);
    line-height: 1.2; margin-top: 48px; margin-bottom: 20px;
  }
  .article-body h2:first-child { margin-top: 0; }
  .article-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px; font-weight: 700; color: var(--text);
    line-height: 1.25; margin-top: 36px; margin-bottom: 16px;
  }
  .article-body p {
    font-size: 16px; line-height: 1.8; color: var(--text);
    margin-bottom: 20px;
  }
  .article-body p.lead {
    font-size: 18px; line-height: 1.75; color: var(--muted);
    margin-bottom: 28px;
    font-weight: 500;
  }
  .article-body ul, .article-body ol {
    margin: 24px 0 28px 0;
    padding-left: 32px;
  }
  .article-body li {
    font-size: 16px; line-height: 1.8; color: var(--text);
    margin-bottom: 12px;
  }
  .article-body blockquote {
    border-left: 4px solid var(--gold);
    padding: 24px 28px;
    margin: 32px 0;
    background: var(--off-white);
    border-radius: 8px;
  }
  .article-body blockquote p {
    font-size: 17px; line-height: 1.75; color: var(--text);
    font-style: italic; margin: 0;
    font-weight: 500;
  }
  .article-body blockquote .cite {
    display: block; margin-top: 12px;
    font-size: 13px; color: var(--muted);
    font-style: normal; font-weight: 400;
  }
  .article-body strong { font-weight: 600; color: var(--text); }
  .article-body em { font-style: italic; color: var(--purple); }
  .article-body a {
    color: var(--purple); text-decoration: underline;
    transition: color 0.2s;
  }
  .article-body a:hover { color: var(--purple-mid); }
  .article-body img {
    width: 100%; max-width: 720px;
    border-radius: 12px; margin: 32px 0;
    display: block;
  }
  /* ─── ARTICLE SIDEBAR ─── */
  .article-sidebar {
    position: sticky; top: 100px;
    height: fit-content;
  }
  .author-card {
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    margin-bottom: 32px;
  }
  .author-avatar {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple), #1a0f55);
    margin: 0 auto 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 40px;
  }
  .author-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 17px; font-weight: 700; color: var(--text);
    margin-bottom: 4px;
  }
  .author-title {
    font-size: 13px; color: var(--muted);
    margin-bottom: 14px; display: block;
  }
  .author-bio {
    font-size: 13px; color: var(--muted);
    line-height: 1.6; margin-bottom: 16px;
  }
  .author-cta {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--purple); color: #fff;
    padding: 10px 18px; border-radius: 8px;
    font-size: 13px; font-weight: 600;
    text-decoration: none; transition: background 0.2s;
  }
  .author-cta:hover { background: var(--purple-mid); }
  /* ─── RELATED POSTS ─── */
  .related-section {
    padding: 72px 56px;
    background: var(--off-white);
    border-top: 1px solid var(--border);
    margin-top: 80px;
  }
  .related-inner {
    max-width: 1160px; margin: 0 auto;
  }
  .related-label {
    font-size: 11px; font-weight: 600; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
  }
  .related-heading {
    font-family: 'Playfair Display', serif;
    font-size: 32px; font-weight: 700; color: var(--text);
    margin-bottom: 36px;
  }
  .related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .related-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    display: flex; flex-direction: column;
    text-decoration: none;
  }
  .related-card:hover {
    border-color: var(--purple);
    box-shadow: 0 8px 32px rgba(43,27,114,0.1);
    transform: translateY(-3px);
  }
  .related-thumb {
    height: 160px;
    display: flex; align-items: center; justify-content: center;
    font-size: 48px;
    background: linear-gradient(135deg, var(--purple), #1a0f55);
    position: relative; overflow: hidden;
  }
  .related-body {
    padding: 20px 22px 22px;
    display: flex; flex-direction: column; flex: 1;
  }
  .related-category {
    display: inline-block;
    font-size: 10px; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--purple);
    background: var(--purple-light);
    padding: 4px 10px; border-radius: 20px;
    margin-bottom: 10px; align-self: flex-start;
  }
  .related-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 17px; font-weight: 700; color: var(--text);
    line-height: 1.4; margin-bottom: 8px;
  }
  .related-body p {
    font-size: 13px; color: var(--muted); line-height: 1.65;
    margin-bottom: 12px; flex: 1;
  }
  .related-readtime {
    font-size: 12px; color: var(--muted); padding-top: 12px;
    border-top: 1px solid var(--border);
  }
  /* ─── CTA SECTION ─── */
  .article-cta-section {
    max-width: 1160px; margin: 0 auto;
    padding: 72px 56px;
  }
  .article-cta-card {
    background: linear-gradient(135deg, var(--purple) 0%, #1a0f55 100%);
    border-radius: 20px;
    padding: 56px 48px;
    text-align: center;
    position: relative; overflow: hidden;
  }
  .article-cta-card::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(201,168,76,0.15), transparent);
    pointer-events: none;
  }
  .article-cta-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px; font-weight: 700; color: #fff;
    line-height: 1.2; margin-bottom: 16px;
    position: relative; z-index: 1;
  }
  .article-cta-card h2 em { color: var(--gold); font-style: italic; }
  .article-cta-card p {
    font-size: 16px; color: rgba(255,255,255,0.75);
    max-width: 560px; margin: 0 auto 32px;
    line-height: 1.75; position: relative; z-index: 1;
  }
  .article-cta-btn {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--gold); color: var(--purple);
    padding: 15px 36px; border-radius: 10px;
    font-size: 15px; font-weight: 600; text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    position: relative; z-index: 1;
  }
  .article-cta-btn:hover { background: var(--gold-light); transform: translateY(-2px); }
  /* ─── PIPEDRIVE CALENDAR MODAL ─── */
  #pipedriveFrame { border: none; width: 100%; height: 560px; }
  /* ─── FOOTER ─── */
  .footer-col ul li { margin-bottom: 10px; }
  .footer-col ul li a {
    font-size: 13px; color: rgba(255,255,255,0.55);
    text-decoration: none; transition: color 0.2s;
  }
  .footer-col ul li a:hover { color: #fff; }
  /* ─── REVEAL ─── */
  /* ─── MOBILE ─── */
  @media (max-width: 960px) {
    nav { padding: 14px 20px; }
    .nav-links { display: none !important; }
    .logo-powered { display: none; }
    .hamburger { display: flex; }
    .article-hero { padding: 120px 24px 50px; }
    .article-hero h1 { font-size: 36px; }
    .article-container { padding: 0 24px; }
    .article-wrap {
      grid-template-columns: 1fr;
      gap: 48px;
      padding: 48px 0 60px;
    }
    .article-sidebar { position: static; }
    .related-section { padding: 48px 24px; }
    .related-grid { grid-template-columns: 1fr; }
    .article-cta-section { padding: 48px 24px; }
    .article-cta-card { padding: 40px 28px; }
    .article-cta-card h2 { font-size: 28px; }
    footer { padding: 40px 24px 24px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  }
  @media (max-width: 480px) {
    .article-hero h1 { font-size: 32px; }
    .article-body h2 { font-size: 26px; }
    .article-body h3 { font-size: 20px; }
    .article-body { max-width: 100%; }
    .footer-top { grid-template-columns: 1fr; }
  }
