/* ═══════════════════════════════════════════
   ROOT & DESIGN TOKENS
   Palette extracted from brand reference image
═══════════════════════════════════════════ */
:root {
  /* Backgrounds */
  --bg:        #070B14;
  --bg-2:      #0D1A2A;
  --bg-3:      #0F1F30;
  --bg-card:   #0A1628;

  /* Accent colors — cyan, purple, pink/magenta */
  --cyan:       #00F0FF;
  --cyan-dim:   rgba(0, 240, 255, 0.10);
  --cyan-glow:  rgba(0, 240, 255, 0.22);

  --purple:     #9333EA;
  --purple-dim: rgba(147, 51, 234, 0.12);
  --purple-glow:rgba(147, 51, 234, 0.28);

  --pink:       #FF2D78;
  --pink-dim:   rgba(255, 45, 120, 0.10);
  --pink-glow:  rgba(255, 45, 120, 0.22);

  /* Text */
  --text:   #FFFFFF;
  --text-2: #8AA0B8;
  --text-3: #3A5068;

  /* Borders */
  --border:       rgba(0, 240, 255, 0.08);
  --border-hover: rgba(0, 240, 255, 0.35);

  /* Misc */
  --radius:    12px;
  --radius-lg: 20px;
  --font-head: 'Syne', sans-serif;
  --font-body: 'Inter', sans-serif;
  --t:   0.3s ease;
  --t-s: 0.6s ease;
}

/* ═══════════════════════════════════════════
   RESET
═══════════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: none; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ═══════════════════════════════════════════
   CUSTOM CURSOR
═══════════════════════════════════════════ */
.cursor {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .2s ease, height .2s ease;
  box-shadow: 0 0 10px var(--cyan);
}
.cursor-follower {
  position: fixed;
  width: 38px; height: 38px;
  border: 1px solid rgba(0, 240, 255, 0.45);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width .2s ease, height .2s ease, opacity .2s ease;
}
.cursor.expanded { width: 56px; height: 56px; background: var(--cyan-dim); box-shadow: 0 0 20px var(--cyan-glow); }
.cursor-follower.hidden { opacity: 0; }

/* ═══════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 7rem 0; }

/* ═══════════════════════════════════════════
   TYPOGRAPHY HELPERS
═══════════════════════════════════════════ */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 1rem;
}
.section-sub {
  color: var(--text-2);
  max-width: 560px;
  font-size: 1.05rem;
}
.section-header { margin-bottom: 4rem; }

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 100px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--t);
  white-space: nowrap;
}
.btn-primary {
  background: var(--cyan);
  color: #000;
  font-weight: 700;
}
.btn-primary:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--cyan-glow);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px var(--cyan-dim);
}
.btn-full { width: 100%; justify-content: center; }
.arrow { display: inline-block; transition: transform var(--t); }
.btn:hover .arrow { transform: translateX(4px); }

/* ═══════════════════════════════════════════
   REVEAL ANIMATIONS
═══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-line { display: block; overflow: hidden; }

/* ═══════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem 0;
  transition: background var(--t), padding var(--t), border-color var(--t);
}
.nav.scrolled {
  background: rgba(7, 11, 20, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.nav-logo span { color: var(--cyan); }
.nav-links { display: flex; gap: 2.5rem; align-items: center; }
.nav-links a {
  font-size: 0.9rem;
  color: var(--text-2);
  font-weight: 500;
  transition: color var(--t);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--cyan);
  transition: width var(--t);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { padding: 0.6rem 1.5rem; font-size: 0.875rem; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: var(--t);
}

/* ═══════════════════════════════════════════
   MOBILE MENU
═══════════════════════════════════════════ */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 99;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 2rem;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu ul { display: flex; flex-direction: column; gap: 1.5rem; text-align: center; }
.mobile-menu a {
  font-family: var(--font-head);
  font-size: 2.25rem; font-weight: 700;
  color: var(--text-2);
  transition: color var(--t);
}
.mobile-menu a:hover { color: var(--cyan); }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center;
  position: relative; overflow: hidden;
  padding-top: 80px;
}

/* Background elements */
.hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.hero-orb--cyan {
  width: 700px; height: 500px;
  top: -15%; left: -10%;
  background: radial-gradient(ellipse, rgba(0, 240, 255, 0.12) 0%, transparent 70%);
}
.hero-orb--purple {
  width: 500px; height: 600px;
  bottom: -20%; right: -5%;
  background: radial-gradient(ellipse, rgba(147, 51, 234, 0.14) 0%, transparent 70%);
}

/* Subtle grid overlay — matches reference image */
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content { padding: 4rem 0 8rem; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.45rem 1.2rem;
  background: var(--cyan-dim);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 100px;
  font-size: 0.82rem; font-weight: 500;
  color: var(--cyan);
  margin-bottom: 2rem;
}
.dot {
  width: 7px; height: 7px;
  background: var(--cyan);
  border-radius: 50%;
  animation: pulse 2s infinite;
  box-shadow: 0 0 6px var(--cyan);
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.75); }
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 2rem;
}
.accent-line { color: var(--cyan); }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-2);
  margin-bottom: 2.5rem;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }

/* Marquee */
.marquee-wrapper {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.1rem 0;
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(7, 11, 20, 0.6);
  backdrop-filter: blur(10px);
}
.marquee {
  display: flex; gap: 2.5rem;
  width: max-content;
  animation: marquee 22s linear infinite;
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-3);
}
.marquee span { white-space: nowrap; }
.marquee .sep { color: var(--cyan); opacity: 0.6; }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════ */
.services { background: var(--bg); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-card {
  background: var(--bg);
  padding: 2.5rem;
  position: relative; overflow: hidden;
  transition: background var(--t);
}
.service-card::before {
  content: '';
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity var(--t);
}
.service-card:hover { background: var(--bg-2); }
.service-card:hover::before { opacity: 1; }

/* Per-card glow tints */
.service-card:nth-child(1)::before,
.service-card:nth-child(4)::before { background: var(--cyan-dim); }
.service-card:nth-child(2)::before,
.service-card:nth-child(5)::before { background: var(--purple-dim); }
.service-card:nth-child(3)::before,
.service-card:nth-child(6)::before { background: var(--pink-dim); }

/* Top border glow on hover */
.service-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  opacity: 0;
  transition: opacity var(--t);
}
.service-card:nth-child(1)::after,
.service-card:nth-child(4)::after { background: var(--cyan); }
.service-card:nth-child(2)::after,
.service-card:nth-child(5)::after { background: var(--purple); }
.service-card:nth-child(3)::after,
.service-card:nth-child(6)::after { background: var(--pink); }
.service-card:hover::after { opacity: 1; }

.service-icon {
  width: 48px; height: 48px;
  margin-bottom: 1.5rem;
}
.service-icon svg { width: 100%; height: 100%; }
.icon--cyan   { color: var(--cyan); }
.icon--purple { color: var(--purple); }
.icon--pink   { color: var(--pink); }

.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.2rem; font-weight: 700;
  margin-bottom: 0.75rem;
}
.service-card p { color: var(--text-2); font-size: 0.9rem; line-height: 1.75; }

.service-number {
  position: absolute; top: 2rem; right: 2rem;
  font-size: 0.75rem; font-weight: 700;
  color: var(--text-3); font-family: var(--font-head);
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════
   WORK / PORTFOLIO
═══════════════════════════════════════════ */
.work { background: var(--bg-2); }

.work-filters {
  display: flex; gap: 0.625rem;
  margin-bottom: 3rem; flex-wrap: wrap;
}
.filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  font-size: 0.85rem; font-weight: 500;
  border: 1px solid var(--border);
  color: var(--text-2);
  background: transparent;
  transition: var(--t);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--cyan);
  color: #000; font-weight: 700;
  border-color: var(--cyan);
  box-shadow: 0 0 16px var(--cyan-glow);
}

/* Masonry-style grid */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 1.25rem;
}
.work-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: none;
}
.work-card--large {
  grid-column: span 2;
}

.work-img {
  width: 100%; height: 100%;
  position: relative; overflow: hidden;
  transition: transform 0.5s ease;
}
.work-card:hover .work-img { transform: scale(1.03); }

