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

  :root {
    --bg: #0a0805;
    --bg-2: #120d08;
    --text: #ffffff;
    --text-dim: #a69d93;
    --text-muted: #6b6258;
    --accent: #f97316;
    --accent-bright: #fb923c;
    --accent-glow: #fdba74;
    --accent-hot: #fde68a;
    --border: rgba(255,255,255,0.08);
    --card: rgba(255,255,255,0.025);
  }

  html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
  }
  html, body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  a { color: inherit; text-decoration: none; }
  img { max-width: 100%; display: block; }

  .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
  }

  /* NAV */
  nav.site {
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: 10;
    padding: 28px 0;
  }
  nav.site .inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
  }
  .logo-img {
    height: 38px;
    width: auto;
    display: block;
    filter: drop-shadow(0 0 12px rgba(249,115,22,0.15));
  }
  .footer-col .logo-img {
    height: 34px;
    margin-bottom: 16px;
  }

  .nav-center {
    display: flex;
    align-items: center;
    gap: 32px;
  }
  .nav-center a {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    transition: color 0.2s;
    font-weight: 500;
  }
  .nav-center a:hover { color: #fff; }

  .nav-right {
    display: flex;
    align-items: center;
    gap: 24px;
  }
  .nav-right > a {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
  }
  .btn-trial {
    background: linear-gradient(135deg, #f97316, #fb923c);
    color: #1a0d06;
    padding: 11px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(253,186,116,0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(249,115,22,0.25);
  }
  .btn-trial:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 30px rgba(249,115,22,0.4);
  }
  .btn-ghost {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
  }

  /* HERO */
  .hero {
    position: relative;
    padding: 180px 0 100px;
    text-align: center;
    overflow: hidden;
  }

  .pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(249,115,22,0.1);
    border: 1px solid rgba(249,115,22,0.3);
    color: #fed7aa;
    padding: 7px 14px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 28px;
  }
  .pill svg { width: 14px; height: 14px; }

  .hero h1 {
    font-size: clamp(38px, 4.6vw, 66px);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.08;
    margin-bottom: 16px;
    color: #fff;
  }
  .hero .sub {
    font-size: 16px;
    color: var(--text-dim);
    max-width: 520px;
    margin: 0 auto 30px;
    font-weight: 400;
  }

  /* BLACK HOLE / GLOW */
  .glow-stage {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    height: 580px;
  }
  .black-hole {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 1500px;
    height: 380px;
    pointer-events: none;
    z-index: 1;
  }
  .bh-glow-outer {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 1400px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center,
      rgba(253,186,116,0.7) 0%,
      rgba(249,115,22,0.45) 12%,
      rgba(194,65,12,0.22) 30%,
      rgba(124,45,18,0.1) 50%,
      transparent 70%);
    filter: blur(60px);
  }
  .bh-disk {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 1100px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center,
      #ffffff 0%,
      #fef3c7 4%,
      #fdba74 10%,
      #fb923c 20%,
      rgba(251,146,60,0.85) 35%,
      rgba(234,88,12,0.45) 60%,
      transparent 92%);
    filter: blur(10px);
  }
  .bh-disk-core {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 920px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(90deg,
      transparent 0%,
      rgba(255,255,255,0.4) 10%,
      #ffffff 32%,
      #ffffff 68%,
      rgba(255,255,255,0.4) 90%,
      transparent 100%);
    filter: blur(1.5px);
    box-shadow:
      0 0 60px rgba(255,255,255,0.8),
      0 0 120px rgba(253,186,116,0.6);
  }
  .bh-core {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: radial-gradient(circle, #0a0612 35%, rgba(10,6,18,0.5) 60%, transparent 85%);
  }

  .mockup { z-index: 2; }

  /* App mockup */
  .mockup {
    position: absolute;
    top: 200px;
    left: 50%;
    transform: translateX(-50%);
    width: 960px;
    background: linear-gradient(180deg, rgba(26,20,42,0.92), rgba(16,10,28,0.92));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(249,115,22,0.1);
    backdrop-filter: blur(20px);
  }
  .mockup-head {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    gap: 12px;
  }
  .mockup-search {
    flex: 1;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 6px;
    padding: 6px 10px;
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    display: flex;
    justify-content: space-between;
  }
  .mockup-search span.kbd {
    background: rgba(255,255,255,0.05);
    padding: 1px 5px;
    border-radius: 3px;
    font-size: 10px;
  }
  .mockup-body {
    display: grid;
    grid-template-columns: 180px 1fr 280px;
    min-height: 320px;
  }
  .mockup-side {
    border-right: 1px solid rgba(255,255,255,0.04);
    padding: 14px 10px;
  }
  .mockup-side .item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    font-size: 11px;
    color: rgba(255,255,255,0.55);
    border-radius: 5px;
    margin-bottom: 2px;
  }
  .mockup-side .item.active {
    background: rgba(255,255,255,0.04);
    color: #fff;
  }
  .mockup-side .item i {
    width: 12px; height: 12px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    display: inline-block;
  }
  .mockup-main {
    padding: 16px 20px;
    position: relative;
    border-right: 1px solid rgba(255,255,255,0.04);
  }
  .mockup-main h4 {
    font-size: 13px;
    color: rgba(255,255,255,0.9);
    font-weight: 600;
    margin-bottom: 10px;
  }
  .mockup-main p {
    font-size: 10px;
    color: rgba(255,255,255,0.5);
    margin: 4px 0 4px 14px;
    line-height: 1.55;
    position: relative;
  }
  .mockup-main p::before {
    content: '•';
    position: absolute;
    left: -10px;
    color: rgba(249,115,22,0.7);
  }
  .mockup-main.time-pick {
    padding: 20px 22px;
  }
  .mockup-main.time-pick p {
    margin: 0;
  }
  .mockup-main.time-pick p::before { content: none; }
  .time-slot {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    margin: 6px 0;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    transition: background .2s, border-color .2s;
  }
  .time-slot.selected {
    background: rgba(249,115,22,0.1);
    border-color: rgba(249,115,22,0.4);
  }
  .time-slot .ts-label {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    flex-shrink: 0;
    min-width: 60px;
  }
  .time-slot .ts-time {
    font-size: 10px;
    color: rgba(255,255,255,0.55);
    flex: 1;
  }
  .time-slot .ts-check {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    color: transparent;
  }
  .time-slot.selected .ts-check {
    background: #fb923c;
    border-color: #fb923c;
    color: #0a0612;
    font-weight: 700;
  }
  .ts-note {
    margin-top: 14px !important;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 9px !important;
    color: rgba(255,255,255,0.45) !important;
    font-style: italic;
    text-align: center;
    line-height: 1.4;
  }
  .play-btn {
    position: absolute;
    left: 50%;
    top: 58%;
    transform: translate(-50%,-50%);
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .play-btn::before {
    content: '';
    width: 0; height: 0;
    border-left: 12px solid #fff;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    margin-left: 3px;
  }

  .mockup-cal {
    padding: 16px;
  }
  .mockup-cal .cal-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 10px;
    font-weight: 600;
  }
  .cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    font-size: 10px;
    text-align: center;
  }
  .cal-grid .day {
    padding: 5px 0;
    color: rgba(255,255,255,0.55);
    border-radius: 3px;
  }
  .cal-grid .day.h {
    color: rgba(255,255,255,0.35);
    font-size: 9px;
  }
  .cal-grid .day.sel {
    background: var(--purple);
    color: #fff;
  }

  /* SECTION */
  section.feat-grid {
    padding: 140px 0 100px;
  }
  .feat-grid .grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px 32px;
    max-width: 1000px;
    margin: 0 auto;
  }
  .feat-grid .item h4 {
    font-size: 14px;
    font-weight: 600;
    margin: 16px 0 6px;
    color: #fff;
  }
  .feat-grid .item p {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.5;
  }
  .feat-grid .item .icon {
    width: 22px;
    height: 22px;
    color: #fed7aa;
  }

  /* AI SECTION */
  .ai-section {
    padding: 100px 0 120px;
    text-align: center;
    position: relative;
  }
  .ai-visual {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto 60px;
    height: 380px;
  }
  .ai-chat {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 520px;
    background: rgba(30,20,50,0.6);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    padding: 14px 18px;
    z-index: 5;
  }
  .ai-chat .q {
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    padding: 6px 0;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .ai-chat .q:last-child { border: none; padding-bottom: 0; }
  .ai-chat .q:first-child { padding-top: 0; }
  .ai-chat .q .arrow { color: #fed7aa; }
  .ai-beam {
    position: absolute;
    left: 50%;
    top: 70px;
    transform: translateX(-50%);
    width: 320px;
    height: 290px;
    background: linear-gradient(180deg,
      rgba(253,186,116,0.9) 0%,
      rgba(249,115,22,0.4) 40%,
      transparent 90%);
    clip-path: polygon(35% 0, 65% 0, 100% 100%, 0 100%);
    filter: blur(8px);
    opacity: 0.7;
  }
  .ai-beam-2 {
    position: absolute;
    left: 50%;
    top: 70px;
    transform: translateX(-50%);
    width: 200px;
    height: 280px;
    background: linear-gradient(180deg,
      rgba(255,255,255,0.95) 0%,
      rgba(253,186,116,0.6) 20%,
      transparent 80%);
    clip-path: polygon(40% 0, 60% 0, 100% 100%, 0 100%);
    filter: blur(4px);
  }
  .ai-grid-floor {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%) perspective(400px) rotateX(65deg);
    width: 900px;
    height: 200px;
    background-image:
      linear-gradient(rgba(249,115,22,0.25) 1px, transparent 1px),
      linear-gradient(90deg, rgba(249,115,22,0.25) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  }

  h2.section-title {
    font-size: clamp(32px, 4.5vw, 56px);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 20px;
  }
  .section-sub {
    font-size: 16px;
    color: var(--text-dim);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.55;
  }

  /* AI FEATURES */
  .ai-feat {
    padding: 80px 0 140px;
    text-align: center;
  }
  .ai-feat .title-group { margin-bottom: 70px; }
  .ai-feat .fl {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
  }
  .ai-feat .fl .item {
    padding: 0 8px;
  }
  .ai-feat .fl .icon {
    width: 26px; height: 26px;
    color: #fed7aa;
    margin: 0 auto 14px;
  }
  .ai-feat .fl .item h5 {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
  }
  .ai-feat .fl .item p {
    font-size: 12px;
    color: var(--text-dim);
    line-height: 1.5;
  }

  /* BRAIN SECTION */
  .brain {
    padding: 100px 0 140px;
    text-align: center;
    position: relative;
  }
  .brain-beam {
    position: relative;
    width: 220px;
    height: 180px;
    margin: 0 auto 40px;
  }
  .brain-beam::before {
    content:'';
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 180px;
    height: 180px;
    background: linear-gradient(180deg,
      rgba(255,255,255,0.9) 0%,
      rgba(254,215,170,0.5) 30%,
      transparent 90%);
    clip-path: polygon(45% 0, 55% 0, 100% 100%, 0 100%);
    filter: blur(6px);
  }
  .dual-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 920px;
    margin: 70px auto 0;
  }
  .dual-cards .card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 32px;
    text-align: left;
    min-height: 180px;
    position: relative;
    overflow: hidden;
  }
  .dual-cards .card h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-top: 100px;
  }
  .dual-cards .card h4 span {
    color: var(--text-dim);
    font-weight: 400;
  }

  /* NEVER LOSE */
  .never-lose {
    padding: 120px 0;
    text-align: center;
  }
  .never-lose .sub-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 760px;
    margin: 60px auto 0;
  }
  .never-lose .sub-grid .item h5 {
    font-size: 14px;
    font-weight: 600;
    margin: 14px 0 8px;
  }
  .never-lose .sub-grid .item p {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.55;
  }
  .never-lose .sub-grid .icon {
    width: 24px;
    height: 24px;
    color: #fed7aa;
    margin: 0 auto;
  }

  /* MEETINGS */
  .meetings {
    padding: 120px 0 140px;
    text-align: center;
  }
  .meetings-visual {
    width: 100%;
    max-width: 900px;
    height: 260px;
    margin: 50px auto 0;
    background-image:
      linear-gradient(rgba(249,115,22,0.1) 1px, transparent 1px);
    background-size: 1px 20px;
    mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
  }

  /* INTEGRATIONS */
  .integrations {
    padding: 120px 0 160px;
    text-align: center;
    position: relative;
  }
  .int-visual {
    width: 420px;
    height: 280px;
    margin: 60px auto 0;
    position: relative;
  }

  /* FAQ */
  .faq {
    padding: 100px 0 120px;
    text-align: center;
  }
  .faq-list {
    max-width: 820px;
    margin: 60px auto 0;
    text-align: left;
  }
  .faq-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color .25s, background .25s;
  }
  .faq-item:hover {
    border-color: rgba(249,115,22,0.2);
  }
  .faq-item[open] {
    border-color: rgba(249,115,22,0.3);
    background: rgba(249,115,22,0.03);
  }
  .faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 56px 22px 26px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    position: relative;
    line-height: 1.4;
    transition: color .2s;
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary::after {
    content: '+';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: rgba(249,115,22,0.1);
    border: 1px solid rgba(249,115,22,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fb923c;
    font-size: 18px;
    font-weight: 400;
    transition: transform .25s, background .25s;
  }
  .faq-item[open] summary::after {
    content: '−';
    transform: translateY(-50%) rotate(180deg);
    background: rgba(249,115,22,0.2);
  }
  .faq-item summary:hover { color: #fed7aa; }
  .faq-item p {
    padding: 0 26px 24px 26px;
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.7;
    margin: 0;
  }
  .faq-item p a {
    color: #fb923c;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(249,115,22,0.4);
    text-underline-offset: 3px;
  }
  .faq-item p a:hover { color: #fed7aa; }
  .faq-item p strong {
    color: #fff;
    font-weight: 700;
  }

  /* FOOTER MAP (small compact) */
  .footer-map {
    margin-top: 16px;
    max-width: 280px;
    border: 1px solid rgba(249,115,22,0.2);
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255,255,255,0.02);
  }
  .footer-map iframe {
    width: 100%;
    height: 140px;
    border: 0;
    display: block;
    filter: grayscale(0.2) brightness(0.9);
  }
  .footer-map-link {
    display: block;
    padding: 8px 12px;
    font-size: 11px !important;
    font-weight: 600;
    color: #fb923c !important;
    text-align: center;
    background: rgba(249,115,22,0.06);
    border-top: 1px solid rgba(249,115,22,0.2);
    letter-spacing: 0.02em;
  }
  .footer-map-link:hover { color: #fdba74 !important; background: rgba(249,115,22,0.1); }
  .int-visual .orb {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249,115,22,0.3), transparent 70%);
    filter: blur(20px);
  }
  .int-visual .ring {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 240px;
    height: 240px;
    border: 1px solid rgba(249,115,22,0.15);
    border-radius: 50%;
  }
  .int-visual .ring.r2 {
    width: 340px;
    height: 340px;
  }

  /* SETMORE BOOKING IFRAME */
  .setmore-wrap {
    max-width: 1100px;
    margin: 60px auto 0;
    background: linear-gradient(180deg, rgba(249,115,22,0.08), rgba(249,115,22,0.02));
    border: 1px solid rgba(249,115,22,0.22);
    border-radius: 16px;
    padding: 10px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.04) inset;
  }
  .setmore-frame {
    width: 100%;
    height: 820px;
    border: 0;
    border-radius: 10px;
    background: #fff;
    display: block;
  }
  .book-fallback {
    text-align: center;
    margin-top: 24px;
    font-size: 13px;
    color: var(--text-muted);
  }
  .book-fallback a {
    color: var(--accent-bright);
    text-decoration: underline;
  }
  .book-fallback a:hover { color: #fed7aa; }

  /* POSTCODES */
  .postcodes {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    max-width: 600px;
    margin: 40px auto 20px;
  }
  .pc-chip {
    background: rgba(249,115,22,0.08);
    border: 1px solid rgba(249,115,22,0.25);
    color: #fed7aa;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
  }

  /* ORB LABEL */
  .orb-label {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    z-index: 2;
  }
  .int-visual .orb {
    background: radial-gradient(circle, rgba(249,115,22,0.5), rgba(249,115,22,0.15) 50%, transparent 80%);
    filter: blur(12px);
  }

  /* FOOTER */
  footer {
    padding: 80px 0 40px;
    color: var(--text-muted);
    font-size: 13px;
    border-top: 1px solid var(--border);
    margin-top: 40px;
    background: linear-gradient(180deg, transparent, rgba(249,115,22,0.03));
  }
  .footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--border);
  }
  .footer-col .logo {
    margin-bottom: 16px;
  }
  .footer-col h5 {
    font-size: 13px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  .footer-col a {
    display: block;
    color: var(--text-dim);
    font-size: 14px;
    padding: 4px 0;
    transition: color 0.2s;
  }
  .footer-col a:hover { color: #fff; }
  .foot-p {
    color: var(--text-dim);
    font-size: 13px;
    line-height: 1.6;
    padding: 3px 0;
  }
  .footer-bottom {
    text-align: center;
    padding-top: 30px;
    font-size: 12px;
    color: var(--text-muted);
  }

  /* BG stars */
  .stars {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
      radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,0.4), transparent),
      radial-gradient(1px 1px at 60% 70%, rgba(255,255,255,0.3), transparent),
      radial-gradient(1px 1px at 80% 20%, rgba(255,255,255,0.35), transparent),
      radial-gradient(1px 1px at 40% 80%, rgba(255,255,255,0.25), transparent),
      radial-gradient(1px 1px at 15% 60%, rgba(255,255,255,0.3), transparent),
      radial-gradient(1px 1px at 90% 90%, rgba(255,255,255,0.2), transparent);
  }

  section, .hero, nav.site { position: relative; z-index: 1; }

  /* ========================================
     MOBILE / TABLET RESPONSIVE
     ======================================== */

  /* Tablet (≤1024px) */
  @media (max-width: 1024px) {
    nav.site .inner { padding: 0 28px; }
    .nav-center { gap: 22px; }
    .nav-center a { font-size: 13px; }
    .container { padding: 0 28px; }
    .hero { padding: 150px 0 80px; }
    .glow-stage { max-width: 900px; height: 520px; }
    .mockup { width: 760px; }
    .black-hole { width: 1100px; }
    .feat-grid .grid { grid-template-columns: repeat(3, 1fr); gap: 40px 28px; }
    .ai-feat .fl { grid-template-columns: repeat(2, 1fr) !important; gap: 40px 24px; }
    .dual-cards { grid-template-columns: 1fr 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  }

  /* Small tablet / large phone (≤820px) */
  @media (max-width: 820px) {
    /* Nav — hamburger-less: hide center links, show compact right */
    nav.site { padding: 20px 0; }
    nav.site .inner { padding: 0 20px; }
    .nav-center { display: none; }
    .nav-right { gap: 12px; }
    .nav-right .btn-ghost { display: none; }
    .btn-trial { padding: 9px 14px; font-size: 13px; }
    .logo-img { height: 32px; }

    /* Hero */
    .hero { padding: 120px 0 60px; }
    .hero h1 { font-size: clamp(32px, 7vw, 48px); }
    .hero .sub { font-size: 15px; padding: 0 10px; }
    .pill { font-size: 12px; padding: 6px 12px; margin-bottom: 22px; }

    /* Glow + mockup */
    .glow-stage { max-width: 700px; height: 440px; margin: 10px auto 0; }
    .black-hole { width: 900px; height: 320px; top: 0; }
    .bh-glow-outer { width: 900px; height: 520px; }
    .bh-disk { width: 700px; height: 110px; }
    .bh-disk-core { width: 580px; }
    .mockup { width: 90%; max-width: 640px; top: 140px; }
    .mockup-head { padding: 8px 10px; }
    .mockup-body { min-height: 260px; }

    /* Section titles */
    .section-title, h2.section-title { font-size: clamp(26px, 5vw, 40px) !important; }
    .section-sub { font-size: 14px; padding: 0 10px; }

    /* Services grid → 2 cols */
    section.feat-grid { padding: 80px 0 60px; }
    .feat-grid .grid { grid-template-columns: repeat(2, 1fr); gap: 34px 20px; }
    .feat-grid .item { padding: 0; }

    /* Customer types → 2 cols */
    .ai-feat { padding: 40px 0 80px; }
    .ai-feat .fl { grid-template-columns: repeat(2, 1fr) !important; gap: 36px 20px; }

    /* Dual cards → stacked */
    .brain { padding: 60px 0 80px; }
    .dual-cards { grid-template-columns: 1fr; gap: 16px; margin-top: 50px; }
    .dual-cards .card { padding: 26px; min-height: auto; }
    .dual-cards .card h4 { margin-top: 40px; font-size: 15px; }

    /* Never lose sub-grid → stacked */
    .never-lose { padding: 80px 0; }
    .never-lose .sub-grid { grid-template-columns: 1fr; gap: 44px; max-width: 440px; }

    /* Meetings / booking */
    .meetings { padding: 80px 0 90px; }
    .setmore-wrap { margin: 40px auto 0; padding: 8px; border-radius: 14px; }
    .setmore-frame { height: 780px; }

    /* Integrations / area */
    .integrations { padding: 80px 0 100px; }
    .int-visual { width: 320px; height: 240px; }
    .int-visual .ring { width: 200px; height: 200px; }
    .int-visual .ring.r2 { width: 280px; height: 280px; }
    .postcodes { gap: 10px; max-width: 360px; margin: 30px auto 10px; }
    .pc-chip { padding: 8px 16px; font-size: 14px; }
    .footer-map { max-width: 100%; }

    /* FAQ */
    .faq { padding: 70px 0 80px; }
    .faq-list { margin-top: 40px; }
    .faq-item summary { padding: 18px 48px 18px 20px; font-size: 14px; }
    .faq-item summary::after { right: 18px; width: 24px; height: 24px; font-size: 16px; }
    .faq-item p { padding: 0 20px 20px 20px; font-size: 13.5px; }

    /* AI section beam */
    .ai-section { padding: 60px 0 80px; }
    .ai-visual { height: 300px; }
    .ai-chat { width: 90%; max-width: 440px; }
    .ai-chat .q { font-size: 11px; flex-wrap: wrap; }

    /* Footer */
    footer { padding: 60px 0 30px; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px 24px; padding-bottom: 40px; }
    .footer-col .logo { margin-bottom: 12px; }
    .footer-col:first-child { grid-column: 1 / -1; }
    .footer-col h5 { font-size: 12px; }
    .footer-col a, .foot-p { font-size: 13px; }

    /* Bg stars subtler */
    .stars { opacity: 0.6; }
  }

  /* Phone (≤480px) */
  @media (max-width: 480px) {
    .container { padding: 0 20px; }
    nav.site .inner { padding: 0 16px; }
    .logo-img { height: 28px; }
    .btn-trial { padding: 8px 12px; font-size: 12px; }

    /* Hero */
    .hero { padding: 100px 0 40px; }
    .hero h1 { font-size: 30px; line-height: 1.1; }
    .hero .sub { font-size: 14px; margin-bottom: 26px; }

    /* Glow + mockup shrink further */
    .glow-stage { height: 360px; }
    .black-hole { width: 700px; height: 260px; }
    .bh-glow-outer { width: 700px; height: 420px; }
    .bh-disk { width: 520px; height: 80px; }
    .bh-disk-core { width: 440px; }
    .bh-core { width: 80px; height: 80px; }
    .mockup { width: 94%; top: 110px; border-radius: 10px; }
    .mockup-head { padding: 7px 8px; }
    .mockup-search { font-size: 10px; padding: 5px 8px; }
    .mockup-body { grid-template-columns: 100px 1fr; min-height: 200px; }
    .mockup-cal { display: none; }
    .mockup-side { padding: 10px 6px; }
    .mockup-side .item { font-size: 10px; padding: 5px 8px; }
    .mockup-main { padding: 12px 14px; }
    .mockup-main h4 { font-size: 11px; }
    .mockup-main p { font-size: 9px; }

    /* Services → 1 col */
    section.feat-grid { padding: 60px 0 40px; }
    .feat-grid .grid { grid-template-columns: 1fr; gap: 28px; max-width: 360px; margin: 0 auto; }
    .feat-grid .item { text-align: left; }
    .feat-grid .item h4 { font-size: 15px; }
    .feat-grid .item p { font-size: 13px; }

    /* Customer types → 1 col */
    .ai-feat { padding: 30px 0 60px; }
    .ai-feat .fl { grid-template-columns: 1fr !important; gap: 30px; max-width: 320px; margin: 0 auto; }
    .title-group { margin-bottom: 50px; }

    /* Section titles */
    .section-title, h2.section-title { font-size: 26px !important; line-height: 1.15; }
    .section-sub { font-size: 13.5px; }
    .section-sub br { display: none; }

    /* Brain / Why */
    .brain { padding: 50px 0 60px; }
    .brain-beam { width: 160px; height: 140px; margin-bottom: 30px; }
    .dual-cards .card h4 { font-size: 14px; margin-top: 30px; }

    /* Meetings / booking */
    .meetings { padding: 60px 0 70px; }
    .setmore-wrap { margin: 30px auto 0; padding: 6px; border-radius: 12px; }
    .setmore-frame { height: 1000px; }
    .book-fallback { font-size: 12px; padding: 0 14px; }

    /* Area */
    .integrations { padding: 60px 0 80px; }
    .postcodes { gap: 8px; max-width: 300px; }
    .pc-chip { padding: 7px 14px; font-size: 13px; }
    .int-visual { width: 260px; height: 200px; }
    .int-visual .ring { width: 160px; height: 160px; }
    .int-visual .ring.r2 { width: 230px; height: 230px; }
    .footer-map { max-width: 100%; margin-top: 14px; }
    .footer-map iframe { height: 160px; }

    /* AI section */
    .ai-section { padding: 40px 0 60px; }
    .ai-visual { height: 260px; margin-bottom: 40px; }
    .ai-chat { padding: 10px 12px; }
    .ai-chat .q { font-size: 10px; padding: 5px 0; }

    /* Footer */
    footer { padding: 50px 0 24px; margin-top: 20px; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px 20px; padding-bottom: 30px; }
    .footer-col:first-child { grid-column: 1 / -1; text-align: center; }
    .footer-col:first-child .logo { justify-content: center; }
    .footer-col h5 { font-size: 11px; margin-bottom: 12px; }
    .footer-col a, .foot-p { font-size: 12px; }
    .footer-bottom { font-size: 11px; padding: 20px 16px 0; }
  }
/* ========================================
   INNER PAGES (service + area pages)
   ======================================== */

.inner-hero {
  padding: 170px 0 70px;
  text-align: center;
}
.inner-hero h1 {
  font-size: clamp(36px, 4.8vw, 62px) !important;
  line-height: 1.1 !important;
  margin-bottom: 20px;
}
.inner-hero .sub {
  max-width: 680px;
  margin: 0 auto 36px;
  font-size: 17px;
  line-height: 1.6;
}
.inner-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 12px;
}
.btn-trial-lg {
  padding: 14px 28px !important;
  font-size: 15px !important;
}
.btn-outline {
  display: inline-block;
  padding: 13px 26px;
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  transition: border-color .2s, background .2s;
}
.btn-outline:hover {
  border-color: rgba(249,115,22,0.5);
  background: rgba(249,115,22,0.08);
}

