/* styles.css (UK-only + no PL toggle + equal buttons + yellow glow) */
:root{
  --bg:#07080b;
  --stroke:rgba(36,48,68,.60);

  --text:rgba(233,238,247,.94);
  --muted:rgba(168,178,196,.78);
  --muted2:rgba(127,138,160,.70);

  --accent:#f6c34b;
  --accent2:#ffd777;

  --r-xl:22px;
  --r-lg:18px;

  --container:1120px;
  --shadow:0 16px 40px rgba(0,0,0,.45);

  --glow-strong: 0 18px 40px rgba(246,195,75,.16);
  --glow-soft:   0 14px 30px rgba(246,195,75,.12);
  --focus: 0 0 0 3px rgba(246,195,75,.30);
}

*{box-sizing:border-box}
html{color-scheme:dark; scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:
    radial-gradient(1200px 800px at 15% 5%, rgba(246,195,75,.08), transparent 60%),
    radial-gradient(900px 600px at 85% 10%, rgba(255,215,119,.06), transparent 55%),
    radial-gradient(900px 700px at 50% 95%, rgba(70,120,255,.04), transparent 60%),
    var(--bg);
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

a{color:inherit; text-decoration:none}
button,input,textarea{font:inherit; color:inherit}
p{margin:0 0 12px}
h1,h2,h3{margin:0; line-height:1.15; letter-spacing:-0.02em}
.small{font-size:.93rem; color:var(--muted)}
.muted{color:var(--muted)}
.container{width:min(100% - 32px, var(--container)); margin-inline:auto}

a,button{-webkit-tap-highlight-color:transparent}
:focus-visible{outline:none; box-shadow:var(--focus); border-radius:12px}

/* Skip link */
.skip-link{
  position:absolute; left:16px; top:10px;
  padding:10px 14px;
  background:rgba(14,17,24,.92);
  border:1px solid var(--stroke);
  border-radius:12px;
  transform:translateY(-140%);
  transition:transform .18s ease;
  z-index:1000;
}
.skip-link:focus{transform:translateY(0)}

/* Header */
.site-header{
  position:sticky; top:0; z-index:100;
  background: rgba(7,8,11,.72);
  border-bottom:1px solid rgba(36,48,68,.55);
  backdrop-filter: blur(10px);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; padding:14px 0;
}
.brand{display:flex; align-items:center; gap:12px; min-width:0}
.brand-mark{
  width:40px; height:40px; border-radius:12px;
  display:grid; place-items:center;
  font-weight:900;
  background: linear-gradient(180deg, rgba(246,195,75,.25), rgba(246,195,75,.10));
  border:1px solid rgba(246,195,75,.35);
  box-shadow: 0 10px 25px rgba(246,195,75,.08);
}
/* Logo inside brand-mark */
.brand-logo{
  width:28px;
  height:28px;
  display:block;
  object-fit:contain;
}

.brand-text{display:flex; flex-direction:column; min-width:0}
.brand-name{font-weight:800; font-size:1rem; white-space:nowrap; overflow:hidden; text-overflow:ellipsis}
.brand-sub{font-size:.82rem; color:var(--muted); white-space:nowrap; overflow:hidden; text-overflow:ellipsis}

.site-nav{display:none; align-items:center; gap:16px}
.site-nav a{
  padding:10px 10px;
  border-radius:12px;
  color:var(--muted);
  border:1px solid transparent;
  transition: background .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease;
}
.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a:active{
  color:var(--text);
  background: rgba(255,255,255,.04);
  border-color: rgba(246,195,75,.22);
  box-shadow: var(--glow-soft);
}

.header-right{display:flex; align-items:center; gap:10px}
.trade-link{
  padding:8px 10px;
  border-radius:12px;
  border:1px solid rgba(36,48,68,.70);
  background: rgba(255,255,255,.02);
  color:var(--muted);
  white-space:nowrap;
  transition: background .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease;
}
.trade-link:hover,
.trade-link:focus-visible,
.trade-link:active{
  color:var(--text);
  border-color: rgba(246,195,75,.40);
  box-shadow: var(--glow-soft);
  background: rgba(255,255,255,.04);
}

.nav-toggle{
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid rgba(36,48,68,.70);
  background: rgba(255,255,255,.03);
  display:grid; place-items:center;
  cursor:pointer;
  transition: background .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.nav-toggle:hover,
.nav-toggle:focus-visible,
.nav-toggle:active{
  background: rgba(255,255,255,.06);
  border-color: rgba(246,195,75,.35);
  box-shadow: var(--glow-soft);
}

.mobile-nav[hidden]{display:none !important}
.mobile-nav{
  border-top:1px solid rgba(36,48,68,.55);
  background: rgba(7,8,11,.88);
}
.mobile-nav-inner{
  display:flex; flex-direction:column;
  gap:8px; padding:14px 0 18px;
}
.mobile-nav-inner a{
  padding:12px 12px;
  border-radius:14px;
  background: rgba(255,255,255,.02);
  border:1px solid rgba(36,48,68,.45);
  color:var(--muted);
  transition: background .18s ease, border-color .18s ease, box-shadow .18s ease, color .18s ease;
}
.mobile-nav-inner a:hover,
.mobile-nav-inner a:focus-visible,
.mobile-nav-inner a:active{
  color:var(--text);
  background: rgba(255,255,255,.04);
  border-color: rgba(246,195,75,.30);
  box-shadow: var(--glow-soft);
}

/* Buttons (equal + glow hover/touch) */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  height:44px;
  padding:0 16px;
  border-radius:14px;
  border:1px solid rgba(36,48,68,.85);
  font-weight:800;
  letter-spacing:-0.01em;
  cursor:pointer;
  user-select:none;
  transition: transform .10s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease, color .18s ease;
}
.btn:active{ transform: translateY(1px); }
.btn-block{ width:100%; }
.btn-lg{ height:48px; border-radius:16px; padding:0 18px; }

.btn-primary{
  background: var(--accent);
  color: #101217;
  border-color: rgba(246,195,75,.60);
  box-shadow: var(--glow-strong);
}
.btn-secondary{
  background: rgba(255,255,255,.04);
  color: var(--text);
}
.btn:hover,
.btn:focus-visible,
.btn:active{
  border-color: rgba(246,195,75,.55);
  box-shadow: var(--glow-soft);
}
.btn-primary:hover,
.btn-primary:focus-visible,
.btn-primary:active{
  background: var(--accent2);
  box-shadow: var(--glow-strong);
}

/* Hero + Panels */
.hero{ padding:34px 0 28px; }
.hero-inner{ display:grid; gap:18px; }
.eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.03);
  border:1px solid rgba(36,48,68,.55);
  color: var(--muted);
  font-size:.9rem;
  margin-bottom:14px;
}
#hero-title{
  font-size: clamp(1.85rem, 1.1rem + 2.8vw, 3.1rem);
  font-weight: 900;
  letter-spacing:-0.03em;
}

