/* =========================================================
   Planellio marketing site theme
   UK English copy, dark gradient, modern cards, clean spacing
   Save as: /assets/styles.css
   ========================================================= */

/* Base */
:root{
  --bg0:#070816;
  --bg1:#0a0b22;
  --card:#0b0d25;
  --card2:#0c1030;
  --line:rgba(255,255,255,.10);
  --soft:rgba(255,255,255,.06);

  --text:#eef1ff;
  --muted:rgba(238,241,255,.72);
  --muted2:rgba(238,241,255,.55);

  --brand1:#7b61ff;
  --brand2:#00d1ff;
  --brand3:#35ff9e;
  --brand4:#ffcc66;

  --grad:linear-gradient(135deg, rgba(123,97,255,.95), rgba(0,209,255,.65) 45%, rgba(53,255,158,.35) 100%);
  --grad2:linear-gradient(135deg, rgba(123,97,255,.35), rgba(0,209,255,.22) 45%, rgba(53,255,158,.18) 100%);
  --glow:0 0 0 1px rgba(123,97,255,.25), 0 18px 55px rgba(12,10,40,.85);
  --shadow:0 18px 55px rgba(7,8,22,.85);

  --radius:22px;
  --radius2:16px;

  --max:1180px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Helvetica Neue", "Noto Sans", "Liberation Sans", sans-serif;
  color:var(--text);
  background:
    radial-gradient(1200px 600px at 20% -10%, rgba(123,97,255,.28), transparent 60%),
    radial-gradient(1000px 520px at 80% 0%, rgba(0,209,255,.18), transparent 55%),
    radial-gradient(900px 520px at 70% 90%, rgba(53,255,158,.10), transparent 55%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
  overflow-x:hidden;
}

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

.container{
  width:100%;
  max-width:var(--max);
  margin:0 auto;
  padding:0 20px;
}

.skip{
  position:absolute;
  left:-9999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.skip:focus{
  left:20px;
  top:20px;
  width:auto;
  height:auto;
  padding:10px 12px;
  border-radius:12px;
  background:rgba(255,255,255,.10);
  border:1px solid var(--line);
}

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(14px);
  background: rgba(7,8,22,.68);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:190px;
}
.brand img{
  width:34px;
  height:34px;
  border-radius:12px;
  box-shadow:0 10px 24px rgba(123,97,255,.25);
}
.brand .brand-text{
  line-height:1.1;
}
.brand .brand-text strong{
  display:block;
  letter-spacing:.2px;
  font-weight:800;
}
.brand .brand-text span{
  display:block;
  color:var(--muted2);
  font-size:12px;
}

.nav{
  display:flex;
  align-items:center;
  gap:14px;
}
.nav a{
  color:var(--muted);
  font-size:14px;
  padding:10px 10px;
  border-radius:12px;
  transition:all .2s ease;
}
.nav a:hover{
  color:var(--text);
  background:rgba(255,255,255,.06);
}

.header-cta{
  display:flex;
  align-items:center;
  gap:10px;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:11px 14px;
  border-radius:999px;
  font-weight:750;
  letter-spacing:.2px;
  font-size:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  white-space:nowrap;
}
.btn:hover{
  transform:translateY(-1px);
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.18);
}
.btn-primary{
  background:var(--grad);
  border-color:rgba(123,97,255,.45);
  box-shadow:0 16px 34px rgba(123,97,255,.22);
  color:#081022;
}
.btn-primary:hover{
  box-shadow:0 18px 44px rgba(123,97,255,.30);
}
.btn-ghost{
  background:transparent;
  border-color:rgba(255,255,255,.14);
}
.btn-small{
  padding:9px 12px;
  font-size:13px;
}

/* Hero */
.hero{
  padding:54px 0 18px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:26px;
  align-items:stretch;
}
.hero-copy{
  border-radius:var(--radius);
  padding:26px 24px;
  background:
    radial-gradient(700px 350px at 20% 10%, rgba(123,97,255,.20), transparent 55%),
    radial-gradient(600px 300px at 85% 20%, rgba(0,209,255,.14), transparent 55%),
    rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  box-shadow:var(--shadow);
  position:relative;
  overflow:hidden;
}
.kicker{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding:7px 10px;
  border-radius:999px;
  font-size:12px;
  color:rgba(238,241,255,.78);
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
}
.kicker i{
  width:8px;
  height:8px;
  border-radius:99px;
  background:rgba(53,255,158,.9);
  box-shadow:0 0 0 6px rgba(53,255,158,.12);
}