.inner-body {
  padding: 60px 0 80px;
}
.content-wrap {
  max-width: 800px;
  margin: 0 auto;
}
.content-wrap h2 {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700;
  color: #fff;
  margin: 44px 0 16px;
  letter-spacing: -0.01em;
}
.content-wrap h2:first-child {
  margin-top: 0;
}
.content-wrap h3 {
  font-size: 18px;
  font-weight: 600;
  color: #fed7aa;
  margin: 28px 0 12px;
}
.content-wrap p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-dim);
  margin-bottom: 14px;
}
.content-wrap strong {
  color: #fff;
  font-weight: 600;
}
.content-wrap a {
  color: #fb923c;
  text-decoration: underline;
  text-decoration-color: rgba(249,115,22,0.35);
  text-underline-offset: 3px;
}
.content-wrap a:hover {
  color: #fed7aa;
}
.content-wrap ul {
  margin: 14px 0 20px 0;
  padding-left: 0;
  list-style: none;
}
.content-wrap ul li {
  position: relative;
  padding: 6px 0 6px 22px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-dim);
}
.content-wrap ul li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 15px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fb923c;
}
.content-wrap ul.check-list li {
  padding-left: 28px;
}
.content-wrap ul.check-list li::before {
  content: '✓';
  background: transparent;
  width: auto;
  height: auto;
  top: 6px;
  left: 4px;
  color: #fb923c;
  font-weight: 700;
  font-size: 14px;
}

