/* ===========================
   YASI DIGITAL — STYLESHEET
   Colors: #e8006e (pink), #9b0080 (purple), #0a0a0f (dark), #fff
   Fonts: Syne (headings) + DM Sans (body)
=========================== */

:root {
  --pink: #e8006e;
  --purple: #9b0080;
  --dark: #0a0a0f;
  --dark2: #111118;
  --dark3: #1a1a24;
  --card-bg: #14141e;
  --border: rgba(232, 0, 110, 0.15);
  --text: #e8e8f0;
  --text-muted: #8888aa;
  --white: #ffffff;
  --gradient: linear-gradient(135deg, #e8006e, #9b0080);
  --gradient-soft: linear-gradient(135deg, rgba(232,0,110,0.12), rgba(155,0,128,0.08));
  --radius: 14px;
  --shadow: 0 4px 32px rgba(232,0,110,0.08);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Syne', sans-serif; font-weight: 700; line-height: 1.15; }

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

img { max-width: 100%; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* === GRADIENT TEXT === */
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === BUTTONS === */
.btn-primary {
  display: inline-block;
  background: var(--gradient);
  color: #fff;
  padding: 13px 32px;
  border-radius: 50px;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,0,110,0.35); }
.btn-primary.btn-large { padding: 16px 44px; font-size: 1.05rem; }
.btn-primary.btn-full { width: 100%; text-align: center; padding: 16px; font-size: 1rem; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text);
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 28px;
  border: 1px solid var(--border);
  border-radius: 50px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--pink); color: var(--pink); }