/* ==========================
   Rotating highlight (Hero)
   ========================== */
.rotator{
  margin-top: 12px;
  max-width: 60ch;
  padding: 14px;
  border-radius: var(--r-lg);
  border: 1px solid rgba(246,195,75,.22);
  background: linear-gradient(180deg, rgba(246,195,75,.08), rgba(255,255,255,.02));
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
}
.rotator-kicker{
  margin: 0 0 8px;
  font-size: .88rem;
  font-weight: 850;
  letter-spacing: -.01em;
  color: var(--accent2);
}
.rotator-text{
  margin: 0;
  color: var(--text);
  line-height: 1.45;

  /* stable height = no layout shift */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  min-height: calc(1.45em * 4);
}
.rotator.is-flash{
  animation: rotatorFlash 750ms ease;
}
@keyframes rotatorFlash{
  0%{
    border-color: rgba(246,195,75,.18);
    box-shadow: 0 10px 26px rgba(0,0,0,.35);
    filter: saturate(1);
  }
  35%{
    border-color: rgba(246,195,75,.60);
    box-shadow: var(--glow-strong);
    filter: saturate(1.15);
  }
  100%{
    border-color: rgba(246,195,75,.22);
    box-shadow: 0 12px 30px rgba(0,0,0,.35);
    filter: saturate(1);
  }
}