/* PRICE CARD */
.inner-pricing {
  padding: 20px 0 80px;
}
.price-card {
  max-width: 860px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(249,115,22,0.08), rgba(251,146,60,0.03));
  border: 1px solid rgba(249,115,22,0.3);
  border-radius: 18px;
  padding: 40px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(249,115,22,0.08);
}
.price-card-left {
  flex: 1;
}
.price-card-left .pill {
  margin-bottom: 12px;
}
.price-card-left h3 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.price-card-left p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.55;
  margin: 0;
}
.price-card-right {
  text-align: right;
  flex-shrink: 0;
}
.big-price {
  font-size: 52px;
  font-weight: 800;
  color: #fb923c;
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 16px;
}

/* INNER FAQ (reuse .faq styles but with less top padding) */
.inner-faq {
  padding: 60px 0 80px;
}

/* RELATED SERVICES */
.related-services {
  padding: 60px 0 80px;
  text-align: center;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 860px;
  margin: 50px auto 0;
}
.related-card {
  display: block;
  padding: 26px 28px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  text-align: left;
  transition: border-color .25s, background .25s, transform .25s;
  position: relative;
}
.related-card:hover {
  border-color: rgba(249,115,22,0.3);
  background: rgba(249,115,22,0.03);
  transform: translateY(-2px);
}
.related-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.related-card p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.5;
  margin: 0;
  padding-right: 30px;
}
.related-card .arrow {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: #fb923c;
  font-size: 20px;
  transition: transform .25s;
}
.related-card:hover .arrow {
  transform: translateY(-50%) translateX(4px);
}

