*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  :root {
    --blue: #1C57F0;
    --blue-dark: #1244CC;
    --text-dark: #0D1321;
    --text-mid: #3D4555;
    --text-muted: #6B7280;
    --border: #E8EAF0;
    --white: #ffffff;
    --bg: #ffffff;
    --green: #00B67A;
    --radius: 10px;
  }

  body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--bg);
    color: var(--text-dark);
    min-height: 100vh;
    overflow-x: hidden;
  }

  /* ─── NAV ─── */
  nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 56px;
    height: 72px;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(8px);
    z-index: 100;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 20px;
    color: var(--text-dark);
    text-decoration: none;
  }
  .logo-icon {
    width: 34px;
    height: 34px;
    background: var(--blue);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .logo-icon svg { width: 20px; height: 20px; fill: white; }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
  }
  .nav-links li a {
    text-decoration: none;
    color: var(--text-mid);
    font-size: 14px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: background 0.18s, color 0.18s;
  }
  .nav-links li a:hover { background: #f1f3f8; color: var(--text-dark); }
  .nav-links li a .caret {
    display: inline-block;
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.5 5.25L7 8.75L10.5 5.25' stroke='%236B7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px;
    opacity: 0.7;
  }

  .nav-right {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .lang-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-mid);
    cursor: pointer;
    padding: 5px 8px;
    border-radius: 6px;
    transition: background 0.18s;
  }
  .lang-toggle:hover { background: #f1f3f8; }
  .lang-toggle svg { width: 17px; height: 17px; flex-shrink: 0; }

  .btn-primary {
    background: var(--blue);
    color: #fff;
    border: none;
    padding: 11px 26px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.18s, transform 0.15s;
    letter-spacing: 0.01em;
  }
  .btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); }

  /* ─── HERO ─── */
  .hero-outer {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 56px;
  }

  .hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding-top: 64px;
    align-items: start;
  }

  /* LEFT */
  .hero-left { position: relative; }

  .hero-title {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -2px;
    color: var(--text-dark);
    margin-bottom: 22px;
    position: relative;
  }
  .hero-title .line2 { display: block; }

  .title-deco {
    position: absolute;
    top: -4px;
    right: -60px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    pointer-events: none;
  }
  .deco-sq-sm { width: 26px; height: 26px; background: var(--blue); }
  .deco-sq-lg { width: 40px; height: 40px; background: var(--blue); }

  .hero-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.72;
    max-width: 430px;
    margin-bottom: 32px;
  }

  .trustpilot-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 36px;
  }
  .tp-brand {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 14.5px;
    font-weight: 700;
    color: var(--text-dark);
  }
  .tp-star-icon {
    width: 22px;
    height: 22px;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
  }
  .tp-star-icon svg { width: 14px; height: 14px; fill: white; }

  .tp-stars-row { display: flex; align-items: center; gap: 2px; }
  .tp-star-filled, .tp-star-half {
    width: 22px; height: 22px; background: var(--green);
    display: flex; align-items: center; justify-content: center; border-radius: 2px;
  }
  .tp-star-partial {
    width: 22px; height: 22px;
    background: linear-gradient(to right, var(--green) 80%, #d1d5db 80%);
    display: flex; align-items: center; justify-content: center; border-radius: 2px;
  }
  .tp-star-filled svg, .tp-star-partial svg { width: 13px; height: 13px; fill: white; }

  .tp-score-text { font-size: 13px; color: var(--text-muted); font-weight: 500; }
  .tp-score-text strong { color: var(--text-dark); font-weight: 700; }

  .btn-learn {
    background: var(--blue);
    color: #fff;
    border: none;
    padding: 14px 34px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.18s, transform 0.15s, box-shadow 0.18s;
    box-shadow: 0 4px 18px rgba(28,87,240,0.25);
  }
  .btn-learn:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(28,87,240,0.32); }

  /* RIGHT */
  .hero-right { position: relative; }

  .hero-stats-bar {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 20px;
  }
  .stat-clients-group { display: flex; align-items: center; gap: 14px; }
  .stat-number { font-size: 40px; font-weight: 800; letter-spacing: -2px; color: var(--text-dark); line-height: 1; }
  .avatars-group { display: flex; align-items: center; }
  .av {
    width: 34px; height: 34px; border-radius: 50%; border: 2.5px solid white;
    margin-left: -10px; font-size: 11px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; overflow: hidden;
  }
  .av:first-child { margin-left: 0; }
  .av-plus { background: var(--blue); color: white; font-size: 17px; font-weight: 400; }
  .stat-clients-label { font-size: 13px; color: var(--text-muted); line-height: 1.45; max-width: 100px; font-weight: 500; }

  .corp-pill {
    display: flex; align-items: center; justify-content: space-between;
    border: 1px solid var(--border); border-radius: 50px;
    padding: 12px 12px 12px 24px;
    cursor: pointer; font-size: 14px; font-weight: 600;
    color: var(--text-dark); background: var(--white);
    margin-bottom: 18px;
    transition: border-color 0.18s, box-shadow 0.18s;
    gap: 16px;
  }
  .corp-pill:hover { border-color: #b0b8cc; box-shadow: 0 2px 12px rgba(0,0,0,0.07); }
  .corp-arrow-btn {
    width: 38px; height: 38px; border-radius: 50%;
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    transition: background 0.18s, border-color 0.18s;
  }
  .corp-pill:hover .corp-arrow-btn { background: var(--blue); border-color: var(--blue); }
  .corp-pill:hover .corp-arrow-btn svg path { stroke: white; }
  .corp-arrow-btn svg { width: 16px; height: 16px; }

  .hero-img-card {
    border-radius: 18px; overflow: hidden; position: relative;
    height: 390px; background: #d8dde6;
  }
  .office-svg { width: 100%; height: 100%; display: block; }

  .circle-badge {
    position: absolute; bottom: 24px; left: -44px;
    width: 96px; height: 96px; pointer-events: none;
  }
  .rotating-ring { animation: rotateBadge 14s linear infinite; transform-origin: 48px 48px; }
  @keyframes rotateBadge { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

  @keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .anim { opacity: 0; animation: fadeSlideUp 0.65s cubic-bezier(0.22,0.9,0.4,1) forwards; }
  .anim-d1 { animation-delay: 0.05s; }
  .anim-d2 { animation-delay: 0.14s; }
  .anim-d3 { animation-delay: 0.22s; }
  .anim-d4 { animation-delay: 0.30s; }
  .anim-d5 { animation-delay: 0.10s; }

  /* ─── Services Section ─── */
  .services-section {
    background: #F2F2F0;
    padding: 80px 56px 64px;
    margin-top: 72px;
  }
  .services-inner { max-width: 1280px; margin: 0 auto; }

  .services-header {
    display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
    align-items: start; margin-bottom: 48px;
  }
  .services-title {
    font-size: 46px; font-weight: 800; line-height: 1.1;
    letter-spacing: -1.5px; color: var(--text-dark);
  }
  .services-header-right {
    display: flex; flex-direction: column; align-items: flex-start;
    justify-content: center; padding-top: 8px;
  }
  .services-desc {
    font-size: 14.5px; color: var(--text-muted); line-height: 1.68;
    max-width: 360px; margin-bottom: 18px;
  }
  .view-all-link {
    display: flex; align-items: center; gap: 6px;
    font-size: 14.5px; font-weight: 700; color: var(--text-dark);
    text-decoration: none; border-bottom: 2px solid var(--text-dark);
    padding-bottom: 1px; transition: color 0.18s, border-color 0.18s;
  }
  .view-all-link:hover { color: var(--blue); border-color: var(--blue); }
  .view-all-link svg { width: 14px; height: 14px; flex-shrink: 0; }

  .services-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0; overflow: hidden;
  }
  .svc-card {
    background: #F2F2F0;
    display: flex; flex-direction: column;
    border-right: 1px solid #dcddd8;
    transition: background 0.22s; cursor: pointer;
  }
  .svc-card:last-child { border-right: none; }
  .svc-card:hover { background: #eaeae6; }

  .svc-img-wrap {
    width: 100%; aspect-ratio: 4/3.2; overflow: hidden;
    border-radius: 10px; background: #c8cfd8; flex-shrink: 0;
  }
  .svc-img-wrap svg { width: 100%; height: 100%; display: block; }

  .svc-body {
    padding: 20px 4px 20px 0; display: flex;
    align-items: center; justify-content: space-between; gap: 12px;
  }
  .svc-title { font-size: 16px; font-weight: 700; color: var(--text-dark); line-height: 1.35; letter-spacing: -0.2px; }
  .svc-arrow {
    width: 42px; height: 42px; border-radius: 50%;
    border: 1.5px solid #c0c2cc;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    transition: background 0.18s, border-color 0.18s; background: transparent;
  }
  .svc-card:hover .svc-arrow { background: var(--blue); border-color: var(--blue); }
  .svc-card:hover .svc-arrow path { stroke: white; }
  .svc-arrow svg { width: 16px; height: 16px; }

  .services-dots {
    display: flex; align-items: center; justify-content: center;
    gap: 8px; margin-top: 40px;
  }
  .dot {
    width: 10px; height: 10px; border-radius: 50%;
    border: 1.5px solid #b0b4c0; background: transparent;
    cursor: pointer;
    transition: background 0.18s, border-color 0.18s, width 0.22s;
  }
  .dot.active { width: 30px; border-radius: 5px; background: var(--blue); border-color: var(--blue); }

  .back-to-top {
    position: fixed; bottom: 32px; right: 32px;
    width: 44px; height: 44px; border-radius: 50%;
    border: 2px solid var(--blue); background: white;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: background 0.18s, transform 0.18s;
    z-index: 99;
  }
  .back-to-top:hover { background: var(--blue); transform: translateY(-2px); }
  .back-to-top:hover svg path { stroke: white; }
  .back-to-top svg { width: 18px; height: 18px; }

  @keyframes fadeUp2 {
    from { opacity: 0; transform: translateY(32px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .svc-anim { opacity: 0; animation: fadeUp2 0.6s cubic-bezier(0.22,0.9,0.4,1) forwards; }
  .svc-anim.visible { opacity: 1; }

  /* ─── About Section ─── */
  .about-section { background: #ffffff; padding: 100px 56px 110px; }
  .about-inner {
    max-width: 1280px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
  }
  .about-left { display: flex; flex-direction: column; gap: 0; }
  .about-title {
    font-size: 52px; font-weight: 800; letter-spacing: -2px;
    line-height: 1.08; color: #0D1321; margin-bottom: 40px;
  }
  .about-desc {
    font-size: 15px; color: #6B7280; line-height: 1.78;
    max-width: 490px; margin-bottom: 48px;
  }
  .about-signature {
    font-family: 'Dancing Script', cursive;
    font-size: 34px; font-weight: 600; color: #0D1321;
    letter-spacing: 0.5px; margin-bottom: 36px; line-height: 1;
  }
  .about-clients-row { display: flex; align-items: center; gap: 18px; margin-bottom: 36px; }
  .about-avatars { display: flex; align-items: center; }
  .ab-av {
    width: 44px; height: 44px; border-radius: 50%; border: 2.5px solid white;
    margin-left: -12px; overflow: hidden; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
  }
  .ab-av:first-child { margin-left: 0; }
  .ab-av-plus {
    width: 44px; height: 44px; border-radius: 50%; background: #1C57F0;
    border: 2.5px solid white; margin-left: -12px;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 22px; font-weight: 300; flex-shrink: 0;
  }
  .about-client-text { font-size: 14.5px; font-weight: 600; color: #0D1321; line-height: 1.4; }
  .about-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 15px; font-weight: 700; color: #0D1321;
    text-decoration: none; border-bottom: 2px solid #0D1321;
    padding-bottom: 2px; transition: color 0.18s, border-color 0.18s;
  }
  .about-link:hover { color: #1C57F0; border-color: #1C57F0; }
  .about-link svg { width: 14px; height: 14px; flex-shrink: 0; }

  .about-photos {
    display: flex; align-items: flex-end; justify-content: flex-end;
    gap: 14px; position: relative;
  }
  .photo-col { border-radius: 12px; overflow: hidden; flex-shrink: 0; background: #d0d5de; }
  .photo-col.left   { width: 180px; height: 320px; align-self: flex-end; margin-bottom: 0; }
  .photo-col.center { width: 196px; height: 380px; align-self: flex-start; margin-top: 0; }
  .photo-col.right  { width: 148px; height: 296px; align-self: flex-end; margin-right: -28px; }
  .photo-col svg { width: 100%; height: 100%; display: block; }

  @keyframes fadeSlideIn {
    from { opacity: 0; transform: translateY(36px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .ab-anim { opacity: 0; animation: fadeSlideIn 0.7s cubic-bezier(0.22,0.9,0.4,1) forwards; }
  .ab-anim.visible { opacity: 1; }

  /* ─── Case Studies ─── */
  .case-section { background: #0a0f1e; position: relative; overflow: hidden; padding: 90px 0 0; }
  .case-section::before {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
    background-size: 28px 28px; pointer-events: none;
  }
  .case-glow {
    position: absolute; top: -60px; right: -60px;
    width: 480px; height: 480px; border-radius: 50%;
    background: radial-gradient(circle, rgba(28,87,240,0.18) 0%, transparent 70%);
    pointer-events: none;
  }
  .case-header {
    max-width: 1280px; margin: 0 auto; padding: 0 56px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
    align-items: start; margin-bottom: 56px; position: relative; z-index: 2;
  }
  .case-title { font-size: 48px; font-weight: 800; letter-spacing: -1.8px; line-height: 1.1; color: #ffffff; }
  .case-header-right { display: flex; flex-direction: column; justify-content: center; padding-top: 6px; }
  .case-desc { font-size: 14.5px; color: #8a90a8; line-height: 1.72; max-width: 380px; margin-bottom: 20px; }
  .case-view-link {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 14.5px; font-weight: 700; color: #ffffff;
    text-decoration: none; border-bottom: 2px solid #ffffff;
    padding-bottom: 2px; transition: color 0.18s, border-color 0.18s; width: fit-content;
  }
  .case-view-link:hover { color: #6090ff; border-color: #6090ff; }
  .case-view-link svg { width: 14px; height: 14px; }

  /* Horizontal accordion strip */
  .case-strip {
    position: relative; z-index: 2;
    display: flex; align-items: stretch; background: #ffffff;
    border-radius: 16px 16px 0 0;
    margin: 0 56px; overflow: hidden; min-height: 460px;
  }
  .case-panel {
    display: flex;
    flex: 0 0 64px;
    background: #f7f7f5;
    border-left: 1px solid #e8e8e4;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: flex-basis 0.6s cubic-bezier(0.7,0,0.2,1), background 0.4s ease;
    will-change: flex-basis;
  }
  .case-panel:first-child { border-left: none; }
  .case-panel:hover:not(.active) { background: #f0f0ec; }
  .case-panel.active {
    flex: 1 1 auto;
    min-width: 720px;
    background: #ffffff;
    cursor: default;
  }

  .panel-tab {
    width: 64px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    padding: 24px 0;
    transition: background 0.4s ease;
  }
  .case-panel.active .panel-tab { background: #f5f5f3; border-right: 1px solid #e8e8e4; }

  .panel-tab-text {
    font-size: 12.5px; font-weight: 600; color: #a8acba;
    white-space: nowrap;
    writing-mode: vertical-rl; transform: rotate(180deg);
    letter-spacing: 1px;
    transition: color 0.4s ease, font-weight 0.4s ease, letter-spacing 0.4s ease;
  }
  .case-panel:hover:not(.active) .panel-tab-text { color: #4a5060; }
  .case-panel.active .panel-tab-text {
    color: #0D1321; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase;
  }

  /* Active panel body (photo + detail) */
  .panel-body {
    display: flex;
    flex: 1;
    opacity: 0;
    transform: translateX(-12px);
    transition: opacity 0.45s ease 0.15s, transform 0.55s cubic-bezier(0.22,0.9,0.4,1) 0.15s;
    pointer-events: none;
    min-width: 0;
  }
  .case-panel.active .panel-body {
    opacity: 1; transform: translateX(0);
    pointer-events: auto;
  }

  .panel-photo {
    width: 320px; flex-shrink: 0;
    overflow: hidden; position: relative;
    background: #d0d5de;
  }
  .panel-photo svg { width: 100%; height: 100%; display: block; }

  .panel-detail {
    flex: 1; padding: 52px 44px;
    display: flex; flex-direction: column; justify-content: center;
    min-width: 280px;
  }
  .case-num { font-size: 48px; font-weight: 800; color: #c8cad0; letter-spacing: -1px; margin-bottom: 20px; line-height: 1; }
  .case-name { font-size: 22px; font-weight: 800; color: #0D1321; letter-spacing: -0.3px; margin-bottom: 16px; line-height: 1.3; }
  .case-body { font-size: 14px; color: #6B7280; line-height: 1.75; margin-bottom: 36px; max-width: 300px; }
  .case-detail-link {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 14.5px; font-weight: 700; color: #0D1321;
    text-decoration: none; border-bottom: 2px solid #0D1321;
    padding-bottom: 2px; transition: color 0.18s, border-color 0.18s; width: fit-content;
  }
  .case-detail-link:hover { color: #1C57F0; border-color: #1C57F0; }
  .case-detail-link svg { width: 14px; height: 14px; }

  /* Staggered entrance for content elements inside active panel */
  .case-panel .panel-detail > * { opacity: 0; transform: translateY(8px); transition: opacity 0.4s ease, transform 0.5s ease; }
  .case-panel.active .panel-detail > * { opacity: 1; transform: translateY(0); }
  .case-panel.active .panel-detail > *:nth-child(1) { transition-delay: 0.25s; }
  .case-panel.active .panel-detail > *:nth-child(2) { transition-delay: 0.32s; }
  .case-panel.active .panel-detail > *:nth-child(3) { transition-delay: 0.39s; }
  .case-panel.active .panel-detail > *:nth-child(4) { transition-delay: 0.46s; }

  @keyframes fadeSlideUp3 {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .cs-anim { opacity: 0; animation: fadeSlideUp3 0.7s cubic-bezier(0.22,0.9,0.4,1) forwards; }

  /* ─── Testimonials Section ─── */
  .testimonial-section {
    background: #ffffff;
    padding: 110px 56px 100px;
    position: relative;
  }
  .testimonial-inner { max-width: 1280px; margin: 0 auto; }
  .testimonial-header {
    display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
    align-items: end; margin-bottom: 56px;
  }
  .testimonial-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 700;
    color: var(--blue); text-transform: uppercase; letter-spacing: 2px;
    margin-bottom: 18px;
  }
  .testimonial-eyebrow::before {
    content: ''; width: 28px; height: 2px; background: var(--blue);
  }
  .testimonial-title {
    font-size: 48px; font-weight: 800; letter-spacing: -1.8px;
    line-height: 1.1; color: var(--text-dark);
  }
  .testimonial-controls {
    display: flex; gap: 10px; justify-content: flex-end;
  }
  .tcontrol {
    width: 48px; height: 48px; border-radius: 50%;
    border: 1.5px solid #d8dae4; background: transparent;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: background 0.18s, border-color 0.18s, transform 0.15s;
  }
  .tcontrol:hover { background: var(--blue); border-color: var(--blue); transform: translateY(-2px); }
  .tcontrol:hover svg path { stroke: white; }
  .tcontrol svg { width: 18px; height: 18px; }

  .testimonial-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .t-card {
    background: #F7F8FB;
    border: 1px solid #ECEEF4;
    border-radius: 16px;
    padding: 36px 32px;
    display: flex; flex-direction: column; gap: 22px;
    transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
    position: relative;
  }
  .t-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px -20px rgba(13,19,33,0.15);
    background: #ffffff;
  }
  .t-card.featured { background: var(--text-dark); border-color: var(--text-dark); }
  .t-card.featured .t-quote-text,
  .t-card.featured .t-author-name { color: #ffffff; }
  .t-card.featured .t-author-role { color: #9ba3b8; }
  .t-card.featured .t-divider { background: #2a2f42; }

  .t-quote-mark {
    font-family: 'Plus Jakarta Sans', serif;
    font-size: 64px; line-height: 0.6;
    color: var(--blue); font-weight: 800;
    height: 24px;
  }
  .t-card.featured .t-quote-mark { color: #6b8fff; }

  .t-stars { display: flex; gap: 3px; }
  .t-stars svg { width: 16px; height: 16px; fill: #FFB400; }

  .t-quote-text {
    font-size: 15px; line-height: 1.7; color: var(--text-mid);
    font-weight: 500;
  }
  .t-divider { height: 1px; background: #e8eaf0; margin-top: auto; }
  .t-author { display: flex; align-items: center; gap: 14px; }
  .t-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    overflow: hidden; flex-shrink: 0; background: #d4d8e0;
  }
  .t-avatar svg { width: 100%; height: 100%; display: block; }
  .t-author-name { font-size: 15px; font-weight: 700; color: var(--text-dark); line-height: 1.2; margin-bottom: 4px; }
  .t-author-role { font-size: 13px; color: var(--text-muted); font-weight: 500; }

  /* ─── CTA Section ─── */
  .cta-section {
    padding: 0 56px 100px;
    background: #ffffff;
  }
  .cta-inner {
    max-width: 1280px; margin: 0 auto;
    background: var(--blue);
    border-radius: 24px;
    padding: 72px 64px;
    position: relative; overflow: hidden;
    display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px;
    align-items: center;
  }
  .cta-inner::before {
    content: ''; position: absolute;
    top: -120px; right: -120px;
    width: 360px; height: 360px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    pointer-events: none;
  }
  .cta-inner::after {
    content: ''; position: absolute;
    bottom: -160px; left: 30%;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    pointer-events: none;
  }
  .cta-deco-grid {
    position: absolute; top: 24px; right: 24px;
    display: grid; grid-template-columns: repeat(3, 14px);
    gap: 8px; opacity: 0.35;
  }
  .cta-deco-grid span { width: 14px; height: 14px; background: white; border-radius: 2px; }

  .cta-content { position: relative; z-index: 2; }
  .cta-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,0.16);
    padding: 6px 14px; border-radius: 50px;
    font-size: 12.5px; font-weight: 700;
    color: #ffffff; letter-spacing: 1.5px; text-transform: uppercase;
    margin-bottom: 22px;
  }
  .cta-eyebrow .cta-dot { width: 8px; height: 8px; background: #80ffb0; border-radius: 50%; }
  .cta-title {
    font-size: 46px; font-weight: 800;
    letter-spacing: -1.8px; line-height: 1.08;
    color: #ffffff; margin-bottom: 18px;
  }
  .cta-desc {
    font-size: 15px; line-height: 1.7;
    color: rgba(255,255,255,0.85);
    max-width: 480px; margin-bottom: 32px;
  }
  .cta-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
  .cta-btn {
    background: #ffffff; color: var(--blue);
    border: none; padding: 15px 30px;
    border-radius: 10px; font-size: 15px; font-weight: 700;
    cursor: pointer; font-family: inherit;
    transition: transform 0.15s, box-shadow 0.18s;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .cta-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0,0,0,0.18); }
  .cta-btn svg { width: 16px; height: 16px; }
  .cta-btn-ghost {
    background: transparent; color: #ffffff;
    border: 1.5px solid rgba(255,255,255,0.5);
    padding: 13.5px 28px; border-radius: 10px;
    font-size: 15px; font-weight: 700; cursor: pointer; font-family: inherit;
    transition: background 0.18s, border-color 0.18s;
  }
  .cta-btn-ghost:hover { background: rgba(255,255,255,0.14); border-color: #ffffff; }

  .cta-right {
    position: relative; z-index: 2;
    display: flex; align-items: center; justify-content: flex-end;
  }
  .cta-stat-card {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 18px;
    padding: 32px 30px;
    display: flex; flex-direction: column; gap: 18px;
    min-width: 280px;
  }
  .cta-stat-row { display: flex; align-items: baseline; gap: 14px; }
  .cta-stat-num { font-size: 44px; font-weight: 800; color: #ffffff; letter-spacing: -1.5px; line-height: 1; }
  .cta-stat-label { font-size: 13px; color: rgba(255,255,255,0.85); font-weight: 600; line-height: 1.4; max-width: 140px; }
  .cta-stat-divider { height: 1px; background: rgba(255,255,255,0.22); }
  .cta-stat-foot { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.85); font-weight: 500; }
  .cta-stat-foot svg { width: 16px; height: 16px; }

  /* ─── Footer ─── */
  .footer {
    background: #050913;
    color: #c0c5d4;
    padding: 80px 56px 32px;
    position: relative;
    overflow: hidden;
  }
  .footer::before {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 32px 32px; pointer-events: none;
  }
  .footer-inner {
    max-width: 1280px; margin: 0 auto;
    position: relative; z-index: 2;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
    gap: 56px;
    padding-bottom: 56px;
    border-bottom: 1px solid #1a2030;
  }
  .footer-brand .logo {
    color: #ffffff; margin-bottom: 18px;
  }
  .footer-tagline {
    font-size: 14px; line-height: 1.72;
    color: #8a90a8; max-width: 320px; margin-bottom: 26px;
  }
  .footer-socials { display: flex; gap: 10px; }
  .footer-social {
    width: 40px; height: 40px; border-radius: 50%;
    background: #131826;
    border: 1px solid #1f2638;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: background 0.18s, border-color 0.18s, transform 0.18s;
  }
  .footer-social:hover { background: var(--blue); border-color: var(--blue); transform: translateY(-3px); }
  .footer-social svg { width: 16px; height: 16px; fill: #c0c5d4; transition: fill 0.18s; }
  .footer-social:hover svg { fill: #ffffff; }

  .footer-col h4 {
    font-size: 15px; font-weight: 700;
    color: #ffffff; margin-bottom: 22px; letter-spacing: -0.2px;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
  .footer-col ul li a {
    text-decoration: none; color: #8a90a8;
    font-size: 14px; font-weight: 500;
    transition: color 0.18s, padding-left 0.18s;
    display: inline-flex; align-items: center;
  }
  .footer-col ul li a:hover { color: #ffffff; padding-left: 6px; }

  .footer-contact-item {
    display: flex; align-items: flex-start; gap: 12px;
    margin-bottom: 16px;
    font-size: 14px; color: #c0c5d4;
  }
  .footer-contact-icon {
    width: 32px; height: 32px; border-radius: 8px;
    background: #131826; border: 1px solid #1f2638;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .footer-contact-icon svg { width: 14px; height: 14px; }
  .footer-contact-text { line-height: 1.5; }
  .footer-contact-text strong { color: #ffffff; font-weight: 600; display: block; margin-bottom: 2px; font-size: 13px; }

  .footer-newsletter {
    margin-top: 8px;
    display: flex; align-items: center;
    background: #0d1220;
    border: 1px solid #1f2638;
    border-radius: 50px;
    padding: 4px 4px 4px 18px;
    transition: border-color 0.18s;
  }
  .footer-newsletter:focus-within { border-color: var(--blue); }
  .footer-newsletter input {
    background: transparent; border: none; outline: none;
    flex: 1; color: #ffffff; font-family: inherit;
    font-size: 13.5px; padding: 10px 4px;
  }
  .footer-newsletter input::placeholder { color: #6b7387; }
  .footer-newsletter button {
    background: var(--blue); color: #ffffff;
    border: none; border-radius: 50px;
    padding: 9px 18px; font-size: 13px; font-weight: 700;
    cursor: pointer; font-family: inherit;
    transition: background 0.18s;
  }
  .footer-newsletter button:hover { background: var(--blue-dark); }

  .footer-bottom {
    padding-top: 28px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px; flex-wrap: wrap;
  }
  .footer-copy { font-size: 13.5px; color: #6b7387; }
  .footer-legal { display: flex; gap: 24px; }
  .footer-legal a {
    color: #8a90a8; text-decoration: none;
    font-size: 13.5px; transition: color 0.18s;
  }
  .footer-legal a:hover { color: #ffffff; }

  /* Section animation classes shared */
  @keyframes fadeUpShared {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .scroll-anim { opacity: 0; animation: fadeUpShared 0.7s cubic-bezier(0.22,0.9,0.4,1) forwards; }

  /* Responsive tweaks (basic) */
  @media (max-width: 980px) {
    nav { padding: 0 24px; }
    .nav-links { display: none; }
    .hero-outer { padding: 0 24px; }
    .hero { grid-template-columns: 1fr; padding-top: 36px; }
    .services-section, .about-section, .testimonial-section, .cta-section { padding-left: 24px; padding-right: 24px; }
    .services-header, .about-inner, .case-header, .testimonial-header, .cta-inner { grid-template-columns: 1fr; gap: 32px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonial-grid { grid-template-columns: 1fr; }
    .case-strip { margin: 0 24px; flex-direction: column; min-height: 0; }
    .case-panel { flex: 0 0 auto !important; min-width: 0 !important; border-left: none; border-top: 1px solid #e8e8e4; }
    .case-panel:first-child { border-top: none; }
    .case-panel .panel-body { display: none; }
    .case-panel.active .panel-body { display: flex; flex-direction: column; }
    .panel-tab { width: 100%; padding: 16px 20px; justify-content: flex-start; }
    .panel-tab-text { writing-mode: horizontal-tb; transform: none; }
    .panel-photo { width: 100%; height: 220px; }
    .panel-detail { padding: 32px 24px; }
    .footer { padding: 64px 24px 28px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .hero-title, .services-title, .about-title, .case-title, .testimonial-title, .cta-title { font-size: 38px; }
    .title-deco { display: none; }
    .cta-inner { padding: 48px 28px; }
  }

/* WordPress accessibility utilities */
.screen-reader-text {
  border: 0;
  clip: rect(1px,1px,1px,1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px; width: 1px;
  margin: -1px; overflow: hidden;
  padding: 0; position: absolute !important;
  word-wrap: normal !important;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  padding: 10px 16px;
  background: #1C57F0;
  color: #fff !important;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  z-index: 9999;
}
.skip-link:focus { left: 12px; outline: 3px solid #80ffb0; }

/* WordPress core alignment + caption helpers */
.alignleft   { float: left;  margin-right: 24px; }
.alignright  { float: right; margin-left:  24px; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.alignwide   { max-width: 1100px; }
.alignfull   { width: 100vw; max-width: none; margin-left: calc(50% - 50vw); }
.wp-caption-text { font-size: 13px; color: #6B7280; padding-top: 8px; }
