/* =========================================================
   Digital Security & AI Consulting — design tokens & base
   ========================================================= */
:root {
  --bg-0: #05070c;
  --bg-1: #0a0f1a;
  --bg-2: #0e1524;
  --panel: rgba(18, 26, 42, 0.55);
  --panel-border: rgba(120, 200, 255, 0.16);
  --panel-border-strong: rgba(120, 200, 255, 0.32);
  --panel-card: rgba(18, 26, 42, 0.34);

  --cyan: #4de8ff;
  --cyan-soft: rgba(77, 232, 255, 0.55);
  --green: #4dffb0;
  --green-soft: rgba(77, 255, 176, 0.5);

  --copper: #ffa557;
  --copper-soft: rgba(255, 165, 87, 0.5);
  --copper-light: #ffcf8f;

  --danger: #ff6b7a;
  --danger-soft: rgba(255, 107, 122, 0.45);

  --text-0: #eef4fb;
  --text-1: #c2ccdb;
  --text-2: #8b96ab;

  --radius: 18px;
  --radius-sm: 12px;

  --font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

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

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  background: var(--bg-0);
  color: var(--text-1);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text-0);
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1em; color: var(--text-1); }
a { color: var(--cyan); text-decoration: none; }
a:hover { text-decoration: underline; }

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

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--cyan);
  color: #041018;
  padding: 10px 16px;
  z-index: 1000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* =========================================================
   Fixed decorative background (grid + glow) — pure CSS
   ========================================================= */
.bg-grid,
.bg-glow {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}

.bg-grid {
  background-image:
    linear-gradient(rgba(120, 200, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 200, 255, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 40%, transparent 90%);
  background-color: var(--bg-0);
}

.bg-glow {
  background:
    radial-gradient(600px 400px at 15% 8%, rgba(77, 232, 255, 0.14), transparent 60%),
    radial-gradient(700px 500px at 90% 30%, rgba(77, 255, 176, 0.10), transparent 60%),
    radial-gradient(900px 700px at 50% 100%, rgba(77, 232, 255, 0.06), transparent 60%);
}

/* =========================================================
   Glass panel
   ========================================================= */
.glass {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 20px 60px -30px rgba(0, 0, 0, 0.6);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.glass:hover {
  border-color: var(--panel-border-strong);
}

/* Cursor-follow glow — JS sets --mx/--my per element on pointermove */
.glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    280px circle at var(--mx, 50%) var(--my, 50%),
    rgba(77, 232, 255, 0.14),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.glass:hover::before { opacity: 1; }

/* 3D tilt + lift toward the cursor — JS sets --rx/--ry/--lift/--card-scale;
   desktop-with-hover only */
.card,
.about-photo-frame {
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg))
    translateY(var(--lift, 0px)) scale(var(--card-scale, 1));
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .card,
  .about-photo-frame {
    transform: none !important;
    transition: none;
  }
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease);
}
.btn-icon { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: linear-gradient(135deg, var(--cyan), var(--green));
  color: #04121a;
  animation: btn-glow-pulse 3.2s ease-in-out infinite;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 3px rgba(77, 232, 255, 0.15), 0 16px 40px -10px rgba(77, 232, 255, 0.6);
  text-decoration: none;
  animation-play-state: paused;
}
@keyframes btn-glow-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(77, 232, 255, 0.35), 0 12px 30px -10px rgba(77, 232, 255, 0.45); }
  50% { box-shadow: 0 0 0 5px rgba(77, 232, 255, 0.12), 0 14px 34px -8px rgba(77, 232, 255, 0.6); }
}
@media (prefers-reduced-motion: reduce) {
  .btn-primary { animation: none; }
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--panel-border);
  color: var(--text-0);
}
.btn-ghost:hover {
  border-color: var(--cyan-soft);
  color: var(--cyan);
  text-decoration: none;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: rgba(37, 211, 102, 0.12);
  border-color: rgba(37, 211, 102, 0.4);
  color: #3fe37f;
}
.btn-whatsapp:hover {
  background: rgba(37, 211, 102, 0.22);
  border-color: #25d366;
  color: #e9fff2;
  text-decoration: none;
  transform: translateY(-2px);
}