.hero-sub{
  margin-top:12px;
  color:var(--muted);
  font-size: clamp(1rem, .95rem + .4vw, 1.15rem);
  max-width:60ch;
}
.hero-note{
  margin-top:12px;
  padding:14px;
  border-radius: var(--r-lg);
  border:1px solid rgba(246,195,75,.22);
  background: linear-gradient(180deg, rgba(246,195,75,.10), rgba(255,255,255,.02));
}
.hero-note strong{ color: var(--accent2); }

.panels{
  margin-top:10px;
  padding:18px;
  border-radius: var(--r-xl);
  border:1px solid rgba(36,48,68,.75);
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.02));
  box-shadow: var(--shadow);
}
.panels-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:12px;
  padding-bottom:14px;
  border-bottom:1px solid rgba(36,48,68,.55);
  margin-bottom:14px;
}
.panels-title{ font-size:1.15rem; font-weight:900; }
.panels-sub{ color: var(--muted2); margin:0; font-size:.95rem; }
.panel-grid{ display:grid; gap:12px; }
.panel-card{
  border:1px solid rgba(36,48,68,.75);
  border-radius: var(--r-lg);
  background: rgba(255,255,255,.02);
  padding:14px;
}
.panel-name{ font-size:1.05rem; font-weight:900; margin-bottom:6px; }
.panel-desc{
  margin:0 0 12px;
  color: var(--muted);
  display:-webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow:hidden;
  min-height: 3.9em;
}
.panel-actions{ display:grid; gap:10px; }
.panels-footnote{ margin:12px 2px 0; color: var(--muted2); font-size:.92rem; }

/* Sections */
.section{ padding:34px 0; }
.section-head{ margin-bottom:18px; }
.section-head h2{ font-size: clamp(1.45rem, 1.15rem + 1.2vw, 2.05rem); font-weight: 900; }
.section-sub{ margin-top:10px; color: var(--muted); max-width:70ch; }

.tiles{ display:grid; grid-template-columns: 1fr; gap:12px; margin-top:14px; }
.tile{
  padding:16px;
  border-radius: var(--r-lg);
  border:1px solid rgba(36,48,68,.75);
  background: rgba(255,255,255,.02);
}
.tile h3{ font-size:1.06rem; font-weight:900; margin-bottom:8px; }
.tile p{ margin:0; color: var(--muted); }

.steps{
  margin:0; padding:0; list-style:none;
  display:grid; grid-template-columns:1fr; gap:12px;
}
.step{
  display:flex; gap:12px;
  padding:16px;
  border-radius: var(--r-lg);
  border:1px solid rgba(36,48,68,.75);
  background: rgba(255,255,255,.02);
}
.step-num{
  width:36px; height:36px;
  border-radius:14px;
  display:grid; place-items:center;
  font-weight:900;
  color:#101217;
  background: var(--accent);
  border:1px solid rgba(246,195,75,.60);
  flex:0 0 auto;
}
.step-body h3{ font-size:1.08rem; font-weight:900; }
.step-body p{ margin-top:6px; color: var(--muted); }

.pricing-box,
.existing-box,
.form-wrap,
.contact-box{
  padding:18px;
  border-radius: var(--r-xl);
  border:1px solid rgba(36,48,68,.75);
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.02));
  box-shadow: var(--shadow);
}

.existing-box{ display:grid; gap:12px; }
.existing-action{ display:flex; }

