/* ============================================================
   dotregistration.us — Federal Applications Processor Hoffenmer
   Stylesheet — Poppins + Lato
   ============================================================ */

/* ── VARIABLES & RESET ── */
:root {
  --red:      #FF0000;
  --red-dark: #CC0000;
  --ash:      #969494;
  --charcoal: #5C5B5B;
  --black:    #000000;
  --white:    #FFFFFF;
  --off:      #F7F6F5;
  --light:    #EDECEA;
  --border:   #E2E0DE;
  --p: 'Poppins', sans-serif;
  --l: 'Lato', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--l);
  font-weight: 400;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.72;
  font-size: 15px;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ── LAYOUT ── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 52px;
}

/* ── ALERT BAR ── */
.topbar {
  background: var(--black);
  color: rgba(255,255,255,.55);
  text-align: center;
  padding: 10px 20px;
  font-family: var(--l);
  font-size: 12px;
  letter-spacing: .5px;
}
.topbar a {
  color: var(--red);
  font-weight: 700;
}

/* ── NAVIGATION ── */
header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-name {
  font-family: var(--p);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: .1px;
}
.logo-domain {
  font-family: var(--l);
  font-size: 9.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ash);
  margin-top: 1px;
}

.nav-r {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav-ph-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.nav-ph-label {
  font-family: var(--l);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ash);
}
.nav-ph {
  font-family: var(--p);
  font-size: 17px;
  font-weight: 600;
  color: var(--black);
  transition: color .2s;
}
.nav-ph:hover { color: var(--red); }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: var(--p);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  padding: 11px 24px;
  border: none;
  cursor: pointer;
  transition: all .2s;
}
.btn-red  { background: var(--red); color: var(--white); }
.btn-red:hover  { background: var(--red-dark); }
.btn-blk  { background: var(--black); color: var(--white); }
.btn-blk:hover  { background: #1c1c1c; }
.btn-ol   { background: transparent; color: var(--black); border: 1.5px solid var(--black); }
.btn-ol:hover   { background: var(--black); color: var(--white); }
.btn-olw  { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.4); }
.btn-olw:hover  { border-color: var(--white); background: rgba(255,255,255,.07); }

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 54% 46%;
  min-height: 88vh;
  overflow: hidden;
}

.hero-l {
  background: var(--off);
  padding: 76px 68px 68px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--l);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 22px;
}
.hero-tag::before {
  content: '';
  width: 26px;
  height: 1px;
  background: var(--red);
}

.hero-h1 {
  font-family: var(--p);
  font-size: clamp(30px, 3.6vw, 50px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 20px;
}
.hero-h1 span { color: var(--red); }

.hero-body {
  font-family: var(--l);
  font-size: 14.5px;
  color: var(--charcoal);
  line-height: 1.85;
  max-width: 450px;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-call-label {
  font-family: var(--l);
  font-size: 9.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: 5px;
}
.hero-call-num {
  font-family: var(--p);
  font-size: 25px;
  font-weight: 700;
  color: var(--black);
  transition: color .2s;
}
.hero-call-num:hover { color: var(--red); }

.hero-r {
  position: relative;
  overflow: hidden;
}
.hero-r img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-r::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(247,246,245,.22) 0%, transparent 45%);
}

.hero-stat {
  position: absolute;
  bottom: 34px;
  left: 34px;
  z-index: 2;
  background: var(--white);
  border-left: 3px solid var(--red);
  padding: 16px 24px;
  box-shadow: 0 10px 32px rgba(0,0,0,.10);
}
.hero-stat-n {
  font-family: var(--p);
  font-size: 36px;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}
.hero-stat-l {
  font-family: var(--l);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-top: 4px;
}

/* ── ALACARTE BAND ── */
.ac-band {
  background: var(--black);
  padding: 20px 0;
}
.ac-inner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.ac-icon {
  color: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}
.ac-text {
  font-family: var(--l);
  font-size: 13px;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
}
.ac-text strong { color: var(--white); }

/* ── SECTIONS ── */
.sec       { padding: 84px 0; }
.sec-off   { background: var(--off); }
.sec-dark  { background: var(--black); }

.sec-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--l);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.sec-tag::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--red);
  flex-shrink: 0;
}

.sec-h {
  font-family: var(--p);
  font-size: clamp(26px, 2.8vw, 40px);
  font-weight: 700;
  line-height: 1.22;
  color: var(--black);
  margin-bottom: 12px;
}
.sec-h-w { color: var(--white); }

.sec-lead {
  font-family: var(--l);
  font-size: 14.5px;
  color: var(--charcoal);
  line-height: 1.85;
  max-width: 600px;
  margin-bottom: 48px;
}