/* FINAL CTA */
.final-cta {
  padding: 80px 0 120px;
  text-align: center;
  background: linear-gradient(180deg, transparent, rgba(249,115,22,0.04));
}
.final-cta .section-title {
  font-size: clamp(28px, 3.6vw, 42px);
}

/* Inner page mobile */
@media (max-width: 820px) {
  .inner-hero { padding: 130px 0 50px; }
  .inner-hero h1 { font-size: clamp(28px, 6vw, 44px) !important; }
  .inner-hero .sub { font-size: 15px; padding: 0 12px; }
  .inner-body { padding: 40px 0 60px; }
  .content-wrap { padding: 0 6px; }
  .content-wrap h2 { font-size: 22px; margin-top: 34px; }
  .content-wrap h3 { font-size: 16px; }
  .content-wrap p, .content-wrap ul li { font-size: 14.5px; }
  .price-card {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
    gap: 20px;
  }
  .price-card-right { text-align: center; }
  .big-price { font-size: 44px; }
  .related-grid { grid-template-columns: 1fr; }
  .final-cta { padding: 60px 0 90px; }
}

@media (max-width: 480px) {
  .inner-hero { padding: 110px 0 40px; }
  .inner-hero h1 { font-size: 28px !important; line-height: 1.15 !important; }
  .inner-hero .sub { font-size: 14px; }
  .inner-cta { flex-direction: column; width: 100%; padding: 0 16px; }
  .inner-cta .btn-trial-lg,
  .inner-cta .btn-outline { width: 100%; text-align: center; }
  .inner-body { padding: 30px 0 50px; }
  .content-wrap h2 { font-size: 20px; margin-top: 28px; }
  .content-wrap p, .content-wrap ul li { font-size: 14px; }
  .price-card { padding: 26px 18px; border-radius: 14px; }
  .price-card-left h3 { font-size: 18px; }
  .big-price { font-size: 38px; }
  .related-card { padding: 20px 22px; }
  .related-card p { padding-right: 24px; font-size: 12.5px; }
}