/* Form */
.enquiry{ margin-top:12px; }
.field-grid{ display:grid; gap:12px; }
.field-full{ grid-column: 1 / -1; }
.field label{ display:block; margin-bottom:6px; color: var(--muted); font-size:.95rem; }
input, textarea{
  width:100%;
  padding:12px;
  border-radius:14px;
  border:1px solid rgba(36,48,68,.75);
  background: rgba(0,0,0,.18);
  color: var(--text);
  outline:none;
}
input:focus, textarea:focus{ border-color: rgba(246,195,75,.55); box-shadow: var(--glow-soft); }
textarea{ resize: vertical; min-height: 140px; }
.form-footer{ display:flex; flex-wrap:wrap; align-items:center; gap:12px; margin-top:12px; }
.form-note{ margin:0; color: var(--muted); }
.form-fallback a{ color: var(--accent2); text-decoration: underline; text-underline-offset:3px; }

/* FAQ */
.faq{ display:flex; flex-direction:column; gap:10px; margin-top:14px; }
.faq-item{
  border:1px solid rgba(36,48,68,.75);
  border-radius: var(--r-lg);
  background: rgba(255,255,255,.02);
  overflow:hidden;
}
.faq-item summary{
  padding:14px 16px;
  cursor:pointer;
  list-style:none;
  font-weight:800;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::after{ content:"+"; color: var(--accent2); font-weight:900; font-size:1.25rem; line-height:1; }
.faq-item[open] summary::after{ content:"–"; }
.faq-body{ padding: 0 16px 14px; color: var(--muted); }
.faq-body p{ margin:0; }

/* Contact */
.contact-lines{ display:flex; flex-direction:column; gap:10px; }
.contact-line{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:12px;
  padding:12px;
  border-radius:14px;
  border:1px solid rgba(36,48,68,.75);
  background: rgba(7,8,11,.35);
}
.contact-label{ color: var(--muted); font-size:.92rem; }
.contact-link{
  color: var(--accent2);
  font-weight:900;
  text-decoration: underline;
  text-underline-offset:3px;
}
.contact-link:hover,
.contact-link:focus-visible,
.contact-link:active{
  text-decoration-thickness: 2px;
  text-shadow: 0 0 18px rgba(246,195,75,.22);
}

/* Footer */
.site-footer{
  padding:24px 0;
  border-top:1px solid rgba(36,48,68,.55);
  background: rgba(7,8,11,.65);
}
.footer-inner{ display:flex; flex-direction:column; gap:16px; }
.footer-brand{ font-weight:900; letter-spacing:-0.02em; margin:0; }

.footer-right{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.footer-links{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.footer-links a{
  padding:8px 10px;
  border-radius:12px;
  color:var(--muted);
  background: rgba(255,255,255,.02);
  border:1px solid rgba(36,48,68,.45);
  transition: background .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease;
}
.footer-links a:hover,
.footer-links a:focus-visible,
.footer-links a:active{
  color:var(--text);
  background: rgba(255,255,255,.04);
  border-color: rgba(246,195,75,.30);
  box-shadow: var(--glow-soft);
}

.footer-legal{ margin:0; max-width: 90ch; color: var(--muted); }
.footer-legal-note{ margin:0; color: var(--muted2); }

/* Responsive */
@media (min-width: 960px){
  .site-nav{ display:flex; }
  .nav-toggle{ display:none; }
  .mobile-nav{ display:none !important; }

  .hero-inner{ grid-template-columns: 1.05fr .95fr; align-items:start; gap:22px; }
  .panel-grid{ grid-template-columns: 1fr 1fr; }
  .tiles{ grid-template-columns: repeat(4, 1fr); }
  .steps{ grid-template-columns: 1fr 1fr 1fr; }

  .existing-box{ grid-template-columns: 1.2fr .8fr; align-items:center; }
  .field-grid{ grid-template-columns: 1fr 1fr; }

  .footer-inner{ flex-direction:row; align-items:flex-start; justify-content:space-between; }
  .footer-right{ align-items:flex-end; text-align:right; }
  .footer-links{ justify-content:flex-end; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *{ transition:none !important; }
  .rotator.is-flash{ animation:none !important; }
}