/* ── PILLARS ── */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
}
.pillar {
  padding: 44px 36px;
  border-right: 1px solid var(--border);
  transition: background .22s;
}
.pillar:last-child { border-right: none; }
.pillar:hover { background: var(--light); }

.p-num {
  font-family: var(--p);
  font-size: 54px;
  font-weight: 700;
  color: var(--light);
  line-height: 1;
  margin-bottom: 16px;
  transition: color .22s;
}
.pillar:hover .p-num { color: #dbd9d6; }

.p-title {
  font-family: var(--p);
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
}
.p-body {
  font-family: var(--l);
  font-size: 13.5px;
  color: var(--charcoal);
  line-height: 1.8;
  margin-bottom: 16px;
}
.p-badge {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid var(--red);
  font-family: var(--l);
  font-size: 9.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red);
}

/* ── SERVICE CARDS ── */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.svc-card {
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: transparent;
  transition: background .25s;
}
.svc-card:hover {
  border-color: #aaa;
  box-shadow: 0 12px 36px rgba(0,0,0,.07);
  transform: translateY(-3px);
}
.svc-card:hover::before,
.svc-card.picked::before { background: var(--red); }
.svc-card.picked { border-color: var(--red); }

.svc-top { padding: 36px 30px 22px; flex: 1; }

.svc-ico {
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  color: var(--red);
}
.svc-name {
  font-family: var(--p);
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
  line-height: 1.25;
}
.svc-sub {
  font-family: var(--l);
  font-size: 10px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: 16px;
}
.svc-rule {
  width: 22px;
  height: 2px;
  background: var(--red);
  margin-bottom: 16px;
}
.svc-desc {
  font-family: var(--l);
  font-size: 13.5px;
  color: var(--charcoal);
  line-height: 1.8;
  margin-bottom: 18px;
}
.svc-time {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--off);
  padding: 11px 13px;
  margin-bottom: 14px;
  font-family: var(--l);
  font-size: 12px;
  color: var(--charcoal);
}
.svc-time strong { color: var(--black); font-weight: 700; }

.svc-addons { display: flex; gap: 6px; flex-wrap: wrap; }
.svc-add {
  font-family: var(--l);
  font-size: 9.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid var(--border);
  color: var(--charcoal);
  background: var(--off);
}

.svc-bot { padding: 0 30px 30px; }
.svc-btn {
  display: block;
  width: 100%;
  padding: 13px;
  font-family: var(--p);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
  background: var(--black);
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: background .2s;
}
.svc-card:hover .svc-btn,
.svc-card.picked .svc-btn { background: var(--red); }

.svc-note {
  text-align: center;
  margin-top: 32px;
  font-family: var(--l);
  font-size: 13px;
  color: var(--charcoal);
}
.svc-note a { color: var(--red); font-weight: 700; }

/* ── REQUIREMENTS ── */
.req-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
}
.req-head {
  font-family: var(--p);
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  padding-bottom: 14px;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--red);
}
.req-list { list-style: none; }
.req-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--l);
  font-size: 13px;
  color: var(--charcoal);
  padding: 9px 0;
  border-bottom: 1px solid var(--light);
  line-height: 1.55;
}
.req-list li::before {
  content: '—';
  color: var(--red);
  flex-shrink: 0;
  font-size: 11px;
  margin-top: 2px;
}

/* ── PHOTO BAND ── */
.photo-band {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  height: 380px;
}
.pb { position: relative; overflow: hidden; }
.pb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(15%);
  transition: transform .6s, filter .5s;
}
.pb:hover img { transform: scale(1.05); filter: grayscale(0%); }
.pb-cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px 18px;
  background: linear-gradient(to top, rgba(0,0,0,.5), transparent);
  font-family: var(--l);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
}

