/* ================= THEME ================= */
:root {
  --primary: #2563eb;
  --accent: #ef4444;
  --success: #16a34a;
  --bg1: #eef7f4;
  --bg2: #f6fbfa;
  --card: #ffffff;
  --border: #e5e7eb;
  --text: #111827;
  --muted: #6b7280;
  --radius: 18px;
  --space: 20px;
}

* {
  box-sizing: border-box;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #000;
  color: #fff;
  padding: 8px 12px;
  z-index: 1000;
}

.skip-link:focus {
  top: 0;
}


body {
  margin: 0;
  font-family: Inter, Segoe UI, system-ui, sans-serif;
  background: radial-gradient(circle at top, #ffffff 0%, var(--bg2) 40%, var(--bg1) 100%);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ================= HEADER ================= */
header {
  background: linear-gradient(180deg, #0b0b0b, #000);
  color: #fff;
   height: 64px;                 /* 🔒 LOCK HEIGHT */
  padding: 0 20px;              /* NO vertical padding */  
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(0,0,0,.25);
}

header h1 {
  font-size: 1.3rem;
  margin: 0;
  letter-spacing: .5px;
  font-weight: 700;
}

header nav a {
  color: #dbeafe;
  text-decoration: none;
  margin-left: 20px;
  font-size: .95rem;
  transition: color .2s ease;
}

header nav a:hover {
  color: #22d3ee;
  text-decoration: underline;
}

/* ================= GLOBAL LAYOUT ================= */
.container {
  max-width: 1200px;
  margin: var(--space) auto;
  padding: var(--space);
}

.full-width-section {
  width: 100%;
  padding: 0 var(--space);
  margin: var(--space) 0;
}

/* ================= HERO ================= */
.hero {
  text-align: center;
  padding: calc(var(--space) * 1.5);
  background: radial-gradient(circle at top, #ffffff 0%, #eef3ff 45%, #e8efff 100%);
  border-radius: var(--radius);
  margin: var(--space) auto;
  box-shadow: 0 12px 28px rgba(0,0,0,.08);
}

.hero-title {
  font-size: 2.6rem;
  font-weight: 800;
  margin: 0 0 12px;
  letter-spacing: -0.5px;
  text-align: center;
  line-height: 1.2;
}

.hero-title .word {
  color: var(--text);   /* normal text */
}

.hero-title .first-letter {
  color: var(--accent); /* red first letter */
  font-weight: 800;
}


.hero-title .vs {
  background: var(--accent);
  color: #fff;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 700;
  margin: 0 8px;
  vertical-align: middle;
  box-shadow: 0 4px 10px rgba(239,68,68,.35);
}

.hero-subtitle {
  max-width: 1080;
  margin: 0 auto 18px;
  text-align: center;
  font-size: 1.05rem;
  color: #4b5563;
}


.hero p {
  max-width: 760px;
  margin: 0 auto 14px;
  color: #4b5563;
  font-size: 1.05rem;
  
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}

.hero-note {
  font-size: .85rem;
  color: var(--muted);
}

/* ================= SECTION TITLES ================= */
.section-title {
  text-align: center;
  margin-bottom: 16px;
}

.section-title h2 {
  margin: 0 0 8px;
  font-weight: 700;
}

.section-heading {
  text-align: center;
  color: var(--primary);
  margin: 0 0 14px;
  font-size: 1.2rem;
}

.section-note.line-highlight {
  position: relative;
  width: 100%;
  margin: 28px 0 12px;
  padding: 0 16px;

  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: #111827; /* black text */

  letter-spacing: 0.25px;
}

/* Red reference line */
.section-note.line-highlight::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    to right,
    transparent,
    #ef4444,
    transparent
  );
  transform: translateY(-50%);
  z-index: 0;
}

/* Text sits cleanly on the line */
.section-note.line-highlight span {
  position: relative;
  background: #ffffff;
  padding: 0 14px;
  z-index: 1;
}

/* ================= BRAND LOGO ================= */
.brand {
  display: flex;
  align-items: center;       /* logo stays vertically centered */
  gap: 10px;
  text-decoration: none;
  height: 100%;
}

.logo {
  height: 55px;
  width: auto;
  display: block;            /* removes inline image gap */
}

.brand-text {
  font-size: 1.7rem;
  font-weight: 700;              /* slightly lighter = closer to logo */
  letter-spacing: 0.2px;         /* tighter like the image */

  /* Darker brushed metallic silver */
  background: linear-gradient(
    180deg,
    #e6e6e6 0%,
    #bdbdbd 30%,
    #8f8f8f 55%,
    #cfcfcf 75%,
    #f2f2f2 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  line-height: 1;
  transform: translateY(13px);   /* 🔑 closer to image baseline */
}


.brand-text span {
  background: none;
  -webkit-text-fill-color: #ef4444;
  color: #ef4444;
}



/* ================= CARDS ================= */
.card {
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(0,0,0,.08);
  padding: var(--space);
   margin-bottom: 18px; 
  transition: all .25s ease-in-out;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0,0,0,.12);
}

.card h3 {
  margin: 0 0 12px;
  font-weight: 600;
}

.card p {
  margin: 0 0 10px;
  color: #374151;
}

/* ================= FEATURE GRID ================= */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  margin: var(--space) 0;
}

.feature {
  padding: var(--space);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
  border-left: 4px solid var(--primary);
  transition: all .25s ease-in-out;
}

.feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0,0,0,.12);
}

