/* Fireshe — fire equipment theme */
:root {
  --bg: #0c0f14;
  --bg-elevated: #131922;
  --surface: #1a222e;
  --border: rgba(255, 255, 255, 0.08);
  --text: #e8ecf1;
  --text-muted: #9aa3b2;
  --accent: #ff4d2e;
  --accent-soft: rgba(255, 77, 46, 0.15);
  --accent-glow: rgba(255, 77, 46, 0.35);
  --amber: #ffb020;
  --radius: 12px;
  --radius-lg: 20px;
  --font: "DM Sans", system-ui, sans-serif;
  --font-display: "Outfit", var(--font);
  --header-h: 72px;
  --max: 1100px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 var(--radius) 0;
}

.skip-link:focus {
  left: 0;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(12, 15, 20, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--text);
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #3d8bfd 0%, #1e5fbb 100%);
  position: relative;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.06);
}

.logo-mark::before {
  content: "A";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: #0d2137;
  z-index: 1;
}

.logo-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.35), transparent 50%);
  border-radius: inherit;
  pointer-events: none;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  margin-inline: auto;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.is-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.site-header.is-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.15s ease;
}

.nav-list a:hover,
.nav-list a:focus-visible {
  color: var(--text);
}

.nav-cta {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent) !important;
  border: 1px solid rgba(255, 77, 46, 0.35);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: rgba(255, 77, 46, 0.25);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.5rem 1.25rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s;
  }

  .site-header.is-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }

  .nav-list a {
    padding: 0.65rem 0;
  }
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(4rem, 10vw, 6rem);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 0%, var(--accent-glow), transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(61, 139, 253, 0.12), transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, #0e1218 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
}

.hero h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  max-width: 18ch;
}

.text-accent {
  color: var(--accent);
}

.lead {
  margin: 0 0 1.75rem;
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 52ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease, transform 0.1s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 24px var(--accent-glow);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #ff6a4a;
  box-shadow: 0 6px 28px var(--accent-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
}

.btn-small {
  padding: 0.4rem 0.85rem;
  font-size: 0.8rem;
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-small:hover,
.btn-small:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-copy {
  margin-left: 0.5rem;
  vertical-align: middle;
}

/* Sections */
.section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.section-alt {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.section-head {
  margin-bottom: 2.5rem;
  max-width: 640px;
}

.section-head h2 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.65rem, 3vw, 2rem);
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0;
  color: var(--text-muted);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.card {
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.card:hover {
  border-color: rgba(255, 77, 46, 0.25);
  transform: translateY(-2px);
}

.card-icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.steps {
  display: grid;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

@media (min-width: 700px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.steps li {
  padding: 1.5rem;
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.step-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.steps h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.steps p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.split {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 800px) {
  .split {
    grid-template-columns: 1fr 320px;
  }
}

.split h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2rem);
}

.prose {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

.prose strong {
  color: var(--text);
}

.highlight-box {
  padding: 1.5rem;
  background: var(--accent-soft);
  border: 1px solid rgba(255, 77, 46, 0.25);
  border-radius: var(--radius-lg);
}

.highlight-box h3 {
  margin: 0 0 1rem;
  font-size: 1rem;
}

.checklist {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-muted);
}

.checklist li {
  margin-bottom: 0.4rem;
}

/* GST */
.section-gst .gst-card {
  padding: 1.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  max-width: 720px;
}

.gst-list {
  margin: 0;
}

.gst-row {
  display: grid;
  gap: 0.25rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
}

.gst-row:last-of-type {
  border-bottom: none;
}

@media (min-width: 560px) {
  .gst-row:not(.gst-row-full) {
    grid-template-columns: 200px 1fr;
    gap: 1rem;
    align-items: baseline;
  }
}

.gst-row dt {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.gst-row dd {
  margin: 0;
  font-size: 0.95rem;
}

.gst-row a {
  color: #7eb8ff;
  text-decoration: none;
}

.gst-row a:hover,
.gst-row a:focus-visible {
  text-decoration: underline;
}

.gstin {
  display: inline-block;
  padding: 0.35rem 0.65rem;
  font-family: ui-monospace, monospace;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: var(--bg);
  border-radius: 8px;
  border: 1px solid var(--border);
  cursor: pointer;
}

.gstin:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.mono {
  font-family: ui-monospace, monospace;
  font-size: 0.9rem;
}

.copy-target {
  cursor: pointer;
}

.copy-target:hover {
  color: var(--accent);
}

.gst-note {
  margin: 1rem 0 0;
  min-height: 1.5rem;
  font-size: 0.9rem;
  color: var(--amber);
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 600px) {
  .contact-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.contact-card {
  padding: 1.25rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.contact-card h3 {
  margin: 0 0 0.35rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.contact-card p {
  margin: 0;
  font-size: 0.95rem;
}

.contact-card a {
  color: #7eb8ff;
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

.contact-form {
  max-width: 520px;
  display: grid;
  gap: 1rem;
}

.form-row {
  display: grid;
  gap: 0.35rem;
}

.form-row label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.form-row input,
.form-row textarea {
  font: inherit;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
}

.form-row input:focus-visible,
.form-row textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
  border-color: transparent;
}

.form-feedback {
  margin: 0;
  font-size: 0.9rem;
  color: var(--amber);
}

/* Footer */
.site-footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  background: #080a0d;
}

.footer-inner {
  display: grid;
  gap: 1.25rem;
}

.footer-tag {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-legal p {
  margin: 0 0 0.35rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-legal strong {
  color: var(--text);
}

.footer-legal code {
  font-family: ui-monospace, monospace;
  font-size: 0.85em;
  color: var(--amber);
}

.footer-address a {
  color: #7eb8ff;
  text-decoration: none;
}

.footer-copy {
  margin: 0;
  padding-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  opacity: 0.85;
}

.footer-copy a {
  color: #7eb8ff;
  text-decoration: none;
}

.footer-copy a:hover,
.footer-copy a:focus-visible {
  text-decoration: underline;
}

/* Legal / privacy page */
.legal-body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.legal-header .legal-nav {
  position: static;
  transform: none;
  opacity: 1;
  visibility: visible;
  padding: 0;
  border: none;
  background: transparent;
}

.legal-header .nav-toggle {
  display: none;
}

.legal-main {
  flex: 1;
  padding: clamp(2rem, 5vw, 3.5rem) 0;
}

.legal-doc {
  max-width: 720px;
}

.legal-doc h1 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.legal-effective {
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.legal-intro {
  margin: 0 0 2rem;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.legal-intro a {
  color: #7eb8ff;
}

.legal-section {
  margin-bottom: 1.75rem;
}

.legal-section h2 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--text);
}

.legal-section p {
  margin: 0 0 0.75rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.legal-section ul {
  margin: 0 0 0.75rem;
  padding-left: 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.legal-section li {
  margin-bottom: 0.45rem;
}

.legal-section strong {
  color: var(--text);
}

.legal-contact {
  margin: 0.5rem 0 0;
  font-style: normal;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.legal-contact a {
  color: #7eb8ff;
  text-decoration: none;
}

.legal-contact a:hover,
.legal-contact a:focus-visible {
  text-decoration: underline;
}

.legal-address-block {
  display: inline-block;
  margin-top: 0.5rem;
}

.legal-agree {
  margin: 2rem 0 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.92rem;
  color: var(--text-muted);
}

.legal-copy {
  margin: 0 0 1.25rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.legal-back {
  margin: 0;
}

.legal-footer-min {
  padding: 1.25rem 0;
}

.legal-footer-min .footer-copy-tight {
  padding-top: 0;
}