/* ── WHY SECTION ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,.07);
  margin-top: 52px;
}
.why-item {
  padding: 38px 26px;
  border-right: 1px solid rgba(255,255,255,.07);
  transition: background .22s;
}
.why-item:last-child { border-right: none; }
.why-item:hover { background: rgba(255,255,255,.03); }

.why-n {
  font-family: var(--p);
  font-size: 42px;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  margin-bottom: 12px;
}
.why-t {
  font-family: var(--p);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.why-b {
  font-family: var(--l);
  font-size: 12.5px;
  color: rgba(255,255,255,.4);
  line-height: 1.7;
}

/* ── CTA BAND ── */
.cta-band { background: var(--red); padding: 68px 0; }
.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 56px;
}
.cta-h {
  font-family: var(--p);
  font-size: clamp(22px, 2.8vw, 38px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
}
.cta-sub {
  font-family: var(--l);
  font-size: 14px;
  color: rgba(255,255,255,.75);
  margin-top: 10px;
  max-width: 500px;
  line-height: 1.75;
}
.cta-r {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
.cta-ph-label {
  font-family: var(--l);
  font-size: 9.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
.cta-ph {
  font-family: var(--p);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  transition: opacity .2s;
}
.cta-ph:hover { opacity: .8; }

/* ── FOOTER ── */
footer { background: #0b0b0b; padding: 60px 0 32px; }
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 52px;
  margin-bottom: 44px;
}
.foot-name {
  font-family: var(--p);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}
.foot-domain {
  font-family: var(--l);
  font-size: 9.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: 12px;
}
.foot-desc {
  font-family: var(--l);
  font-size: 12px;
  color: rgba(255,255,255,.35);
  line-height: 1.75;
  max-width: 270px;
}
.foot-col-h {
  font-family: var(--p);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.foot-links { list-style: none; }
.foot-links li { margin-bottom: 8px; }
.foot-links a {
  font-family: var(--l);
  font-size: 12.5px;
  color: rgba(255,255,255,.35);
  transition: color .2s;
}
.foot-links a:hover { color: var(--white); }

.foot-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}
.foot-disc {
  font-family: var(--l);
  font-size: 10px;
  color: rgba(255,255,255,.25);
  line-height: 1.65;
  max-width: 700px;
}
.foot-copy {
  font-family: var(--l);
  font-size: 10px;
  color: rgba(255,255,255,.18);
  white-space: nowrap;
}

/* ── LIVE CHAT ── */
#cw {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
}
#ctgl {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--black);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 22px rgba(0,0,0,.22);
  transition: background .2s, transform .2s;
  position: relative;
}
#ctgl:hover { background: var(--red); transform: scale(1.06); }
#ctgl svg { color: #fff; }

.cdot {
  position: absolute;
  top: 2px; right: 2px;
  width: 13px; height: 13px;
  background: var(--red);
  border-radius: 50%;
  border: 2px solid #fff;
  animation: cpulse 2.2s infinite;
}
@keyframes cpulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.3); opacity: .7; }
}

#cwin {
  display: none;
  flex-direction: column;
  position: absolute;
  bottom: 64px; right: 0;
  width: 316px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 16px 48px rgba(0,0,0,.14);
  overflow: hidden;
}
#cwin.open { display: flex; }

.c-head {
  background: var(--black);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.c-av {
  width: 34px; height: 34px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--p);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.c-info { flex: 1; }
.c-nm { font-family: var(--p); font-size: 12.5px; font-weight: 600; color: #fff; }
.c-st { font-family: var(--l); font-size: 11px; color: rgba(255,255,255,.42); }
.c-x { background: none; border: none; color: rgba(255,255,255,.5); cursor: pointer; font-size: 18px; padding: 4px; }
.c-x:hover { color: #fff; }

.c-msgs {
  flex: 1;
  min-height: 175px;
  max-height: 245px;
  overflow-y: auto;
  padding: 14px;
  background: var(--off);
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.m { max-width: 88%; padding: 9px 13px; font-family: var(--l); font-size: 13px; line-height: 1.5; }
.m.ag { background: var(--white); color: var(--black); align-self: flex-start; box-shadow: 0 1px 4px rgba(0,0,0,.05); }
.m.us { background: var(--black); color: #fff; align-self: flex-end; }

.c-foot { display: flex; border-top: 1px solid var(--border); }
.c-inp { flex: 1; border: none; padding: 12px 13px; font-family: var(--l); font-size: 13px; color: var(--black); outline: none; }
.c-snd { background: var(--red); border: none; color: #fff; padding: 12px 14px; cursor: pointer; font-size: 16px; transition: background .2s; }
.c-snd:hover { background: var(--red-dark); }

/* ── SCROLL FADE ── */
.fade {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade.in { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 1040px) {
  .container                              { padding: 0 24px; }
  .hero                                   { grid-template-columns: 1fr; min-height: auto; }
  .hero-l                                 { padding: 60px 26px; }
  .hero-r                                 { height: 360px; }
  .pillars,
  .svc-grid,
  .req-grid,
  .why-grid,
  .foot-grid                              { grid-template-columns: 1fr; }
  .pillar                                 { border-right: none; border-bottom: 1px solid var(--border); }
  .photo-band                             { grid-template-columns: 1fr; height: auto; }
  .pb                                     { height: 230px; }
  .cta-inner                              { grid-template-columns: 1fr; gap: 22px; }
  .cta-r                                  { align-items: flex-start; }
  .ac-inner                               { flex-direction: column; }
  .foot-bottom                            { flex-direction: column; }
}