.feature h4 {
  margin: 0 0 10px;
  font-weight: 600;
}

.feature p {
  margin: 0;
  font-size: .95rem;
  color: #4b5563;
}

/* ================= BUTTONS ================= */
.primary-btn {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 22px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(37,99,235,.35);
  transition: all .25s ease-in-out;
}

.primary-btn:hover {
  transform: scale(1.05);
  opacity: .95;
}

/* ================= LISTS ================= */
ul, ol {
  margin: 0;
  padding-left: 22px;
}

li {
  margin-bottom: 8px;
}

/* ================= TRUST STRIP ================= */
.trust-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
  padding: var(--space);
  background: #f9fafb;
  border-radius: 16px;
  font-size: .9rem;
  color: #4b5563;
  margin: var(--space) 0;
}

/* ================= FOOTER ================= */
footer {
  background: #000;
  color: #9ca3af;
  text-align: center;
  font-size: .85rem;
  padding: var(--space);
  margin-top: var(--space);
  box-shadow: inset 0 2px 6px rgba(255,255,255,.05);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 600px) {
  header {
    flex-direction: column;
    gap: 12px;
  }

  header nav a {
    margin-left: 12px;
    font-size: .85rem;
  }

  /* ================= CONTACT FORM PREMIUM ================= */

.form-shell {
  max-width: 560px;
  margin: 12px auto 0;   /* was 28px */
  padding: 28px 26px;
  background: linear-gradient(180deg, #ffffff, #f9fbff);
  border-radius: 16px;
  box-shadow:
    0 10px 30px rgba(0,0,0,.06),
    inset 0 1px 0 rgba(255,255,255,.8);
  display: grid;
  gap: 18px;
}

/* Labels */
.form-shell label {
  font-size: .8rem;
  font-weight: 600;
  color: #374151;
  letter-spacing: .2px;
}

/* Inputs */
.form-shell input,
.form-shell textarea,
.form-shell select {
  width: 100%;
  padding: 14px 14px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  font-size: .95rem;
  background: #ffffff;
  transition: all .2s ease;
}

/* Focus state (this is BIG for premium feel) */
.form-shell input:focus,
.form-shell textarea:focus,
.form-shell select:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37,99,235,.15);
}

/* Textarea */
.form-shell textarea {
  min-height: 120px;
  resize: vertical;
}

/* Error message */
#formError {
  background: rgba(239,68,68,.08);
  color: #b91c1c;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: .85rem;
}

/* Submit button zone */
.form-shell button {
  margin-top: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 1rem;
}
.soft-divider {
  border: none;
  height: 1px;
  margin: 18px 0 22px;
  background: linear-gradient(to right, transparent, #e5e7eb, transparent);
}


}