.hero h1{
  margin:14px 0 10px;
  font-size:44px;
  line-height:1.06;
  letter-spacing:-.6px;
}
.hero p{
  margin:0;
  color:var(--muted);
  font-size:16px;
  line-height:1.6;
  max-width:58ch;
}
.hero-actions{
  display:flex;
  gap:10px;
  margin-top:18px;
  flex-wrap:wrap;
}
.hero-meta{
  margin-top:14px;
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  color:var(--muted2);
  font-size:13px;
}
.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:7px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
}

.hero-visual{
  border-radius:var(--radius);
  padding:14px;
  background:
    radial-gradient(700px 350px at 20% 10%, rgba(123,97,255,.16), transparent 55%),
    radial-gradient(600px 300px at 85% 20%, rgba(0,209,255,.12), transparent 55%),
    rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.10);
  box-shadow:var(--shadow);
  overflow:hidden;
  position:relative;
}
.hero-visual .frame{
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.18);
  overflow:hidden;
}
.hero-visual .frame img{
  width:100%;
  height:auto;
}
.hero-visual .badge-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  padding:12px 6px 0;
}
.badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:16px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  color:rgba(238,241,255,.85);
  font-size:13px;
}
.badge strong{color:var(--text)}
.badge .dot{
  width:10px;
  height:10px;
  border-radius:99px;
  background:rgba(123,97,255,.9);
  box-shadow:0 0 0 6px rgba(123,97,255,.14);
}
.badge .dot.cyan{
  background:rgba(0,209,255,.95);
  box-shadow:0 0 0 6px rgba(0,209,255,.12);
}
.badge .dot.green{
  background:rgba(53,255,158,.95);
  box-shadow:0 0 0 6px rgba(53,255,158,.12);
}

/* Sections */
.section{
  padding:26px 0;
}
.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin-bottom:16px;
}
.section-head h2{
  margin:0;
  font-size:26px;
  letter-spacing:-.2px;
}
.section-head p{
  margin:0;
  color:var(--muted);
  max-width:70ch;
  line-height:1.55;
  font-size:14px;
}

/* Cards and grids */
.grid-3{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
}
.grid-4{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:14px;
}
.card{
  border-radius:var(--radius2);
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  padding:16px;
  box-shadow:0 16px 45px rgba(7,8,22,.65);
}
.card h3{
  margin:12px 0 8px;
  font-size:16px;
}
.card p{
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.55;
}
.icon{
  width:42px;
  height:42px;
  border-radius:14px;
  background:var(--grad2);
  border:1px solid rgba(123,97,255,.25);
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 16px 35px rgba(123,97,255,.10);
}
.icon img{
  width:22px;
  height:22px;
}

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  align-items:stretch;
}
.panel{
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(650px 320px at 20% 10%, rgba(123,97,255,.15), transparent 55%),
    radial-gradient(520px 260px at 85% 20%, rgba(0,209,255,.10), transparent 55%),
    rgba(255,255,255,.03);
  box-shadow:var(--shadow);
  padding:18px;
}
.panel h3{
  margin:0 0 10px;
  font-size:18px;
}
.panel p{
  margin:0 0 12px;
  color:var(--muted);
  line-height:1.6;
  font-size:14px;
}
.panel ul{
  margin:0;
  padding:0 0 0 18px;
  color:var(--muted);
  line-height:1.65;
  font-size:14px;
}
.panel img{
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  margin-top:14px;
  background:rgba(0,0,0,.18);
}

/* Pricing */
.pricing{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
}
.price-card{
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  padding:18px;
  box-shadow:var(--shadow);
  position:relative;
  overflow:hidden;
}
.price-card.featured{
  background:
    radial-gradient(700px 350px at 20% 10%, rgba(123,97,255,.20), transparent 55%),
    radial-gradient(600px 300px at 85% 20%, rgba(0,209,255,.14), transparent 55%),
    rgba(255,255,255,.04);
  border-color:rgba(123,97,255,.30);
  box-shadow:0 0 0 1px rgba(123,97,255,.22), 0 22px 70px rgba(123,97,255,.14);
}
.price-card h3{
  margin:0;
  font-size:18px;
}
.price{
  margin:10px 0 6px;
  font-size:34px;
  font-weight:900;
  letter-spacing:-.4px;
}
.price small{
  font-size:14px;
  color:var(--muted2);
  font-weight:700;
}
.price-card p{
  margin:0 0 12px;
  color:var(--muted);
  line-height:1.6;
  font-size:14px;
}
.price-card ul{
  margin:0;
  padding:0 0 0 18px;
  color:var(--muted);
  line-height:1.65;
  font-size:14px;
}
.ribbon{
  position:absolute;
  top:14px;
  right:14px;
  padding:7px 10px;
  border-radius:999px;
  background:rgba(53,255,158,.14);
  border:1px solid rgba(53,255,158,.35);
  color:rgba(238,241,255,.90);
  font-size:12px;
  font-weight:800;
}

