/*
Theme Name: Kloud Connect
Theme URI: https://www.kloudconnect.com.au/
Author: Sujith
Author URI: https://www.kloudconnect.com.au/
Description: Custom WordPress theme for Kloud Connect based on the new homepage template.
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: custom-homepage, responsive, one-column, two-columns
Text Domain: kloud-connect
*/
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --blue: #1C3F8F;
    --blue-dark: #122a63;
    --blue-mid: #2a52b8;
    --teal: #00AEEF;
    --teal-light: #e6f7f5;
    --white: #ffffff;
    --off-white: #F7F8FC;
    --text: #1a1a2e;
    --text-muted: #5a6480;
    --border: #e2e6f0;
    --section-gap: 100px;
  }

  html { scroll-behavior: smooth; }

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

  h1, h2, h3, h4, h5, h6{
    font-family: 'Sora', sans-serif;
    font-weight: 800;
  }

  /* ── NAV ───────────────────────────────────────────────────── */
  .kc-nav {
    position: sticky; top: 0; z-index: 100;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 0 48px;
    height: 68px;
    display: flex; align-items: center; justify-content: space-between;
  }
  .nav-logo {
    display: flex; align-items: center; gap: 10px;
    font-family: 'Sora', sans-serif;
    font-weight: 700; font-size: 20px;
    color: var(--blue);
    text-decoration: none;
  }
  .nav-logo .dot { color: var(--teal); }
  .nav-links {
    display: flex; gap: 32px; list-style: none;
  }
  .nav-links a {
    font-size: 14.5px; font-weight: 500;
    color: var(--text-muted); text-decoration: none;
    transition: color .2s;
  }
  .nav-links a:hover { color: var(--blue); }
  .nav-cta {
    background: var(--blue);
    color: var(--white) !important;
    padding: 9px 22px;
    border-radius: 7px;
    font-weight: 600 !important;
    font-size: 14px !important;
    transition: background .2s !important;
  }
  .nav-cta:hover { background: var(--blue-dark) !important; color: var(--white) !important; }

  /* ── HERO ───────────────────────────────────────────────────── */
  .hero {
    background: linear-gradient(150deg, var(--blue-dark) 0%, var(--blue) 55%, #1e50b3 100%);
    padding: 90px 48px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
    min-height: 580px;
    overflow: hidden;
    position: relative;
  }
  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(0,182,155,.15) 0%, transparent 60%);
    pointer-events: none;
  }
  .hero-content { padding-bottom: 80px; position: relative; }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 100px;
    padding: 5px 14px;
    font-size: 12.5px; font-weight: 500;
    color: rgba(255,255,255,.85);
    margin-bottom: 24px;
    letter-spacing: .03em;
  }
  .hero-eyebrow span { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); display: inline-block; }
  .hero h1 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 800;
    line-height: 1.12;
    color: var(--white);
    margin-bottom: 20px;
  }
  .hero h1 em { font-style: normal; color: var(--teal); }
  .hero-sub {
    font-size: 17px;
    color: rgba(255,255,255,.72);
    line-height: 1.65;
    margin-bottom: 36px;
    max-width: 460px;
    font-weight: 300;
  }
  .hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
  .btn-primary {
    background: var(--teal);
    color: var(--white);
    padding: 13px 28px;
    border-radius: 8px;
    font-weight: 600; font-size: 15px;
    text-decoration: none;
    border: none; cursor: pointer;
    transition: background .2s, transform .15s;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-primary:hover { background: #009a83; transform: translateY(-1px); }
  .btn-ghost {
    background: transparent;
    color: rgba(255,255,255,.85);
    padding: 13px 24px;
    border-radius: 8px;
    font-weight: 500; font-size: 15px;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,.3);
    cursor: pointer;
    transition: border-color .2s, color .2s;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-ghost:hover { border-color: rgba(255,255,255,.6); color: var(--white); }
  .hero-image {
    align-self: end;
    position: relative;
  }
  .hero-screen {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 16px 16px 0 0;
    padding: 16px;
    min-height: 340px;
    display: flex; flex-direction: column; gap: 12px;
    backdrop-filter: blur(4px);
  }
  .screen-bar {
    display: flex; gap: 6px; align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .screen-bar span { width: 10px; height: 10px; border-radius: 50%; }
  .screen-bar span:nth-child(1) { background: #ff5f57; }
  .screen-bar span:nth-child(2) { background: #febc2e; }
  .screen-bar span:nth-child(3) { background: #28c840; }
  .screen-row {
    display: grid; grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
  }
  .screen-card {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 10px;
    padding: 14px;
    min-height: 70px;
  }
  .screen-card .label {
    font-size: 10px; font-weight: 600;
    color: rgba(255,255,255,.5);
    text-transform: uppercase; letter-spacing: .07em;
    margin-bottom: 6px;
  }
  .screen-card .value {
    font-family: 'Sora', sans-serif;
    font-size: 20px; font-weight: 700;
    color: var(--white);
  }
  .screen-card.accent { background: rgba(0,182,155,.2); border-color: rgba(0,182,155,.3); }
  .screen-card.accent .value { color: var(--teal); }
  .screen-list { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
  .screen-item {
    background: rgba(255,255,255,.07);
    border-radius: 8px;
    padding: 10px 14px;
    display: flex; align-items: center; justify-content: space-between;
    border: 1px solid rgba(255,255,255,.08);
  }
  .screen-item .name { font-size: 12px; color: rgba(255,255,255,.75); font-weight: 500; }
  .screen-item .tag {
    font-size: 10px; font-weight: 600;
    padding: 3px 8px; border-radius: 100px;
  }
  .tag-green { background: rgba(0,182,155,.2); color: var(--teal); }
  .tag-orange { background: rgba(255,165,0,.2); color: #ffa500; }
  .tag-blue { background: rgba(100,150,255,.2); color: #6496ff; }

  /* ── LOGO STRIP ─────────────────────────────────────────────── */
  .logo-strip {
    padding: 36px 48px;
    border-bottom: 1px solid var(--border);
    background: var(--white);
  }
  .logo-strip p {
    text-align: center;
    font-size: 12.5px; font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase; letter-spacing: .1em;
    margin-bottom: 28px;
  }
  .logos {
    display: flex; align-items: center; justify-content: center;
    gap: 48px; flex-wrap: wrap;
  }
  .logo-item {
    font-family: 'Sora', sans-serif;
    font-size: 15px; font-weight: 700;
    color: #b0b8cc;
    letter-spacing: -.01em;
    transition: color .2s;
    white-space: nowrap;
  }
  .logo-item:hover { color: var(--blue); }
  .logo-item sub { font-size: 9px; font-weight: 400; vertical-align: middle; opacity: .7; }

  /* ── BOLD STAT ─────────────────────────────────────────────── */
  .stat-band {
    background: var(--off-white);
    padding: 64px 48px;
    text-align: center;
    border-bottom: 1px solid var(--border);
  }
  .stat-inner { max-width: 760px; margin: 0 auto; }
  .stat-inner h2 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 700;
    line-height: 1.25;
    color: var(--text);
    margin-bottom: 24px;
  }
  .stat-inner h2 em { font-style: normal; color: var(--teal); }
  .stat-inner p {
    font-size: 15px; color: var(--text-muted); margin-bottom: 28px; line-height: 1.6;
  }
  .stat-link {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 14px; font-weight: 600;
    color: var(--blue);
    text-decoration: none;
    padding-bottom: 2px;
    transition: color .2s;
  }
  .stat-link:hover { color: var(--teal); }

  /* ── FEATURE SECTIONS ──────────────────────────────────────── */
  .feat-wrap {}
  .feat-divider { border: none; border-top: 1px solid var(--border); }

  .feature-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
  }
  .feature-section.reverse .feat-quote-col { order: 2; }
  .feature-section.reverse .feat-ui-col   { order: 1; }

  /* Left/Right quote column */
  /*.feat-quote-col {
    background: var(--off-white);
    padding: 72px 60px;
    display: flex; flex-direction: column; justify-content: center;
    position: relative;
  }*/
  .feat-quote-col.dark {
    background: var(--blue);
  }
  .feature-tag {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .12em;
    color: var(--teal);
    margin-bottom: 20px;
  }
  .feat-quote-col.dark .feature-tag { color: rgba(255,255,255,.55); }
  .feat-big-quote {
    font-family: 'Sora', sans-serif;
    font-size: clamp(28px, 2.8vw, 38px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 20px;
    position: relative;
  }
  .feat-big-quote::before {
    content: '\201C';
    font-size: 80px;
    line-height: 0;
    position: absolute;
    top: 28px; left: -14px;
    color: var(--teal);
    opacity: .25;
    font-family: Georgia, serif;
  }
  .feat-quote-col.dark .feat-big-quote { color: var(--white); }
  .feat-quote-col.dark .feat-big-quote::before { color: rgba(255,255,255,.2); }
  .feat-stars {
    display: flex; gap: 3px; margin-bottom: 8px;
  }
  .feat-stars span { color: #f5a623; font-size: 14px; }
  .feat-cite {
    font-size: 13px; color: var(--text-muted); line-height: 1.5; margin-bottom: 20px;
  }
  .feat-quote-col.dark .feat-cite { color: rgba(255,255,255,.55); }
  .feat-cite strong { color: var(--blue); font-weight: 600; }
  .feat-quote-col.dark .feat-cite strong { color: var(--teal); }
  .feat-body {
    font-size: 15px; line-height: 1.7; color: var(--text-muted); margin-bottom: 28px;
  }
  .feat-quote-col.dark .feat-body { color: rgba(255,255,255,.65); }
  .feat-cta {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13.5px; font-weight: 700;
    color: var(--blue);
    text-decoration: none;
    border-bottom: 2px solid var(--teal);
    padding-bottom: 2px;
    width: fit-content;
    transition: color .2s;
  }
  .feat-cta:hover { color: var(--teal); }
  .feat-quote-col.dark .feat-cta { color: var(--white); border-color: rgba(255,255,255,.4); }
  .feat-cta svg { transition: transform .2s; }
  .feat-cta:hover svg { transform: translateX(3px); }

  /* Right/Left UI column */
  .feat-ui-col {
    background: var(--white);
    display: flex; align-items: center; justify-content: center;
    padding: 48px;
    border-left: 1px solid var(--border);
  }
  .feat-ui-col.bg-light {
    background: #eef1f8;
    border-left: none;
    border-right: 1px solid var(--border);
  }

  /* Mock screens */
  .feature-visual {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(28,63,143,.12), 0 4px 16px rgba(0,0,0,.06);
    position: relative;
  }
  .mock-window {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--white);
  }
  .mock-titlebar {
    background: #f1f3f8;
    padding: 10px 16px;
    display: flex; align-items: center; gap: 8px;
    border-bottom: 1px solid var(--border);
  }
  .mock-dot { width: 10px; height: 10px; border-radius: 50%; }
  .mock-dot:nth-child(1) { background: #ff5f57; }
  .mock-dot:nth-child(2) { background: #febc2e; }
  .mock-dot:nth-child(3) { background: #28c840; }
  .mock-body { padding: 20px; min-height: 280px; }

  /* Workflow mock */
  .wf-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 16px;
  }
  .wf-title { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 15px; color: var(--text); }
  .wf-badge {
    background: var(--teal); color: var(--white);
    font-size: 11px; font-weight: 700;
    padding: 3px 10px; border-radius: 100px;
  }
  .wf-stats { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-bottom: 16px; }
  .wf-stat {
    background: var(--off-white); border-radius: 10px;
    padding: 12px; border: 1px solid var(--border);
  }
  .wf-stat .wf-num {
    font-family: 'Sora', sans-serif;
    font-size: 22px; font-weight: 800; color: var(--blue);
  }
  .wf-stat .wf-label { font-size: 10px; color: var(--text-muted); font-weight: 500; margin-top: 2px; }
  .wf-jobs { display: flex; flex-direction: column; gap: 8px; }
  .wf-job {
    display: flex; align-items: center; justify-content: space-between;
    background: var(--off-white); border-radius: 8px;
    padding: 10px 14px; border: 1px solid var(--border);
  }
  .wf-job-info { display: flex; flex-direction: column; gap: 2px; }
  .wf-job-name { font-size: 12.5px; font-weight: 600; color: var(--text); }
  .wf-job-meta { font-size: 11px; color: var(--text-muted); }
  .wf-progress { display: flex; align-items: center; gap: 8px; }
  .progress-bar { width: 80px; height: 5px; background: var(--border); border-radius: 10px; overflow: hidden; }
  .progress-fill { height: 100%; border-radius: 10px; background: var(--teal); }
  .progress-pct { font-size: 11px; font-weight: 600; color: var(--text-muted); }

  /* Billing mock */
  .bill-summary { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; }
  .bill-card {
    background: var(--off-white); border-radius: 10px;
    padding: 14px; border: 1px solid var(--border);
  }
  .bill-card.highlight { background: var(--blue); border-color: var(--blue); }
  .bill-card .bill-label { font-size: 10px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 6px; }
  .bill-card.highlight .bill-label { color: rgba(255,255,255,.65); }
  .bill-card .bill-val { font-family: 'Sora', sans-serif; font-size: 20px; font-weight: 800; color: var(--text); }
  .bill-card.highlight .bill-val { color: var(--white); }
  .bill-table { width: 100%; border-collapse: collapse; font-size: 12px; }
  .bill-table th { text-align: left; font-weight: 600; color: var(--text-muted); font-size: 10.5px; text-transform: uppercase; letter-spacing: .05em; padding: 6px 0; border-bottom: 1px solid var(--border); }
  .bill-table td { padding: 8px 0; border-bottom: 1px solid var(--border); color: var(--text); }
  .bill-table tr:last-child td { border: none; }
  .bill-amount { font-weight: 700; color: var(--blue) !important; }

  /* Reporting mock */
  .rep-header { margin-bottom: 14px; }
  .rep-kpis { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-bottom: 14px; }
  .rep-kpi { background: var(--off-white); border: 1px solid var(--border); border-radius: 10px; padding: 12px; }
  .rep-kpi .rep-num { font-family: 'Sora', sans-serif; font-size: 18px; font-weight: 800; color: var(--text); }
  .rep-kpi .rep-num.up { color: var(--teal); }
  .rep-kpi .rep-num.warn { color: #e67e22; }
  .rep-kpi .rep-lbl { font-size: 10px; color: var(--text-muted); margin-top: 2px; }
  .rep-chart { background: var(--off-white); border: 1px solid var(--border); border-radius: 10px; padding: 14px; height: 130px; display: flex; align-items: flex-end; gap: 8px; }
  .bar-group { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 4px; }
  .bar { width: 100%; border-radius: 4px 4px 0 0; background: var(--border); transition: background .2s; }
  .bar.filled { background: var(--blue); }
  .bar.filled.teal { background: var(--teal); }
  .bar-label { font-size: 9px; color: var(--text-muted); }

  /* ── MORE FEATURES ──────────────────────────────────────────── */
  .more-section {
    background: var(--off-white);
    padding: 80px 48px;
    border-top: 1px solid var(--border);
  }
  .more-header { text-align: center; margin-bottom: 52px; }
  .more-header h2 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 700; color: var(--text);
    margin-bottom: 10px;
  }
  .more-header h2 em { font-style: normal; color: var(--teal); }
  .more-header p { font-size: 16px; color: var(--text-muted); max-width: 520px; margin: 0 auto; }
  .more-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
  }
  .more-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px 20px;
    transition: box-shadow .2s, transform .15s, border-color .2s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
  }
  .more-card::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--teal);
    transform: scaleX(0);
    transition: transform .2s;
  }
  .more-card:hover { box-shadow: 0 8px 32px rgba(28,63,143,.1); transform: translateY(-3px); border-color: rgba(28,63,143,.15); }
  .more-card:hover::after { transform: scaleX(1); }
  .card-icon {
    width: 44px; height: 44px;
    background: var(--off-white);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 14px;
    border: 1px solid var(--border);
    font-size: 20px;
  }
  .more-card h3 { font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
  .more-card p { font-size: 12.5px; line-height: 1.55; color: var(--text-muted); }
  .card-arrow {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 12px; font-weight: 600; color: var(--blue);
    margin-top: 14px;
    text-decoration: none;
  }

  /* ── SOCIAL PROOF ───────────────────────────────────────────── */
  .proof-section {
    padding: 80px 48px;
    background: var(--off-white);
    border-top: 1px solid var(--border);
  }
  .proof-section h2 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 800; color: var(--text);
    text-align: center; margin-bottom: 48px;
  }
  .proof-section h2 em { font-style: normal; color: var(--blue); }
  .proof-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 900px; margin: 0 auto; }

  /* Video embed widget */
  .video-card { background: var(--white); border-radius: 8px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,.1); border: 1px solid var(--border); }
  .video-embed-wrap {}
  .video-topbar {
    background: var(--blue);
    padding: 10px 12px;
    display: flex; align-items: flex-start; justify-content: space-between; gap: 10px;
  }
  .video-topbar-left { display: flex; align-items: flex-start; gap: 10px; flex: 1; }
  .video-logo-circle {
    width: 32px; height: 32px; border-radius: 50%;
    background: var(--white);
    color: var(--blue);
    font-family: 'Sora', sans-serif;
    font-size: 10px; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .video-title-text { font-size: 13px; font-weight: 600; color: var(--white); line-height: 1.35; padding-top: 2px; }
  .video-kebab { color: rgba(255,255,255,.7); font-size: 18px; line-height: 1; padding-top: 2px; cursor: pointer; }
  .video-thumb-area {
    height: 200px;
    position: relative;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
  }
  .video-thumb-wsc { background: linear-gradient(135deg, #c8b89a 0%, #a89070 50%, #7a6550 100%); }
  .video-thumb-pt { background: linear-gradient(135deg, #1a2a4a 0%, #c0392b 60%, #922b21 100%); }
  .video-brand-tag {
    position: absolute; top: 10px; left: 10px;
    background: var(--blue);
    color: var(--white);
    font-size: 11px; font-weight: 700;
    padding: 3px 10px; border-radius: 4px;
  }
  .video-pt-logo {
    font-family: 'Sora', sans-serif;
    font-size: 22px; font-weight: 800;
    color: var(--white);
    text-align: center; line-height: 1.3;
  }
  .video-pt-logo span { color: #e74c3c; }
  .video-pt-logo small { font-size: 12px; font-weight: 400; opacity: .8; }
  .video-controls-bar {
    background: var(--blue);
    padding: 8px 12px;
    display: flex; align-items: center; gap: 10px;
  }
  .video-play-btn {
    width: 28px; height: 28px; border-radius: 50%;
    background: rgba(255,255,255,.2);
    border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: background .2s;
  }
  .video-play-btn:hover { background: rgba(255,255,255,.35); }
  .video-time { font-size: 12px; color: rgba(255,255,255,.8); font-weight: 600; white-space: nowrap; }
  .video-scrubber {
    flex: 1; height: 4px; background: rgba(255,255,255,.3); border-radius: 10px; overflow: hidden;
  }
  .video-scrubber-fill { height: 100%; background: var(--white); width: 30%; border-radius: 10px; }
  .video-ctrl-icons { display: flex; gap: 8px; font-size: 12px; color: rgba(255,255,255,.7); }

  /* ── PT2.0 BAND ─────────────────────────────────────────────── */
  .pt2-band {
    background: linear-gradient(135deg, #0d2a5e 0%, #1a3d80 100%);
    padding: 72px 48px;
    position: relative; overflow: hidden;
  }
  .pt2-band::before {
    content: '';
    position: absolute; top: -40px; right: -40px;
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(0,182,155,.2) 0%, transparent 70%);
    pointer-events: none;
  }
  .pt2-inner {
    max-width: 680px; margin: 0 auto; text-align: center; position: relative;
  }
  .pt2-badge {
    display: inline-block;
    background: rgba(0,182,155,.2);
    border: 1px solid rgba(0,182,155,.4);
    color: var(--teal);
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .1em;
    padding: 5px 14px; border-radius: 100px;
    margin-bottom: 20px;
  }
  .pt2-band h2, .font-style1 h2 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 700; color: var(--white);
    line-height: 1.25; margin-bottom: 16px;
  }
  .pt2-band p, .font-style1 p {
    font-size: 16px; color: rgba(255,255,255,.65);
    line-height: 1.7; margin-bottom: 32px;
  }
  .btn-teal {
    background: var(--teal); color: var(--white);
    padding: 13px 28px; border-radius: 8px;
    font-weight: 600; font-size: 15px;
    text-decoration: none; display: inline-block;
    transition: background .2s;
  }
  .btn-teal:hover { background: #009a83; }

  /* ── CLOSING CTA ────────────────────────────────────────────── */
  .closing-cta {
    padding: 96px 48px;
    text-align: center;
    background: var(--white);
    border-top: 1px solid var(--border);
  }
  .closing-cta h2 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800; color: var(--text);
    margin-bottom: 14px; line-height: 1.15;
  }
  .closing-cta h2 em { font-style: normal; color: var(--blue); }
  .closing-cta p { font-size: 16px; color: var(--text-muted); margin-bottom: 36px; }
  .cta-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
  .btn-outline {
    background: transparent; color: var(--blue);
    padding: 13px 24px; border-radius: 8px;
    font-weight: 600; font-size: 15px;
    text-decoration: none;
    border: 2px solid var(--blue);
    transition: background .2s, color .2s;
  }
  .btn-outline:hover { background: var(--blue); color: var(--white); }

  /* ── FOOTER ─────────────────────────────────────────────────── */
  .site-footer {
    background: #0f1f4a;
    padding: 48px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
  }
  .footer-brand .logo {
    font-family: 'Sora', sans-serif; font-size: 18px; font-weight: 700;
    color: var(--white); margin-bottom: 12px; display: block;
  }
  .footer-brand .logo span { color: var(--teal); }
  .footer-brand p { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.6; max-width: 220px; }
  .footer-col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.4); margin-bottom: 16px; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col ul a { font-size: 13.5px; color: rgba(255,255,255,.65); text-decoration: none; transition: color .2s; }
  .footer-col ul a:hover { color: var(--teal); }
  .footer-bottom {
    background: #0a1636;
    padding: 18px 48px;
    display: flex; align-items: center; justify-content: space-between;
  }
  .footer-bottom p { font-size: 12px; color: rgba(255,255,255,.3); }
  .footer-bottom a { font-size: 12px; color: rgba(255,255,255,.3); text-decoration: none; }
  .footer-bottom a:hover { color: var(--teal); }

  /* wireframe annotation badge */
  .wf-note {
    position: absolute; top: 12px; right: 12px;
    background: rgba(255,193,7,.9); color: #000;
    font-size: 10px; font-weight: 700;
    padding: 3px 8px; border-radius: 4px;
    pointer-events: none; z-index: 10;
    font-family: monospace;
  }

  @media (max-width: 900px) {
    .kc-nav { padding: 0 20px; }
    .nav-links { display: none; }
    .hero { grid-template-columns: 1fr; padding: 60px 20px 0; }
    .hero-image { display: none; }
    .logo-strip, .stat-band, .more-section, .proof-section, .closing-cta, .pt2-band { padding-left: 20px; padding-right: 20px; }
    .feature-section { grid-template-columns: 1fr; padding: 60px 20px; gap: 40px; }
    .feature-section.reverse { direction: ltr; }
    .more-grid { grid-template-columns: 1fr 1fr; }
    .proof-grid { grid-template-columns: 1fr; }
    .site-footer { grid-template-columns: 1fr 1fr; padding: 32px 20px; }
    .footer-bottom { flex-direction: column; gap: 8px; padding: 16px 20px; }
  }

/* WordPress alignment helpers */
.alignleft { float: left; margin-right: 1.5em; margin-bottom: 1em; }
.alignright { float: right; margin-left: 1.5em; margin-bottom: 1em; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 13px; color: var(--text-muted); }
.screen-reader-text {
  border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%);
  height: 1px; margin: -1px; overflow: hidden; padding: 0;
  position: absolute !important; width: 1px; word-wrap: normal !important;
}

/* Header / WordPress menu integration */
.site-header { position: sticky; top: 0; z-index: 1000; }
.kc-nav { width: 100%; }
.kc-nav .nav-links { margin: 0; padding: 0; align-items: center; }
.kc-nav .nav-links li { list-style: none; }
.kc-nav .nav-links > li:last-child > a,
.kc-nav .nav-links a.nav-cta {
  background: var(--blue);
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: 7px;
  font-weight: 600 !important;
  font-size: 14px !important;
  transition: background .2s !important;
}
.kc-nav .nav-links > li:last-child > a:hover,
.kc-nav .nav-links a.nav-cta:hover { background: var(--blue-dark) !important; color: var(--white) !important; }
.custom-logo { max-height: 34px; width: auto; }

.burger {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  padding: 8px;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--blue);
  transition: transform .2s ease, opacity .2s ease;
}
.burger.toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.toggle span:nth-child(2) { opacity: 0; }
.burger.toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Content templates */
.entry-title, .archive-title { font-family: 'Sora', sans-serif; color: var(--text); margin-bottom: 20px; }
.entry-content, .post-content { color: var(--text-muted); line-height: 1.75; }
.entry-content p, .post-content p { margin-bottom: 1em; }
.entry-content a, .post-content a { color: var(--blue); }
.posts-list { display: grid; gap: 28px; }
.archive-post { padding-bottom: 28px; border-bottom: 1px solid var(--border); }
.archive-post h2 { font-family: 'Sora', sans-serif; font-size: 26px; margin-bottom: 8px; }
.archive-post h2 a { color: var(--text); text-decoration: none; }
.archive-post h2 a:hover { color: var(--blue); }
.post-header {
  position: relative; background-size: cover; background-position: center; min-height: 400px;
  display: flex; justify-content: center; align-items: center; text-align: center; color: white; padding: 80px 20px;
  background-color: var(--blue-dark);
}
.post-header .overlay { position: absolute; inset: 0; background-color: rgba(0, 0, 0, 0.58); }
.post-info { position: relative; z-index: 1; max-width: 1100px; }
.post-info h1 { font-family: 'Sora', sans-serif; font-size: clamp(34px, 4vw, 56px); line-height: 1.15; margin-bottom: 12px; }
.post-meta { color: rgba(255,255,255,.75); font-size: 15px; }
.post-content { padding: 60px 0; }
.pagination, .nav-links.pagination { margin-top: 35px; }

/* Footer widget compatibility */
.site-footer .widget, .footer-bottom .widget { margin: 0; }
.site-footer .widget ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.site-footer .widget a, .footer-bottom .widget a { color: rgba(255,255,255,.65); text-decoration: none; }
.site-footer .widget a:hover, .footer-bottom .widget a:hover { color: var(--teal); }
.footer-brand img { max-width: 190px; height: auto; margin-bottom: 14px; }
.footer-bottom .footer-bottom-links { display: flex; align-items: center; gap: 16px; }

@media (max-width: 900px) {
  .kc-nav { padding: 0 20px; position: relative; }
  .kc-nav .burger { display: block; }
  .kc-nav .nav-links {
    display: flex;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 18px 42px rgba(15,31,74,.12);
    padding: 12px 20px 18px;
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: transform .25s ease, opacity .25s ease;
  }
  .kc-nav .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .kc-nav .nav-links li { width: 100%; }
  .kc-nav .nav-links a { display: block; padding: 13px 0; }
  .kc-nav .nav-links > li:last-child > a { text-align: center; margin-top: 8px; }
  .feature-section { padding: 0; gap: 0; }
  .feature-section.reverse .feat-quote-col, .feature-section.reverse .feat-ui-col { order: initial; }
  .feat-quote-col, .feat-ui-col { padding: 44px 22px; }
  .more-grid { grid-template-columns: 1fr; }
  .wf-job, .screen-item { align-items: flex-start; gap: 12px; flex-direction: column; }
  .wf-progress { width: 100%; }
  .progress-bar { flex: 1; width: auto; }
  .rep-kpis, .wf-stats, .screen-row { grid-template-columns: 1fr; }
  .bill-summary { grid-template-columns: 1fr; }
  .bill-table { min-width: 420px; }
  .mock-body { overflow-x: auto; }
  .main-section { padding: 48px 0; }
  .post-content { padding: 42px 0; }
}
.vc_row {
    margin-left: auto !important;
    margin-right: auto !important;
}
.kc-more-section{
  background: none !important;
}
.column-align-center{
  text-align: center !important;
}
.light-button .vc_btn3.vc_btn3-color-info{
  background-color:#00AEEF !important;
}
.dark-button-outline .vc_btn3.vc_btn3-color-primary.vc_btn3-style-outline{
    color: #1C3F8F !important;
    border-color: #1C3F8F !important;
    background-color: transparent !important;
}
.dark-button-outline .vc_btn3.vc_btn3-color-primary.vc_btn3-style-outline:active,
.dark-button-outline .vc_btn3.vc_btn3-color-primary.vc_btn3-style-outline:hover{
      color: #ffffff !important;
    border-color: #1C3F8F !important;
    background-color: #1C3F8F !important;
}