/* ==========================================================================
   CISCOM Technology Sdn. Bhd. — Preview Site
   Plain CSS, no framework.
   ========================================================================== */

:root {
  --navy-950: #05070d;
  --navy-900: #0a0f1c;
  --navy-800: #0f1626;
  --navy-700: #161f35;
  --navy-600: #202c48;
  --red: #e31e24;
  --red-dark: #b81319;
  --yellow: #ffd400;
  --white: #ffffff;
  --silver: #c7ccd8;
  --silver-dim: #8b93a7;
  --border: rgba(255, 255, 255, 0.09);

  --ink: #0c1220;
  --muted: #57606f;
  --surface: #ffffff;
  --surface-alt: #f2f4f8;
  --card: #ffffff;
  --line: rgba(12, 18, 32, 0.12);
  --shadow: 0 10px 26px rgba(15, 23, 42, 0.07);

  --font-head: "Barlow Condensed", sans-serif;
  --font-body: "Inter", sans-serif;

  --container: 1200px;
  --gutter: 24px;

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

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

html {
  scroll-behavior: auto;
}

body {
  background: var(--surface);
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--ink);
  line-height: 1.08;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--red);
}

.section-title {
  font-size: clamp(32px, 5vw, 52px);
  margin-top: 10px;
}

.section-lede {
  color: var(--muted);
  max-width: 620px;
  margin-top: 16px;
  font-size: 17px;
}

.accent-yellow { color: var(--yellow); }
.accent-red { color: var(--red); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 3px;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--red-dark);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}

.btn-outline:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

.btn-block {
  width: 100%;
}

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  height: 46px;
  width: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text .brand-name {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.03em;
}

.brand-text .brand-tag {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red-dark);
  margin-top: 2px;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-desktop a {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s var(--ease);
}

.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.25s var(--ease);
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--ink);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-cta {
  padding: 11px 22px;
  font-size: 14px;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 3px;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  margin: 0 auto;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  top: 84px;
  left: 0;
  width: 100%;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
  z-index: 999;
}

.mobile-nav.is-open {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  padding: 12px var(--gutter) 24px;
}

.mobile-nav a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--ink);
}

.mobile-nav .mobile-cta {
  margin-top: 20px;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 84px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 900px 500px at 85% 15%, rgba(227, 30, 36, 0.16), transparent 60%),
    radial-gradient(ellipse 700px 600px at 10% 90%, rgba(32, 44, 72, 0.55), transparent 65%),
    linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 60%, var(--navy-950) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, black 30%, transparent 80%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  width: 100%;
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow);
  border: 1px solid rgba(255, 212, 0, 0.35);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 26px;
}

.hero-tagline .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
}

.hero h1 {
  font-size: clamp(42px, 6.4vw, 84px);
  letter-spacing: 0;
  color: var(--white);
}

.hero h1 span {
  color: var(--red);
}

.hero-sub {
  margin-top: 24px;
  max-width: 520px;
  color: var(--silver-dim);
  font-size: 18px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 56px;
  flex-wrap: wrap;
}

.hero-stat-label {
  font-size: 13px;
  color: var(--silver-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.hero-stat-value {
  font-family: var(--font-head);
  font-size: 34px;
  color: var(--white);
  font-weight: 700;
}

.hero-visual {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4 / 5;
  background: var(--navy-800);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,7,13,0) 40%, rgba(5,7,13,0.85) 100%);
}

.hero-visual-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 2;
  font-family: var(--font-head);
  color: var(--white);
  font-size: 15px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-visual-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(227, 30, 36, 0.25);
}

/* ---------- Generic Section ---------- */

section {
  position: relative;
  padding: 110px 0;
}

.section-head {
  margin-bottom: 60px;
}

.section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-head.center .section-lede {
  margin-left: auto;
  margin-right: auto;
}

.section-alt {
  background: var(--surface-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* ---------- Service Cards (Home snapshot) ---------- */

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 34px 24px;
  box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(227, 30, 36, 0.4);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

.service-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: rgba(227, 30, 36, 0.12);
  color: var(--red);
  margin-bottom: 22px;
}

.service-icon svg {
  width: 26px;
  height: 26px;
}

.service-card h3 {
  font-size: 21px;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.service-card p {
  font-size: 14.5px;
  color: var(--muted);
  margin-bottom: 18px;
}

.service-link {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.25s var(--ease);
}

.service-card:hover .service-link svg {
  transform: translateX(4px);
}

/* ---------- Why Us ---------- */

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-card {
  border-left: 2px solid var(--red);
  padding-left: 26px;
}

.why-card .why-number {
  font-family: var(--font-head);
  font-size: 15px;
  color: var(--red-dark);
  letter-spacing: 0.1em;
}

.why-card h3 {
  font-size: 24px;
  margin: 12px 0 12px;
}

.why-card p {
  font-size: 15px;
  color: var(--muted);
}

/* ---------- Coverage ---------- */

.coverage-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
}

.chip {
  padding: 12px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--font-head);
  font-size: 15px;
  letter-spacing: 0.03em;
  color: var(--ink);
  background: var(--surface-alt);
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease), background 0.3s var(--ease);
}

