﻿@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=DM+Sans:wght@400;500;600;700&display=swap');
:root {
  --primary:      #dc2626;
  --primary-dark: #b91c1c;
  --primary-light: rgba(220,38,38,0.8);
  --secondary:    #991b1b;
  --bg:           #0a0a0a;
  --surface:      #171717;
  --surface2:     #1f1f1f;
  --border:       rgba(255,255,255,0.08);
  --text:         #fafafa;
  --text-muted:   #a3a3a3;
  --text-dim:     #6a7282;
  --white:        #ffffff;
  --radius-sm:    6px;
  --radius:       10px;
  --radius-lg:    16px;
  --radius-xl:    24px;
  --shadow:       0 4px 24px rgba(0,0,0,0.4);
  --shadow-red:   0 8px 30px rgba(220,38,38,0.25);
  --transition:   0.2s ease;
  --header-h:     64px;
  --max-w:        1440px;
  --font-heading: 'DM Sans', 'Inter', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
}
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul, ol {
  list-style: none;
}
button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}
input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 640px)  { .container { padding: 0 2rem; } }
@media (min-width: 1024px) { .container { padding: 0 2.5rem; } }
@media (min-width: 1280px) { .container { padding: 0 3rem; } }
main {
  flex: 1;
}
h1 { 
  font-size: 2.25rem; 
  font-weight: 800; 
  line-height: 1.1;
  letter-spacing: -0.025em;
}
@media (min-width: 640px) {
  h1 { font-size: 3rem; }
}
@media (min-width: 1024px) {
  h1 { font-size: 4.5rem; }
}
h2 { font-size: clamp(1.4rem, 3vw, 2rem);     font-weight: 700; line-height: 1.2;  }
h3 { font-size: 1.15rem;                        font-weight: 600; line-height: 1.3;  }
h4 { font-size: 0.85rem;                        font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
p  { line-height: 1.7; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.2s;
  white-space: nowrap;
  cursor: pointer;
}
.btn:active { transform: translateY(0); }
.btn-primary {
  background: var(--primary);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 10px 15px -3px rgba(220,38,38,0.25), 0 4px 6px -4px rgba(220,38,38,0.1);
}
.btn-primary:hover { 
  background: rgba(220,38,38,0.9);
  box-shadow: 0 10px 15px -3px rgba(220,38,38,0.3), 0 4px 6px -4px rgba(220,38,38,0.1);
}
.btn-secondary {
  background: var(--secondary);
  color: var(--white);
}
.btn-secondary:hover { background: var(--primary-dark); }
.btn-outline {
  background: #111827;
  color: #e5e7eb;
  border: 1px solid #374151;
  font-weight: 600;
}
.btn-outline:hover {
  border-color: rgba(220,38,38,0.4);
  color: var(--white);
}
.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-ghost:hover { background: rgba(255,255,255,0.14); }
.btn svg { width: 1rem; height: 1rem; flex-shrink: 0; }
.btn-buy-now {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  justify-content: flex-start;
  gap: .7rem;
  padding: .75rem 1.25rem;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  background: linear-gradient(135deg, #15803d 0%, #16a34a 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  transition: filter .15s, transform .1s;
  box-shadow: 0 8px 20px -4px rgba(22,163,74,.35);
  text-decoration: none;
  white-space: normal;
}
.btn-buy-now:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn-buy-now:active { transform: translateY(0); }
@media (min-width: 640px) {
  .btn-buy-now { justify-content: center !important; }
  .btn-buy-now-text { flex: 0 0 auto !important; }
}
.btn-buy-now-icon {
  flex-shrink: 0;
  width: 2.2rem;
  height: 2.2rem;
}
.btn-buy-now-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .1rem;
  min-width: 0;
  overflow: hidden;
}
.btn-buy-now-top {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .02em;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.btn-buy-now-sub {
  font-size: .75rem;
  font-weight: 500;
  opacity: .9;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(220,38,38,0.3), transparent);
  max-width: var(--max-w);
  margin: 0 auto;
}
.divider-full {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(220,38,38,0.3), transparent);
  width: 100%;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #111827;
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.logo img {
  height: 38px;
  width: auto;
  object-fit: contain;
}
.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}
.nav-desktop a {
  font-size: 0.875rem;
  font-weight: 500;
  color: #d1d5db;
  transition: color var(--transition);
}
.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--primary);
}
.header-actions {
  display: none;
  align-items: center;
  gap: 0.75rem;
}
.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--white);
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.menu-toggle:hover { background: rgba(255,255,255,0.07); }
.menu-toggle svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  transition: opacity var(--transition);
}
.menu-toggle .icon-close { display: none; }
.nav-mobile {
  display: none;
  flex-direction: column;
  background: #111827;
  border-top: 1px solid var(--border);
  padding: 1rem 0 1.5rem;
  position: absolute;
  top: var(--header-h);
  left: 0;
  right: 0;
  z-index: 99;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #d1d5db;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition), background var(--transition);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--white); background: rgba(255,255,255,0.04); }
.nav-mobile .mobile-actions {
  display: flex;
  gap: 0.75rem;
  padding: 1rem 1.5rem 0;
  flex-wrap: wrap;
}
@media (min-width: 1024px) {
  .nav-desktop    { display: flex; }
  .header-actions { display: flex; }
  .menu-toggle    { display: none; }
}
.site-footer {
  background: #030712;
  color: #9ca3af;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.footer-cta {
  background: #111827;
  border-bottom: 1px solid var(--border);
  padding: 3.5rem 0;
  text-align: center;
}
.footer-cta h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
}
.footer-cta p {
  color: var(--text-muted);
  max-width: 36rem;
  margin: 0 auto 1.75rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding: 3.5rem 0 2rem;
}
@media (min-width: 640px)  { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand img {
  height: 36px;
  width: auto;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.65;
}
.social-links {
  display: flex;
  gap: 0.625rem;
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  color: var(--text-muted);
  transition: background var(--transition), color var(--transition);
}
.social-link:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
}
.social-link svg { width: 16px; height: 16px; }
.footer-col h4 {
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.footer-col nav {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.footer-col nav a {
  font-size: 0.875rem;
  color: #6b7280;
  transition: color var(--transition);
}
.footer-col nav a:hover { color: var(--white); }
.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8125rem;
}
.hours-row .day   { color: var(--text-dim); }
.hours-row .time  { color: #d1d5db; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-dim);
}
.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1rem;
  justify-content: center;
  align-items: center;
}
.footer-bottom-links a:hover { color: #9ca3af; }
@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.breadcrumb a:hover { color: rgba(255,255,255,0.85); }
.breadcrumb-sep {
  color: rgba(255,255,255,0.25);
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.breadcrumb-current { font-weight: 600; color: var(--white); }
.breadcrumb.light a { color: #9ca3af; }
.breadcrumb.light a:hover { color: #374151; }
.breadcrumb.light .breadcrumb-sep { color: #d1d5db; }
.breadcrumb.light .breadcrumb-current { color: #111827; }
.form-card {
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}
@media (min-width: 640px) { .form-card { padding: 2.5rem; } }
.form-section {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #f3f4f6;
}
.form-section:last-of-type { border-bottom: none; margin-bottom: 0; }
.form-section-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.form-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(220,38,38,0.08);
  flex-shrink: 0;
}
.form-icon svg { width: 20px; height: 20px; color: var(--primary); stroke: var(--primary); }
.form-section-header h3 {
  color: #111827;
  font-size: 1rem;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 480px) { .form-grid { grid-template-columns: repeat(2, 1fr); } }
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #374151;
}
.form-group label.required::after {
  content: ' *';
  color: var(--primary);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: var(--radius-sm);
  padding: 0.625rem 0.875rem;
  font-size: 0.875rem;
  color: #111827;
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9ca3af;
  font-weight: 400;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(220,38,38,0.12);
}
.form-group select { appearance: none; cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-hint {
  font-size: 0.75rem;
  color: #9ca3af;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.form-hint svg { width: 12px; height: 12px; flex-shrink: 0; }
.form-submit {
  margin-top: 2rem;
  text-align: center;
}
.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-size: 0.9375rem;
}
@media (min-width: 480px) { .btn-submit { width: auto; min-width: 220px; } }
.page-hero {
  padding: 3.5rem 0 3rem;
}
.page-hero.dark  { background: #111827; }
.page-hero.red   { background: var(--primary); }
.page-hero.white { background: var(--white); border-bottom: 1px solid #e5e7eb; }
.page-hero h1 { margin-bottom: 0.5rem; }
.page-hero.white h1 { color: #111827; }
.page-hero p {
  font-size: 1rem;
  max-width: 42rem;
  opacity: 0.75;
}
.text-primary  { color: var(--primary); }
.text-muted    { color: var(--text-muted); }
.text-white    { color: var(--white); }
.text-dark     { color: #111827; }
.text-center   { text-align: center; }
.text-sm       { font-size: 0.875rem; }
.text-xs       { font-size: 0.8125rem; }
.font-bold     { font-weight: 700; }
.font-semibold { font-weight: 600; }
.bg-dark     { background: var(--bg); }
.bg-surface  { background: var(--surface); }
.bg-gray     { background: #111827; }
.mt-1  { margin-top: 0.25rem; }
.mt-2  { margin-top: 0.5rem; }
.mt-3  { margin-top: 0.75rem; }
.mt-4  { margin-top: 1rem; }
.mt-6  { margin-top: 1.5rem; }
.mt-8  { margin-top: 2rem; }
.mb-2  { margin-bottom: 0.5rem; }
.mb-4  { margin-bottom: 1rem; }
.mb-6  { margin-bottom: 1.5rem; }
.mb-8  { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.py-8  { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.section { padding: 4rem 0; }
@media (min-width: 768px) { .section { padding: 5rem 0; } }
.badge {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.badge-primary { background: rgba(220,38,38,0.15); color: var(--primary); }
.badge-green   { background: rgba(34,197,94,0.12);  color: #16a34a; }
.badge-gray    { background: rgba(255,255,255,0.07); color: var(--text-muted); }
.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-heading {
  text-align: center;
  margin-bottom: 3rem;
}
.section-heading .label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.section-heading h2 { color: var(--white); margin-bottom: 0.75rem; }
.section-heading h2.dark { color: #111827; }
.section-heading p { color: var(--text-muted); max-width: 36rem; margin: 0 auto; }
.hide-mobile { display: none; }
@media (min-width: 768px) {
  .hide-mobile  { display: initial; }
  .hide-desktop { display: none; }
}