/*
Theme Name: ITDWX Landing
Theme URI: https://itdwx.co.uk
Author: ITDWX Ltd
Description: High-converting one-page landing theme for ITDWX Ltd.
Version: 1.0.0
Text Domain: itdwx-landing
*/

:root{
  --brand:#CC5500; /* Darker orange for better contrast */
  --char:#1E1E1E;
  --mid:#6B6B6B;
  --light:#F2F2F2;
  --white:#fff;
  --radius:16px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0; font:16px/1.6 system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,"Helvetica Neue",Arial;
  color:var(--char); background:#fff;
}
.wrap{max-width:1100px;margin:0 auto;padding:0 20px}
.section{padding:72px 0}
h1,h2,h3{line-height:1.2;margin:0 0 16px}
h1{font-size:42px}
h2{font-size:32px}
h3{font-size:22px;color:var(--char)}
p{margin:0 0 12px;color:var(--mid)}

a{
  color:var(--brand);
  text-decoration:none;
}
a:hover{
  text-decoration:underline;
}
.btn{
  display:inline-block;
  background:var(--brand);
  color:#fff;
  border:none;
  padding:14px 22px;
  border-radius:999px;
  font-weight:700;
  cursor:pointer;
}
.btn:hover{
  background:#a84300; /* even darker on hover */
}

.btn-outline{
  background:transparent;
  color:var(--brand);
  border:2px solid var(--brand);
}
.btn-outline:hover{
  background:var(--brand);
  color:#fff;
}

.hero{
  background:linear-gradient(180deg,#ffffff, #fbfbfb);
  border-bottom:1px solid #eee;
}
.hero-grid{display:grid;grid-template-columns:1.15fr 0.85fr;gap:32px;align-items:center}
.hero-card{
  background:#fff;border:1px solid #eee;border-radius:var(--radius);padding:22px;box-shadow:0 10px 24px rgba(0,0,0,.04)
}

.kpis{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;margin-top:18px}
.kpi{background:var(--light);border-radius:var(--radius);padding:16px;text-align:center}
.kpi strong{font-size:22px;color:var(--char)}

.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.card{
  background:#fff;border:1px solid #eee;border-radius:var(--radius);padding:20px
}
.card h3{margin-bottom:8px}
.card p{margin-bottom:0}

.portfolio .thumb{
  width:100%;aspect-ratio:16/10;border-radius:12px;background:#ddd;border:1px solid #eee;
  display:flex;align-items:center;justify-content:center;color:#666;font-weight:600
}

.pricing .price{
  font-size:40px;font-weight:800;color:var(--char)
}
.pricing .note{font-size:14px;color:var(--mid)}

.process{counter-reset:step}
.process li{
  list-style:none;margin:0 0 14px;padding-left:50px;position:relative
}
.process li:before{
  counter-increment:step;content:counter(step);
  position:absolute;left:0;top:0;width:34px;height:34px;border-radius:999px;background:var(--brand);color:#fff;font-weight:800;display:flex;align-items:center;justify-content:center
}

.cta{
  background:var(--light);color:#fff;border-radius:var(--radius);padding:28px
}
.cta h2{color:var(--char);margin-bottom:10px}

.footer{
  border-top:1px solid #eee;padding:28px 0;color:var(--mid);font-size:14px
}

.notice{background:#fff7f1;border:1px dashed var(--brand);padding:12px;border-radius:12px;color:#8a4b1d}

.cookiebar{
  position:fixed;left:20px;right:20px;bottom:20px;background:#fff;border:1px solid #eee;border-radius:12px;
  box-shadow:0 10px 24px rgba(0,0,0,.08);padding:16px;display:none;z-index:9999
}
.cookiebar .actions{margin-top:10px}
.cookiebar button{margin-right:8px}
@media (max-width:900px){
  .hero-grid{grid-template-columns:1fr}
  .grid-3{grid-template-columns:1fr}
  .kpis{grid-template-columns:repeat(2,1fr)}
  h1{font-size:34px}
}
