/* ============================================================
   GO SECURITY SOLUTIONS — LIGHT SAAS THEME
============================================================ */

:root {
  /* Brand colours */
  --maroon:       #7B2629;
  --maroon-dark:  #5a1a1c;
  --maroon-light: rgba(123, 38, 41, 0.08);
  --gold:         #F2C200;
  --gold-dark:    #d9ad00;
  --gold-light:   rgba(242, 194, 0, 0.12);

  /* Neutrals — light theme */
  --bg:           #F5F7FA;
  --bg-alt:       #EEF1F6;
  --card:         #FFFFFF;
  --text:         #0A0A0A;
  --text-mid:     #4B5563;
  --text-soft:    #6B7280;
  --text-dim:     #9CA3AF;
  --border:       #E5E7EB;
  --border-soft:  #F0F2F5;

  /* Typography */
  --font-display: 'DM Sans', 'Inter', sans-serif;
  --font-body:    'Inter', 'DM Sans', sans-serif;

  /* Spacing */
  --section-y:    clamp(80px, 10vw, 120px);
  --page-x:       clamp(20px, 5vw, 60px);
  --max-width:    1280px;
  --max-narrow:   980px;

  /* Radius */
  --radius-sm:    8px;
  --radius:       14px;
  --radius-lg:    20px;

  /* Shadows */
  --shadow-sm:    0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.03);
  --shadow:       0 4px 12px rgba(0,0,0,0.05), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg:    0 10px 30px rgba(0,0,0,0.07), 0 4px 12px rgba(0,0,0,0.05);
  --shadow-hover: 0 18px 48px rgba(0,0,0,0.09), 0 8px 20px rgba(0,0,0,0.06);

  /* Easing */
  --ease:         cubic-bezier(0.16, 1, 0.3, 1);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 100px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  padding-top: 96px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* TYPOGRAPHY */
.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--maroon);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
}

.eyebrow.centred { justify-content: center; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

h1 {
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.1;
}

h3 {
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.25;
}

h4 {
  font-size: 18px;
  line-height: 1.35;
}

p { color: var(--text-mid); line-height: 1.75; }

.lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-mid);
}

.text-maroon { color: var(--maroon); }
.text-gold   { color: var(--gold-dark); }
.text-mid    { color: var(--text-mid); }
.text-soft   { color: var(--text-soft); }

/* CONTAINERS */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--page-x);
}

.container-narrow {
  max-width: var(--max-narrow);
  margin: 0 auto;
  padding: 0 var(--page-x);
}

.section-pad { padding: var(--section-y) 0; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  height: 48px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  border-radius: 999px;
  transition: all 0.25s var(--ease);
  cursor: pointer;
  border: 1.5px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--maroon);
  color: var(--card);
}

.btn-primary:hover {
  background: var(--maroon-dark);
  box-shadow: 0 8px 24px rgba(123, 38, 41, 0.25);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--card);
  color: var(--text);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: var(--maroon);
  color: var(--maroon);
  box-shadow: var(--shadow);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-ghost:hover {
  background: var(--card);
  border-color: var(--text);
}

.btn-gold {
  background: var(--gold);
  color: var(--text);
}

.btn-gold:hover {
  background: var(--gold-dark);
  box-shadow: 0 8px 24px rgba(242, 194, 0, 0.3);
  transform: translateY(-1px);
}

.btn svg { width: 16px; height: 16px; }

/* CARDS */
.card {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease);
}

.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.card-pad { padding: 32px; }
.card-pad-lg { padding: 40px; }

/* BADGES */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 999px;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text-mid);
}

.badge-gold {
  background: var(--gold-light);
  border-color: rgba(242, 194, 0, 0.3);
  color: #8a6c00;
}

.badge-gold .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold-dark); }

.badge-maroon {
  background: var(--maroon-light);
  border-color: rgba(123, 38, 41, 0.2);
  color: var(--maroon);
}

.badge-success {
  background: rgba(34, 197, 94, 0.08);
  border-color: rgba(34, 197, 94, 0.25);
  color: #15803d;
}

.badge-success .dot { width: 6px; height: 6px; border-radius: 50%; background: #22c55e; }

/* TRUST STRIP */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

/* FORM ELEMENTS */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
}

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  background: var(--card);
  border: 1.5px solid var(--border);
  color: var(--text);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  border-radius: var(--radius-sm);
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--maroon);
  box-shadow: 0 0 0 4px var(--maroon-light);
}

.form-textarea { resize: vertical; min-height: 140px; }

/* SECTION INTROS */
.section-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.section-intro p { font-size: 17px; margin-top: 16px; }

/* HOVER LIFT UTILITY */
.lift { transition: all 0.3s var(--ease); }
.lift:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

/* DIVIDERS */
.gold-rule { width: 56px; height: 3px; background: var(--gold); border-radius: 2px; margin: 0 0 24px; }
.gold-rule.centred { margin: 24px auto; }

/* RESPONSIVE */
@media (max-width: 768px) {
  body { padding-top: 92px; }
  .form-row { grid-template-columns: 1fr; }
  .card-pad, .card-pad-lg { padding: 24px; }
}

@media (max-width: 480px) {
  .btn { padding: 12px 20px; height: 44px; font-size: 13px; }
}
