/* ALD Installations Ltd — site styles */
:root {
  --bg: #0b1020;
  --bg-soft: #121a33;
  --card: #161f3d;
  --text: #e8ecf6;
  --muted: #9aa6c4;
  --brand: #25d366;      /* WhatsApp green */
  --brand-2: #7b5cff;    /* accent purple */
  --insta: #e1306c;      /* Instagram pink */
  --border: rgba(255,255,255,0.08);
  --radius: 16px;
  --maxw: 1080px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: radial-gradient(1200px 600px at 80% -10%, #1c2752 0%, var(--bg) 55%);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* Header */
header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(11,16,32,0.72);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 18px; letter-spacing: .2px; }
.brand .logo {
  width: 34px; height: 34px; border-radius: 9px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  display: grid; place-items: center; color: #fff; font-weight: 800;
}
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a { color: var(--muted); font-size: 15px; transition: color .2s; }
.nav-links a:hover { color: var(--text); }
.btn {
  display: inline-block; padding: 11px 20px; border-radius: 999px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  color: #fff !important; font-weight: 600; font-size: 15px;
  transition: transform .15s, box-shadow .2s;
  box-shadow: 0 8px 24px rgba(123,92,255,0.25);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(123,92,255,0.35); }

/* Hero */
.hero { padding: 92px 0 64px; text-align: center; }
.eyebrow {
  display: inline-block; padding: 6px 14px; border-radius: 999px;
  background: var(--bg-soft); border: 1px solid var(--border);
  color: var(--muted); font-size: 13px; font-weight: 600; margin-bottom: 22px;
}
.hero h1 { font-size: clamp(32px, 5vw, 54px); line-height: 1.1; font-weight: 800; letter-spacing: -1px; }
.hero h1 .grad {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 60%, var(--insta) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.lead { max-width: 680px; margin: 22px auto 32px; color: var(--muted); font-size: 19px; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-ghost {
  display: inline-block; padding: 11px 20px; border-radius: 999px;
  border: 1px solid var(--border); color: var(--text); font-weight: 600; font-size: 15px;
  transition: background .2s;
}
.btn-ghost:hover { background: var(--bg-soft); }

/* Sections */
section { padding: 60px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head h2 { font-size: clamp(26px, 3.4vw, 38px); font-weight: 800; letter-spacing: -.5px; }
.section-head p { color: var(--muted); margin-top: 14px; font-size: 17px; }

/* Cards grid */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px 26px; transition: transform .2s, border-color .2s;
}
.card:hover { transform: translateY(-4px); border-color: rgba(123,92,255,0.4); }
.card .icon {
  width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center;
  font-size: 24px; margin-bottom: 18px;
}
.icon.wa { background: rgba(37,211,102,0.15); }
.icon.ig { background: rgba(225,48,108,0.15); }
.icon.au { background: rgba(123,92,255,0.15); }
.icon.in { background: rgba(80,160,255,0.15); }
.card h3 { font-size: 19px; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 15px; }

/* Steps */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 22px; }
.step { background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; position: relative; }
.step::before {
  counter-increment: step; content: counter(step);
  display: grid; place-items: center; width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  color: #fff; font-weight: 800; margin-bottom: 16px;
}
.step h3 { font-size: 17px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 15px; }

/* CTA band */
.cta {
  text-align: center;
  background: linear-gradient(135deg, rgba(37,211,102,0.12), rgba(123,92,255,0.12));
  border: 1px solid var(--border); border-radius: 24px; padding: 56px 28px; margin: 40px 0;
}
.cta h2 { font-size: clamp(24px, 3.2vw, 34px); font-weight: 800; }
.cta p { color: var(--muted); margin: 14px auto 26px; max-width: 520px; font-size: 17px; }

/* Legal pages */
.legal { padding: 56px 0 40px; }
.legal h1 { font-size: 36px; font-weight: 800; margin-bottom: 8px; }
.legal .updated { color: var(--muted); font-size: 14px; margin-bottom: 36px; }
.legal h2 { font-size: 22px; margin: 32px 0 12px; }
.legal h3 { font-size: 18px; margin: 22px 0 8px; }
.legal p, .legal li { color: #c7cfe2; font-size: 16px; margin-bottom: 12px; }
.legal ul { margin: 0 0 12px 22px; }
.legal a { color: var(--brand); text-decoration: underline; }

/* Footer */
footer { border-top: 1px solid var(--border); padding: 44px 0 60px; margin-top: 40px; }
.foot-grid { display: flex; flex-wrap: wrap; gap: 30px; justify-content: space-between; align-items: flex-start; }
.foot-brand { max-width: 320px; }
.foot-brand p { color: var(--muted); font-size: 14px; margin-top: 12px; }
.foot-links { display: flex; gap: 40px; flex-wrap: wrap; }
.foot-col h4 { font-size: 14px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 14px; }
.foot-col a { display: block; color: var(--text); font-size: 15px; margin-bottom: 10px; opacity: .85; }
.foot-col a:hover { opacity: 1; }
.legal-line { margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--border); color: var(--muted); font-size: 13px; line-height: 1.7; }

@media (max-width: 640px) {
  .nav-links { display: none; }
  .hero { padding: 60px 0 40px; }
}