.btn-signal {
  background: rgba(58, 118, 240, 0.14);
  border-color: rgba(58, 118, 240, 0.45);
  color: #7ea6ff;
}
.btn-signal:hover {
  background: rgba(58, 118, 240, 0.24);
  border-color: #3a76f0;
  color: #eaf1ff;
  text-decoration: none;
  transform: translateY(-2px);
}

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  background: linear-gradient(to bottom, rgba(5, 7, 12, 0.85), transparent);
  backdrop-filter: blur(6px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  color: var(--text-0);
}
.site-header .btn { padding: 9px 18px; font-size: 0.82rem; }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 90px;
  overflow: hidden;
}

/* Fixed to the viewport (not just the hero) so a faint, slowly drifting
   trace of the shield stays visible behind every section, not just on
   first load — visible through the glass panels as you scroll. */
#hero-canvas-wrap {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0;
  transition: opacity 1.2s var(--ease);
  pointer-events: none;
}
#hero-canvas-wrap.is-ready { opacity: 1; }
#hero-canvas { display: block; width: 100%; height: 100%; }

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: center;
  text-align: center;
}

.hero-copy {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  margin-bottom: 44px;
}

.hero-id {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding: 16px 30px 16px 16px;
  margin-bottom: 40px;
  text-align: left;
}
.hero-photo-frame {
  display: block;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--panel-border-strong);
  animation: ring-pulse 4.5s ease-in-out infinite;
}
@keyframes ring-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(77, 232, 255, 0.08), 0 0 28px rgba(77, 232, 255, 0.25); }
  50% { box-shadow: 0 0 0 7px rgba(77, 232, 255, 0.14), 0 0 38px rgba(77, 232, 255, 0.42); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-photo-frame,
  .about-photo-frame {
    animation: none !important;
  }
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: var(--text-1);
}

.hero-sub {
  font-size: 1.08rem;
  color: var(--text-1);
  max-width: 520px;
  margin: 0 auto 40px;
}

.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 36px;
  border: 1px solid var(--panel-border-strong);
  border-radius: 12px;
  z-index: 1;
}
.scroll-cue span {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  border-radius: 2px;
  background: var(--cyan);
  animation: scrollcue 1.8s ease-in-out infinite;
}
@keyframes scrollcue {
  0% { opacity: 1; top: 6px; }
  70% { opacity: 0; top: 18px; }
  100% { opacity: 0; top: 18px; }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-cue span { animation: none; }
}

/* =========================================================
   Section shared
   ========================================================= */
section { position: relative; padding: 100px 0; }
.section-title { font-size: clamp(1.9rem, 3.5vw, 2.6rem); }
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}

/* =========================================================
   Services
   ========================================================= */
.services {
  position: relative;
  isolation: isolate;
}
/* Soft dark vignette between the 3D background and the content — the
   background's points/edges (especially the Off-Grid group's looser,
   wider-spread state) can otherwise cross directly through the headings
   and card copy. This dims the background gently behind the whole text
   column without a hard-edged box, so it stays atmospheric at the
   section's outer edges. */
.services::before {
  content: "";
  position: absolute;
  inset: -60px 0;
  background: radial-gradient(
    ellipse 75% 65% at 50% 38%,
    rgba(5, 7, 12, 0.62),
    transparent 72%
  );
  z-index: 0;
  pointer-events: none;
}
.services .wrap {
  position: relative;
  z-index: 1;
}

.service-group { margin-top: 56px; }
.service-group:first-of-type { margin-top: 48px; }
.service-group-title {
  font-size: 1.3rem;
  color: var(--cyan);
  margin-bottom: 24px;
  position: relative;
  padding-left: 18px;
}
.service-group-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(var(--cyan), var(--green));
}