.btn-nav {
  display: inline-block;
  background: var(--gradient);
  color: #fff;
  padding: 10px 24px;
  border-radius: 50px;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-nav:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(232,0,110,0.3); }

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.logo { display: flex; align-items: center; }
.logo-img { height: 42px; width: auto; }
.nav-links { display: flex; gap: 32px; margin-left: auto; }
.nav-links a {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gradient);
  transition: width 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--dark2);
  padding: 20px 24px;
  border-top: 1px solid var(--border);
}
.mobile-menu a {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  color: var(--text-muted);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu.open { display: flex; }

/* === HERO SECTION === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
  max-width: 1180px;
  margin: 0 auto;
}

.hero-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
}
.blob1 {
  width: 600px; height: 600px;
  background: var(--pink);
  top: -200px; left: -100px;
  animation: blobFloat 8s ease-in-out infinite;
}
.blob2 {
  width: 500px; height: 500px;
  background: var(--purple);
  bottom: -100px; right: -100px;
  animation: blobFloat 10s ease-in-out infinite reverse;
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.05); }
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232,0,110,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,0,110,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  flex: 1;
  max-width: 580px;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: var(--gradient-soft);
  border: 1px solid var(--border);
  color: var(--pink);
  padding: 7px 18px;
  border-radius: 50px;
  font-family: 'Syne', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeUp 0.6s ease both;
}

.hero-title {
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 22px;
  animation: fadeUp 0.6s 0.1s ease both;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 36px;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 52px;
  animation: fadeUp 0.6s 0.3s ease both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  animation: fadeUp 0.6s 0.4s ease both;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.stat-divider { width: 1px; height: 36px; background: var(--border); }

/* Hero Visual */
.hero-visual {
  flex: 0 0 420px;
  height: 420px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeUp 0.8s 0.3s ease both;
}
.orbit-ring {
  position: absolute;
  border: 1px solid var(--border);
  border-radius: 50%;
}
.ring1 { width: 260px; height: 260px; border-color: rgba(232,0,110,0.2); animation: spin 12s linear infinite; }
.ring2 { width: 360px; height: 360px; border-color: rgba(155,0,128,0.15); animation: spin 20s linear infinite reverse; }
.ring3 { width: 420px; height: 420px; border-color: rgba(232,0,110,0.08); animation: spin 30s linear infinite; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.center-icon {
  width: 100px; height: 100px;
  background: var(--card-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--border);
  box-shadow: 0 0 60px rgba(232,0,110,0.15);
  z-index: 2;
}
.center-icon svg { width: 56px; height: 56px; }

.orbit-dot {
  position: absolute;
  width: 10px; height: 10px;
  background: var(--gradient);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--pink);
}
.dot1 { top: 50px; left: 50%; animation: spin 12s linear infinite; transform-origin: 0 80px; }
.dot2 { top: 30px; left: 50%; animation: spin 20s linear infinite reverse; transform-origin: 0 150px; }
.dot3 { top: 10px; left: 50%; animation: spin 30s linear infinite; transform-origin: 0 200px; }

/* === PAGE HERO === */
.page-hero {
  padding: 150px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero-content { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-bottom: 16px; }
.page-hero p { font-size: 1.05rem; color: var(--text-muted); line-height: 1.75; }

/* === SECTION LABELS === */
.section-label {
  display: inline-block;
  color: var(--pink);
  font-family: 'Syne', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.center-label { display: block; text-align: center; }
.section-title { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; margin-bottom: 16px; line-height: 1.2; }
.text-center { text-align: center; }
.section-sub { color: var(--text-muted); font-size: 1rem; max-width: 540px; margin: 0 auto 52px; text-align: center; }

/* === SERVICES STRIP === */
.services-strip {
  padding: 100px 0;
  background: var(--dark2);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 8px;
}
.service-card {
  display: block;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.service-card:hover { border-color: rgba(232,0,110,0.35); transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card:hover::before { transform: scaleX(1); }
.service-card.featured { border-color: rgba(232,0,110,0.35); }
.service-card.featured::before { transform: scaleX(1); }
.sc-icon { font-size: 2rem; margin-bottom: 14px; display: block; }
.service-card h3 { font-family: 'Syne', sans-serif; font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: var(--white); }
.service-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; margin-bottom: 16px; }
.sc-arrow { color: var(--pink); font-size: 1rem; font-weight: 700; transition: transform 0.2s; display: inline-block; }
.service-card:hover .sc-arrow { transform: translateX(4px); }

/* === WHY US === */
.why-us { padding: 100px 0; }
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-text p { color: var(--text-muted); margin-bottom: 20px; line-height: 1.75; }
.why-list { list-style: none; margin: 24px 0 32px; display: flex; flex-direction: column; gap: 12px; }
.why-list li { display: flex; align-items: center; gap: 12px; font-size: 0.95rem; color: var(--text); }
.check { color: var(--pink); font-weight: 700; font-size: 1rem; }

.why-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.why-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 0.2s, transform 0.2s;
}
.why-card:hover { border-color: rgba(232,0,110,0.35); transform: translateY(-3px); }
.wc-icon { font-size: 1.8rem; margin-bottom: 10px; }
.why-card strong { font-family: 'Syne', sans-serif; font-size: 0.95rem; display: block; margin-bottom: 6px; color: var(--white); }
.why-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.55; }

/* === CTA BAND === */
.cta-band {
  background: linear-gradient(135deg, rgba(232,0,110,0.12) 0%, rgba(155,0,128,0.1) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
  text-align: center;
}
.cta-inner h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 12px; color: var(--white); }
.cta-inner p { color: var(--text-muted); margin-bottom: 32px; font-size: 1rem; }

/* === FOOTER === */
.footer { background: var(--dark2); border-top: 1px solid var(--border); padding: 72px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-logo { height: 40px; width: auto; margin-bottom: 16px; }
.footer-brand p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; max-width: 240px; }
.footer-links h4, .footer-services h4, .footer-contact h4 {
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.88rem; color: var(--text-muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--pink); }
.footer-services { display: flex; flex-direction: column; gap: 10px; }
.footer-services span { font-size: 0.85rem; color: var(--text-muted); }
.footer-contact p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 8px; }
.footer-contact a { color: var(--text-muted); transition: color 0.2s; }
.footer-contact a:hover { color: var(--pink); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  text-align: center;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.82rem; }

/* === ABOUT PAGE === */
.about-mission { padding: 100px 0; }
.about-mission-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.mission-text p { color: var(--text-muted); margin-bottom: 18px; line-height: 1.75; }
.mission-visual { display: flex; flex-direction: column; gap: 20px; }
.mission-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.mc-number { font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 800; margin-bottom: 10px; display: block; }
.mission-card h3 { font-family: 'Syne', sans-serif; font-size: 1.1rem; margin-bottom: 10px; color: var(--white); }
.mission-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; }