/* Homepage service cards as clickable links */
.feat-grid .grid a.item {
  display: block;
  color: inherit;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 14px;
  padding: 26px 24px;
  background: rgba(255,255,255,0.02);
  transition: border-color .25s, background .25s, transform .25s;
}
.feat-grid .grid a.item:hover {
  border-color: rgba(249,115,22,0.3);
  background: rgba(249,115,22,0.04);
  transform: translateY(-2px);
}

/* WHY MORHEAT — 3 STEP PROCESS */
.why-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1080px;
  margin: 60px auto 0;
  text-align: left;
}
.why-step {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 36px 32px;
  position: relative;
  transition: border-color .25s, background .25s, transform .25s;
}
.why-step:hover {
  border-color: rgba(249,115,22,0.3);
  background: rgba(249,115,22,0.03);
  transform: translateY(-3px);
}
.why-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, rgba(249,115,22,0.18), rgba(251,146,60,0.08));
  border: 1px solid rgba(249,115,22,0.4);
  border-radius: 12px;
  color: #fb923c;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 22px;
  box-shadow: 0 0 24px rgba(249,115,22,0.15);
}
.why-step h3 {
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.why-step p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
  margin: 0;
}

/* mobile */
@media (max-width: 820px) {
  .why-steps { grid-template-columns: 1fr; gap: 16px; max-width: 480px; margin-top: 50px; }
  .why-step { padding: 28px 26px; }
  .why-num { width: 42px; height: 42px; margin-bottom: 18px; font-size: 13px; }
  .why-step h3 { font-size: 17px; }
}