/* Placeholder backgrounds using the brand palette */
.work-img--1 { background: linear-gradient(135deg, #05121F 0%, #0D2040 40%, rgba(0,240,255,0.08) 100%); }
.work-img--2 { background: linear-gradient(135deg, #100520 0%, #1F0A42 50%, rgba(147,51,234,0.15) 100%); }
.work-img--3 { background: linear-gradient(135deg, #180510 0%, #2D0920 50%, rgba(255,45,120,0.15) 100%); }
.work-img--4 { background: linear-gradient(135deg, #041220 0%, #061E35 50%, rgba(0,240,255,0.06) 100%); }
.work-img--5 { background: linear-gradient(135deg, #0C0520 0%, #160B3A 40%, rgba(147,51,234,0.12) 100%); }
.work-img--6 { background: linear-gradient(135deg, #15040C 0%, #280818 50%, rgba(255,45,120,0.12) 100%); }
.work-img--7 { background: linear-gradient(135deg, #041520 0%, #07253A 50%, rgba(0,240,255,0.10) 100%); }

/* Inner glow shapes for visual interest */
.work-img::before {
  content: '';
  position: absolute;
  top: 25%; left: 25%;
  width: 50%; height: 50%;
  border-radius: 50%;
  background: rgba(0, 240, 255, 0.06);
  filter: blur(40px);
}

.work-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,11,20,0.95) 0%, transparent 65%);
  padding: 1.5rem;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.work-img:hover .work-overlay { opacity: 1; transform: translateY(0); }

.work-tag {
  display: inline-block;
  padding: 0.22rem 0.75rem;
  border-radius: 100px;
  font-size: 0.72rem; font-weight: 700;
  margin-bottom: 0.5rem; width: fit-content;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.tag--cyan   { background: var(--cyan);   color: #000; }
.tag--purple { background: var(--purple); color: #fff; }
.tag--pink   { background: var(--pink);   color: #fff; }

.work-overlay h3 {
  font-family: var(--font-head);
  font-size: 1.2rem; font-weight: 700;
  margin-bottom: 0.2rem;
}
.work-overlay p { font-size: 0.85rem; color: var(--text-2); }

/* ═══════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════ */
.about { background: var(--bg); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.about-content p {
  color: var(--text-2);
  margin-bottom: 1.25rem;
  line-height: 1.8; font-size: 1.05rem;
}
.about-content .section-title { margin-bottom: 1.5rem; }
.about-content .btn { margin-top: 1rem; }

.about-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.stat {
  padding: 2rem;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--t), box-shadow var(--t);
  position: relative; overflow: hidden;
}
.stat::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
}
.stat--cyan::before  { background: var(--cyan); }
.stat--purple::before{ background: var(--purple); }
.stat--pink::before  { background: var(--pink); }

.stat--cyan:hover   { border-color: var(--cyan-glow);   box-shadow: 0 4px 24px var(--cyan-dim); }
.stat--purple:hover { border-color: var(--purple-glow); box-shadow: 0 4px 24px var(--purple-dim); }
.stat--pink:hover   { border-color: var(--pink-glow);   box-shadow: 0 4px 24px var(--pink-dim); }

.stat-number {
  display: block;
  font-family: var(--font-head);
  font-size: 3rem; font-weight: 800;
  line-height: 1; margin-bottom: 0.5rem;
}
.stat--cyan   .stat-number { color: var(--cyan); }
.stat--purple .stat-number { color: var(--purple); }
.stat--pink   .stat-number { color: var(--pink); }
.stat-number::after { content: '+'; font-size: 2rem; }

.stat-label { font-size: 0.85rem; color: var(--text-2); font-weight: 500; }

/* ═══════════════════════════════════════════
   PROCESS
═══════════════════════════════════════════ */
.process { background: var(--bg-2); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 2.2rem; left: 3rem; right: 3rem;
  height: 1px;
  background: linear-gradient(to right, var(--cyan), var(--purple), var(--pink), transparent);
  opacity: 0.3;
}

.process-step { position: relative; }

.step-num {
  font-family: var(--font-head);
  font-size: 2.5rem; font-weight: 800;
  line-height: 1; margin-bottom: 1.5rem;
  position: relative; display: inline-block;
}
.step--cyan   { color: var(--cyan); }
.step--purple { color: var(--purple); }
.step--pink   { color: var(--pink); }

/* Glow dot behind number */
.step-num::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 50px; height: 50px;
  border-radius: 50%;
  filter: blur(20px);
  z-index: -1;
}
.step--cyan::before   { background: var(--cyan-dim); }
.step--purple::before { background: var(--purple-dim); }
.step--pink::before   { background: var(--pink-dim); }

.step-content h3 {
  font-family: var(--font-head);
  font-size: 1.1rem; font-weight: 700;
  margin-bottom: 0.75rem;
}
.step-content p { color: var(--text-2); font-size: 0.9rem; line-height: 1.75; }

/* ═══════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════ */
.contact { background: var(--bg); }

.contact-inner {
  max-width: 720px; margin: 0 auto; text-align: center;
}
.contact-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; line-height: 1.08;
  margin-bottom: 1rem;
}
.contact-inner > p { color: var(--text-2); margin-bottom: 3rem; font-size: 1.05rem; }

.contact-form {
  text-align: left;
  display: flex; flex-direction: column; gap: 1.25rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label { font-size: 0.85rem; font-weight: 500; color: var(--text-2); }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.875rem 1.25rem;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text); font-size: 0.95rem;
  outline: none; resize: none;
  -webkit-appearance: none;
  transition: border-color var(--t), box-shadow var(--t);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-3); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px var(--cyan-dim);
}
.form-group select option { background: var(--bg-2); color: var(--text); }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 2rem;
}
.footer-top {
  display: flex; align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem; flex-wrap: wrap; gap: 2rem;
}
.footer-logo {
  font-family: var(--font-head);
  font-size: 1.5rem; font-weight: 800; letter-spacing: -0.03em;
}
.footer-logo span { color: var(--cyan); }

.footer-links { display: flex; gap: 2rem; }
.footer-links a { font-size: 0.9rem; color: var(--text-2); transition: color var(--t); }
.footer-links a:hover { color: var(--cyan); }

.footer-socials { display: flex; gap: 1.25rem; align-items: center; }
.footer-socials a { color: var(--text-3); transition: color var(--t), filter var(--t); }
.footer-socials a:hover { color: var(--cyan); filter: drop-shadow(0 0 6px var(--cyan-glow)); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 2rem; border-top: 1px solid var(--border);
  font-size: 0.82rem; color: var(--text-3);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .work-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 260px; }
  .work-card--large { grid-column: span 1; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero-title { font-size: clamp(2.8rem, 12vw, 5rem); }
  .services-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  body { cursor: auto; }
  .cursor, .cursor-follower { display: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .section { padding: 5rem 0; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