.values-section { padding: 100px 0; background: var(--dark2); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}
.value-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.value-card:hover { border-color: rgba(232,0,110,0.35); transform: translateY(-4px); }
.val-icon { font-size: 2rem; margin-bottom: 14px; display: block; }
.value-card h3 { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--white); }
.value-card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; }

.why-choose { padding: 100px 0; }
.wc-inner { max-width: 840px; }
.diff-list { display: flex; flex-direction: column; gap: 0; margin-top: 8px; }
.diff-item {
  display: flex;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.diff-num { font-family: 'Syne', sans-serif; font-size: 1.4rem; font-weight: 800; flex: 0 0 48px; }
.diff-content h3 { font-family: 'Syne', sans-serif; font-size: 1.1rem; margin-bottom: 10px; color: var(--white); }
.diff-content p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.7; }

/* === SERVICES PAGE === */
.services-detail { padding: 80px 0; }
.srv-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0 48px;
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.srv-num { font-family: 'Syne', sans-serif; font-size: 1.2rem; font-weight: 800; padding-top: 8px; }
.srv-body { display: flex; gap: 32px; align-items: flex-start; }
.srv-icon { font-size: 2.8rem; flex: 0 0 auto; padding-top: 4px; }
.srv-text h2 { font-size: 1.6rem; margin-bottom: 14px; color: var(--white); }
.srv-text p { color: var(--text-muted); line-height: 1.75; margin-bottom: 20px; }
.srv-text ul { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.srv-text ul li { color: var(--text-muted); font-size: 0.9rem; padding-left: 18px; position: relative; }
.srv-text ul li::before { content: '→'; position: absolute; left: 0; color: var(--pink); font-size: 0.8rem; }

/* === CONTACT PAGE === */
.contact-section { padding: 80px 0 100px; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: flex-start;
}
.contact-info .section-title { font-size: 1.8rem; margin-bottom: 16px; }
.contact-info > p { color: var(--text-muted); line-height: 1.75; margin-bottom: 36px; }
.contact-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.ci-icon { font-size: 1.4rem; flex: 0 0 auto; margin-top: 2px; }
.contact-item strong { font-family: 'Syne', sans-serif; font-size: 0.9rem; display: block; margin-bottom: 4px; color: var(--white); }
.contact-item p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; }
.contact-item a { color: var(--text-muted); transition: color 0.2s; }
.contact-item a:hover { color: var(--pink); }

.contact-social { display: flex; gap: 10px; }
.social-btn {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.social-btn:hover { border-color: var(--pink); color: var(--pink); background: rgba(232,0,110,0.06); }

/* FORM */
.contact-form-wrap { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group.full { grid-column: 1/-1; }
.form-group label { font-family: 'Syne', sans-serif; font-size: 0.82rem; font-weight: 600; color: var(--text-muted); letter-spacing: 0.04em; }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-group select { appearance: none; cursor: pointer; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--pink); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(136,136,170,0.5); }

.form-success {
  text-align: center;
  padding: 40px 20px;
  background: rgba(232,0,110,0.06);
  border-radius: var(--radius);
  border: 1px solid rgba(232,0,110,0.2);
  margin-bottom: 20px;
}
.success-icon {
  width: 56px; height: 56px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 16px;
  color: white;
}
.form-success h3 { font-family: 'Syne', sans-serif; margin-bottom: 8px; font-size: 1.2rem; }
.form-success p { color: var(--text-muted); font-size: 0.92rem; }

.form-error {
  background: rgba(220,50,50,0.08);
  border: 1px solid rgba(220,50,50,0.2);
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 0.88rem;
  color: #ff6b6b;
  margin-bottom: 16px;
}
.form-error a { color: var(--pink); }

.map-section { line-height: 0; }
.map-section iframe { display: block; filter: brightness(0.85) saturate(0.5); }

/* === ANIMATIONS === */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .why-inner, .about-mission-inner, .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .hero { min-height: auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .values-grid { grid-template-columns: 1fr; }
  .srv-item { grid-template-columns: 1fr; gap: 0; }
  .srv-num { display: none; }
  .srv-body { flex-direction: column; }
  .diff-item { flex-direction: column; gap: 12px; }
  .hero-stats { gap: 16px; }
  .why-visual { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .hero-cta .btn-primary, .hero-cta .btn-ghost { width: 100%; text-align: center; justify-content: center; }
  .contact-form-wrap { padding: 24px 16px; }
}