/* Bento layout: 3 even cards, then the "Additional ..." card (always 4th)
   spans the full row — breaks the templated 2x2 symmetry with one clear
   focal point per group, rather than four identical tiles. */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card:nth-child(4) {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 20px;
  align-items: start;
}
.card:nth-child(4) .card-icon { margin-bottom: 0; }
.card:nth-child(4) h4 { grid-column: 2; margin-top: 2px; }
.card:nth-child(4) p { grid-column: 2; }

.card {
  padding: 28px;
  /* True frosted glass, not just "dark panel with a border": a much
     stronger blur so the background smears into soft glowing light
     rather than staying as sharp dots, a more translucent fill, a text
     scrim confined to the lower copy zone (not the whole card) to keep
     it readable, and a two-edge inset highlight simulating light
     catching the top-left of a physical glass pane. */
  background:
    linear-gradient(to bottom, transparent 30%, rgba(5, 7, 12, 0.34) 100%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0) 45%),
    var(--panel-card);
  backdrop-filter: blur(34px) saturate(170%);
  -webkit-backdrop-filter: blur(34px) saturate(170%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.09) inset,
    1px 0 0 rgba(255, 255, 255, 0.04) inset,
    0 20px 45px -28px rgba(0, 0, 0, 0.6),
    0 0 26px -10px rgba(77, 232, 255, 0.18);
}
.card:hover {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.12) inset,
    1px 0 0 rgba(255, 255, 255, 0.06) inset,
    0 26px 55px -24px rgba(0, 0, 0, 0.65),
    0 0 40px -8px rgba(77, 232, 255, 0.32);
}
.service-group--offgrid .card {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.09) inset,
    1px 0 0 rgba(255, 255, 255, 0.04) inset,
    0 20px 45px -28px rgba(0, 0, 0, 0.6),
    0 0 26px -10px rgba(255, 165, 87, 0.18);
}
.service-group--offgrid .card:hover {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.12) inset,
    1px 0 0 rgba(255, 255, 255, 0.06) inset,
    0 26px 55px -24px rgba(0, 0, 0, 0.65),
    0 0 40px -8px rgba(255, 165, 87, 0.32);
}

.card-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.08), rgba(77, 232, 255, 0.08));
  border: 1px solid var(--panel-border);
  color: var(--cyan);
  margin-bottom: 16px;
  transition: color 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.card-icon svg {
  width: 22px;
  height: 22px;
  filter: drop-shadow(0 0 6px currentColor);
  animation: icon-float 4.5s ease-in-out infinite;
}
/* Stagger the idle float per card so a grid of icons doesn't breathe in unison */
.card:nth-child(2n) .card-icon svg { animation-delay: 0.6s; }
.card:nth-child(3n) .card-icon svg { animation-delay: 1.2s; }
@keyframes icon-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-3px) scale(1.04); }
}
.card:hover .card-icon {
  color: var(--green);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.1), rgba(77, 255, 176, 0.14));
  border-color: var(--green-soft);
}
.card h4 {
  font-size: 1.08rem;
  margin-bottom: 10px;
}
.card p { color: var(--text-2); font-size: 0.95rem; margin-bottom: 0; }

@media (prefers-reduced-motion: reduce) {
  .card-icon svg { animation: none; }
}

/* Off-Grid group: warm copper accent instead of cyan/green, so the two
   service groups read as distinct rather than a repeated section. */
.service-group--offgrid .service-group-title {
  color: var(--copper);
}
.service-group--offgrid .service-group-title::before {
  background: linear-gradient(var(--copper), var(--copper-light));
}
.service-group--offgrid .card:hover {
  border-color: var(--copper-soft);
}
.service-group--offgrid .card::before {
  background: radial-gradient(
    280px circle at var(--mx, 50%) var(--my, 50%),
    rgba(255, 165, 87, 0.16),
    transparent 70%
  );
}
.service-group--offgrid .card-icon {
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.08), rgba(255, 165, 87, 0.1));
}
.service-group--offgrid .card:hover .card-icon {
  color: var(--copper);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.1), rgba(255, 165, 87, 0.16));
  border-color: var(--copper-soft);
}