.chip:hover {
  border-color: var(--red);
  color: var(--red-dark);
  background: var(--surface);
}

.chip.more {
  background: var(--red);
  color: var(--white);
  border-color: transparent;
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.coverage-grid .chip {
  text-align: center;
  border-radius: 6px;
  padding: 22px 14px;
}

/* ---------- Closing CTA band ---------- */

.cta-band {
  background: linear-gradient(120deg, var(--navy-900), var(--navy-800));
  border-top: 1px solid var(--border);
  text-align: center;
}

.cta-band h2 {
  font-size: clamp(30px, 4.5vw, 48px);
  color: var(--white);
}

.cta-band p {
  color: var(--silver-dim);
  max-width: 520px;
  margin: 18px auto 36px;
}

.cta-band-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Services page ---------- */

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 90px 0;
  border-bottom: 1px solid var(--line);
}

.service-detail:last-of-type {
  border-bottom: none;
}

.service-detail.reverse .service-detail-media {
  order: 2;
}

.service-detail-index {
  font-family: var(--font-head);
  font-size: 15px;
  color: var(--red);
  letter-spacing: 0.14em;
  margin-bottom: 16px;
}

.service-detail h2 {
  font-size: clamp(30px, 4vw, 44px);
  margin-bottom: 20px;
}

.service-detail p {
  color: var(--muted);
  margin-bottom: 16px;
  font-size: 16px;
}

.service-detail-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--ink);
}

.service-detail-list svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--red);
}

.service-detail-media {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
  background: var(--surface-alt);
  box-shadow: var(--shadow);
}

.service-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- About page ---------- */

.about-hero {
  padding-top: 170px;
  padding-bottom: 60px;
}

.about-hero .section-lede {
  max-width: 720px;
  margin-left: 0;
}

.heritage-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.heritage-media {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow);
}

.heritage-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.heritage-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  padding: 14px 18px;
  border-radius: 4px;
  line-height: 1.1;
}

.heritage-badge .num {
  font-size: 30px;
  font-weight: 700;
  display: block;
}

.heritage-badge .label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.heritage-copy p {
  color: var(--muted);
  margin-bottom: 18px;
  font-size: 16.5px;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.expertise-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 30px 26px;
  box-shadow: var(--shadow);
}

.expertise-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.expertise-card p {
  font-size: 14.5px;
  color: var(--muted);
}

/* ---------- Contact page ---------- */

.contact-hero {
  padding-top: 170px;
  padding-bottom: 50px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 20px 26px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 18px;
  box-shadow: var(--shadow);
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 6px;
  background: rgba(227, 30, 36, 0.12);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-card-icon svg {
  width: 22px;
  height: 22px;
}

.contact-card h3 {
  font-size: 16px;
  color: var(--ink);
  text-transform: none;
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 6px;
}

.contact-card p, .contact-card a.value {
  font-size: 15px;
  color: var(--muted);
}

.contact-card a.value:hover {
  color: var(--red-dark);
}

.whatsapp-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #25d366;
  color: #06210f;
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 20px;
  border-radius: 6px;
  margin: 26px 0;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}

.whatsapp-cta:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
}

.whatsapp-cta svg {
  width: 24px;
  height: 24px;
}

.map-frame {
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  box-shadow: var(--shadow);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-form {
  background: var(--surface-alt);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 40px;
}

.form-row {
  margin-bottom: 20px;
}

.form-row label {
  display: block;
  font-family: var(--font-head);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 13px 16px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color 0.25s var(--ease);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--red);
}

.form-row textarea {
  resize: vertical;
  min-height: 110px;
}

.form-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 14px;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--surface-alt);
  border-top: 1px solid var(--line);
  padding: 70px 0 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer-brand .brand {
  margin-bottom: 18px;
}

.footer-brand p {
  color: var(--muted);
  font-size: 14.5px;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 15px;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  color: var(--ink);
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul a {
  color: var(--muted);
  font-size: 14.5px;
  transition: color 0.2s var(--ease);
}

.footer-col ul a:hover {
  color: var(--red-dark);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
}

/* ---------- Reveal animation base states ---------- */

.reveal-up,
.reveal-fade,
.reveal-left,
.reveal-right,
.reveal-scale {
  will-change: transform, opacity;
}

/* ---------- WhatsApp Floating Button ---------- */

.wa-float {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 900;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: transform 0.25s var(--ease);
}

.wa-float:hover {
  transform: scale(1.08);
}

.wa-float svg {
  width: 30px;
  height: 30px;
  color: #06210f;
}

/* ---------- Responsive ---------- */

@media (max-width: 1080px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .coverage-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    row-gap: 40px;
  }
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    aspect-ratio: 16 / 10;
    order: -1;
  }
  .heritage-grid,
  .service-detail,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .service-detail.reverse .service-detail-media {
    order: 0;
  }
}

@media (max-width: 768px) {
  .nav-desktop,
  .header-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  section {
    padding: 76px 0;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .coverage-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .expertise-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    gap: 22px;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .coverage-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-ctas .btn,
  .cta-band-actions .btn {
    width: 100%;
  }
  .hero-ctas,
  .cta-band-actions {
    flex-direction: column;
  }
}