/* Logos strip */
.logos{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  padding:14px 0 4px;
  opacity:.9;
}
.logos img{
  max-height:30px;
  width:auto;
  filter:grayscale(1);
  opacity:.78;
}

/* CTA */
.cta{
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(700px 350px at 20% 10%, rgba(123,97,255,.20), transparent 55%),
    radial-gradient(600px 300px at 85% 20%, rgba(0,209,255,.14), transparent 55%),
    rgba(255,255,255,.04);
  box-shadow:var(--shadow);
  padding:18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.cta h2{
  margin:0 0 6px;
  font-size:20px;
}
.cta p{
  margin:0;
  color:var(--muted);
  line-height:1.6;
  font-size:14px;
}
.cta .cta-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

/* Footer */
.footer{
  margin-top:26px;
  border-top:1px solid rgba(255,255,255,.08);
  background:rgba(7,8,22,.68);
}
.footer-inner{
  padding:18px 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}
.footer p{
  margin:0;
  color:var(--muted2);
  font-size:13px;
}
.footer a{
  color:var(--muted2);
  font-size:13px;
  padding:8px 10px;
  border-radius:12px;
  border:1px solid transparent;
}
.footer a:hover{
  color:var(--text);
  border-color:rgba(255,255,255,.10);
  background:rgba(255,255,255,.05);
}

/* Responsive */
@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr}
  .grid-4{grid-template-columns:repeat(2, 1fr)}
  .pricing{grid-template-columns:1fr}
  .split{grid-template-columns:1fr}
  .nav{display:none}
  .brand{min-width:auto}
}

@media (max-width: 560px){
  .hero h1{font-size:36px}
  .grid-3{grid-template-columns:1fr}
  .grid-4{grid-template-columns:1fr}
  .cta{flex-direction:column; align-items:flex-start}
}
/* =========================================================
   Feature icons (CSS based, no image assets)
   ========================================================= */

.icon{
  width:44px;
  height:44px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:10px;
  position:relative;
  background:linear-gradient(135deg, rgba(123,97,255,.25), rgba(0,209,255,.18));
  border:1px solid rgba(123,97,255,.35);
  box-shadow:0 16px 35px rgba(123,97,255,.12);
}

.icon::before{
  content:"";
  width:20px;
  height:20px;
  display:block;
  mask-size:contain;
  mask-repeat:no-repeat;
  mask-position:center;
  background:#eaeaff;
}

/* Event companies – calendar / booking */
.icon-events::before{
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 2v2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2h-2V2h-2v2H9V2H7zm12 6H5v12h14V8z'/%3E%3C/svg%3E");
}

/* Venues – building */
.icon-venue::before{
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 21h18v-2H3v2zm2-4h14V3H5v14zm4-10h2v2H9V7zm0 4h2v2H9v-2zm4-4h2v2h-2V7zm0 4h2v2h-2v-2z'/%3E%3C/svg%3E");
}

/* Staff – user group */
.icon-staff::before{
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M16 11c1.66 0 2.99-1.34 2.99-3S17.66 5 16 5s-3 1.34-3 3 1.34 3 3 3zm-8 0c1.66 0 2.99-1.34 2.99-3S9.66 5 8 5 5 6.34 5 8s1.34 3 3 3zm0 2c-2.33 0-7 1.17-7 3.5V19h14v-2.5C15 14.17 10.33 13 8 13zm8 0c-.29 0-.62.02-.97.05 1.16.84 1.97 1.97 1.97 3.45V19h6v-2.5c0-2.33-4.67-3.5-7-3.5z'/%3E%3C/svg%3E");
}
/* Public booking proof block */
.section .panel img{
  margin-top: 14px;
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.20);
}