/* =========================================================
   About
   ========================================================= */
.about-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: center;
}
.about-photo-frame {
  padding: 10px;
  overflow: hidden;
  animation: ring-pulse 4.5s ease-in-out infinite;
  animation-delay: 1.2s;
}
.about-photo-frame img {
  border-radius: calc(var(--radius) - 6px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 4px 0 28px;
}
.tag-chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  border-radius: 999px;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-1);
  animation: chip-drift 5s ease-in-out infinite;
  animation-delay: var(--drift-delay, 0s);
}
@keyframes chip-drift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
@media (prefers-reduced-motion: reduce) {
  .tag-chip { animation: none; }
}

.about-timeline {
  position: relative;
  padding-left: 26px;
}
.about-timeline::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(var(--cyan), var(--green));
  opacity: 0.35;
}
.about-timeline p {
  position: relative;
}
.about-timeline p::before {
  content: "";
  position: absolute;
  left: -26px;
  top: 7px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan-soft);
}
.about-timeline p:last-of-type { margin-bottom: 0; }

/* =========================================================
   Contact
   ========================================================= */
.contact-inner { max-width: 640px; }
.contact-intro { font-size: 1.05rem; margin-bottom: 28px; }
.contact-direct {
  display: flex;
  gap: 14px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.contact-form {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-2);
}
.field input,
.field textarea {
  background: rgba(6, 10, 18, 0.6);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--text-0);
  resize: vertical;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(77, 232, 255, 0.15), 0 0 20px rgba(77, 232, 255, 0.15);
}
.contact-form .btn-primary {
  align-self: flex-start;
  margin-top: 4px;
}

/* Formspree AJAX success/error states (see js/contact-form.js —
   useDefaultStyles is off there, so this replaces the SDK's own
   light-mode red/green CSS entirely). Hidden until the SDK adds
   data-fs-active on submit result. */
.form-success,
.form-error {
  display: none;
  font-family: var(--font-body);
  font-size: 0.92rem;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
}
.form-success[data-fs-active],
.form-error[data-fs-active] {
  display: block;
}
.form-success {
  background: rgba(77, 255, 176, 0.1);
  border: 1px solid var(--green-soft);
  color: var(--text-0);
}
.form-error {
  background: rgba(255, 107, 122, 0.1);
  border: 1px solid var(--danger-soft);
  color: var(--text-0);
}
.field-error {
  display: none;
  font-size: 0.8rem;
  color: var(--danger);
}
.field-error[data-fs-active] {
  display: block;
}
.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--danger);
}

/* After a successful submit, the form resets and hides its own fields —
   the success banner above (already shown) becomes the whole story
   rather than sitting above a now-empty, still-editable form. */
.contact-form.is-submitted .field,
.contact-form.is-submitted button[type="submit"] {
  display: none;
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  padding: 32px 0 48px;
  border-top: 1px solid var(--panel-border);
}
.footer-inner {
  font-size: 0.85rem;
  color: var(--text-2);
}

/* =========================================================
   Scroll reveal (JS adds .is-visible; CSS-only fallback below)
   ========================================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
/* If JS never runs (e.g. blocked), don't hide content forever */
.no-js [data-reveal] { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1000px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .card:nth-child(4) { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .about-media { max-width: 320px; }
  .card-grid { grid-template-columns: 1fr; }
  .card:nth-child(4) {
    display: block;
  }
  .card:nth-child(4) .card-icon { margin-bottom: 16px; }
  section { padding: 76px 0; }
  .hero { padding-top: 110px; }
}

@media (max-width: 480px) {
  .wrap { padding: 0 18px; }
  .hero-id { flex-direction: row; gap: 16px; padding: 12px 20px 12px 12px; }
  .hero-photo-frame { width: 84px; height: 84px; }
  .contact-direct { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .contact-direct .btn { width: auto; }
}
