/* Immoswipe Brand Design System */
:root {
  --pink: #FF0677;
  --purple: #8B12C8;
  --blue: #401DD8;
  --teal: #53f4d5;
  --text: #0e0456;

  --grad: linear-gradient(180deg, #401DD8 10%, #8B12C8 50%, #FF0677 100%);
  --grad-diag: linear-gradient(45deg, #401DD8 10%, #8B12C8 50%, #FF0677 100%);
  --bg: linear-gradient(45deg, #401DD8 10%, #8B12C8 50%, #FF0677 100%);

  --radius: 23px;
  --radius-sm: 10px;
  --shadow: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-lg: 0 12px 40px rgba(64,29,216,0.18);
}

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

body {
  font-family: "Hind", sans-serif;
  background: var(--bg);
  background-attachment: fixed;
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}
