/* ============================================================
   STEFANY CERON REAL ESTATE — DESIGN TOKENS
   Palette: deep navy blueprint + steel blue + warm gray neutrals
   Display: Fraunces (soft-contrast serif) / Body: Inter / Utility: Space Mono
   Signature: architectural blueprint grid + property-line motif
   ============================================================ */

:root {
  --navy-950: #0c1f30;
  --navy-900: #12293d;
  --navy-800: #1c3d57;
  --blue-600: #3e6c8e;
  --blue-500: #5588a8;
  --blue-300: #9dc0d6;
  --blue-100: #e4eef4;
  --gray-900: #1b2126;
  --gray-700: #454e56;
  --gray-500: #727b83;
  --gray-300: #c7ced4;
  --gray-100: #eef1f3;
  --gray-50: #f7f8fa;
  --white: #ffffff;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-mono: 'Space Mono', monospace;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 10px rgba(12, 31, 48, 0.08);
  --shadow-md: 0 10px 30px rgba(12, 31, 48, 0.14);
  --shadow-lg: 0 24px 60px rgba(12, 31, 48, 0.22);

  --maxw: 1180px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  margin: 0;
  color: var(--navy-950);
}

p {
  margin: 0;
}

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

:focus-visible {
  outline: 2px solid var(--blue-500);
  outline-offset: 3px;
}

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

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

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--blue-500);
  display: inline-block;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue-600);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--navy-900);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--navy-900);
  border-color: var(--gray-300);
}

.btn-outline:hover {
  border-color: var(--blue-600);
  color: var(--blue-600);
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background .35s ease, padding .35s ease, box-shadow .35s ease;
}

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

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
}

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

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--blue-500), var(--navy-900));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  flex-shrink: 0;
}

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

.brand-name {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--white);
  transition: color .35s ease;
}

.brand-role {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-300);
  transition: color .35s ease;
}

.site-header.scrolled .brand-name {
  color: var(--navy-950);
}

.site-header.scrolled .brand-role {
  color: var(--blue-600);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  transition: color .3s ease;
  position: relative;
}

.site-header.scrolled .nav-links a {
  color: var(--gray-700);
}

.nav-links a:hover {
  color: var(--blue-300);
}

.site-header.scrolled .nav-links a:hover {
  color: var(--blue-600);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--white);
  z-index: 110;
}

.site-header.scrolled .nav-toggle {
  color: var(--navy-950);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  background: var(--navy-950);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://picsum.photos/seed/studiocityhome/1800/1200');
  background-size: cover;
  background-position: center;
  opacity: 0.34;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 31, 48, 0.75) 0%, rgba(12, 31, 48, 0.88) 55%, var(--navy-950) 100%);
}



@keyframes drawIn {
  from {
    opacity: 0;
    transform: scale(0.94);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 110px;
  max-width: 760px;
}

.hero .eyebrow {
  color: var(--blue-300);
}

.hero .eyebrow::before {
  background: var(--blue-300);
}

.hero h1 {
  color: var(--white);
  font-size: clamp(38px, 5.4vw, 66px);
  font-weight: 500;
  line-height: 1.08;
  margin: 22px 0 22px;
  letter-spacing: -0.01em;
}

.hero h1 em {
  font-style: italic;
  color: var(--blue-300);
}

.hero-sub {
  font-size: 17.5px;
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 26px;
  max-width: 700px;
}

.hero-stat {
  padding-right: 40px;
  margin-right: 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-stat:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}

.hero-stat .num {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--white);
  display: block;
}

.hero-stat .label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--blue-300);
  text-transform: uppercase;
}

/* ---------- Section basics ---------- */
section {
  padding: 110px 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}

.section-head h2 {
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 500;
  margin-top: 18px;
  line-height: 1.16;
}

.section-head p {
  margin-top: 18px;
  color: var(--gray-700);
  font-size: 16px;
}

.bg-tint {
  background: var(--gray-50);
}

.bg-navy {
  background: var(--navy-950);
  color: var(--white);
}

.bg-navy h2,
.bg-navy h3,
.bg-navy h4 {
  color: var(--white);
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}

.about-media {
  position: relative;
}

.about-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: -60px;
  left: -24px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.about-badge i {
  color: var(--blue-600);
  font-size: 22px;
}

.about-badge .num {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--navy-950);
  display: block;
}

.about-badge .label {
  font-size: 12px;
  color: var(--gray-500);
}

.about-text .eyebrow {
  margin-bottom: 18px;
}

.about-text h2 {
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 500;
  margin-bottom: 20px;
}

.about-text p {
  color: var(--gray-700);
  margin-bottom: 16px;
  font-size: 15.5px;
}

.about-text p:last-of-type {
  margin-bottom: 28px;
}

.credential-row {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--gray-100);
}

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

.credential i {
  color: var(--blue-600);
  font-size: 19px;
}

.credential .t1 {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy-950);
  display: block;
}

.credential .t2 {
  font-size: 12.5px;
  color: var(--gray-500);
}

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.service-media {
  position: relative;
  height: 220px;
}

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

.service-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(12, 31, 48, 0.85);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
}

.service-body {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-body h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 14px;
}

.service-list {
  margin: 20px 0 28px;
}

.service-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 9px 0;
  border-bottom: 1px dashed var(--gray-100);
  font-size: 14.5px;
  color: var(--gray-700);
}

.service-list li:last-child {
  border-bottom: none;
}

.service-list i {
  color: var(--blue-600);
  margin-top: 3px;
  font-size: 13px;
}

.service-body .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* ---------- Process timeline ---------- */
.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  margin-top: 20px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gray-300);
}

.timeline-step {
  position: relative;
  padding: 0 18px;
  text-align: left;
}

.timeline-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--gray-300);
  color: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 15px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  transition: border-color .3s ease, background .3s ease, color .3s ease;
}

.timeline-step:hover .timeline-num {
  background: var(--blue-600);
  border-color: var(--blue-600);
  color: var(--white);
}

.timeline-step h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.timeline-step p {
  font-size: 13.5px;
  color: var(--gray-700);
}

/* ---------- Investment stats ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  padding: 32px;
}

.stat-card i {
  color: var(--blue-300);
  font-size: 26px;
  margin-bottom: 18px;
}

.stat-card h3 {
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 10px;
}

.stat-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14.5px;
}

/* ---------- Mistakes / checklist band ---------- */
.mistakes-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 8px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
}

.mistakes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.mistake-item {
  display: flex;
  gap: 16px;
  padding: 22px 26px;
  border-bottom: 1px solid var(--gray-100);
}

.mistake-item:nth-child(odd) {
  border-right: 1px solid var(--gray-100);
}

.mistake-item i {
  color: #c0563f;
  font-size: 16px;
  margin-top: 3px;
}

.mistake-item span {
  font-size: 14.5px;
  color: var(--gray-700);
}

/* ---------- Resources ---------- */
.resources-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.resource-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 24px;
  align-items: center;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}

.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.resource-cover {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 3/4;
  position: relative;
}

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

.resource-cover::after {
  content: "\f019";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: var(--blue-600);
  color: var(--white);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

.resource-info .eyebrow {
  margin-bottom: 10px;
}

.resource-info h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
}

.resource-info p {
  font-size: 13.5px;
  color: var(--gray-700);
  margin-bottom: 16px;
}

.resource-info a {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--blue-600);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.resource-info a i {
  transition: transform .25s ease;
}

.resource-info a:hover i {
  transform: translateX(4px);
}

/* ---------- CTA ---------- */
.cta-panel {
  background: linear-gradient(120deg, var(--navy-900), var(--navy-950));
  border-radius: var(--radius-lg);
  padding: 64px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(157, 192, 214, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(157, 192, 214, 0.08) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse at 85% 20%, black, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 85% 20%, black, transparent 70%);
}

.cta-text {
  position: relative;
  z-index: 1;
}

.cta-text h2 {
  color: var(--white);
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 500;
  margin-bottom: 16px;
}

.cta-text p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15.5px;
  max-width: 460px;
}

.cta-form {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  padding: 28px;
}

.cta-form .field {
  margin-bottom: 14px;
}

.cta-form label {
  display: block;
  font-size: 12.5px;
  color: var(--blue-300);
  margin-bottom: 6px;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

.cta-form input,
.cta-form select {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
}

.cta-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.cta-form input:focus,
.cta-form select:focus {
  outline: none;
  border-color: var(--blue-300);
  background: rgba(255, 255, 255, 0.08);
}

/* ---------- Simple centered CTA (no form) ---------- */
.cta-simple {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-simple .blueprint-grid {
  mask-image: radial-gradient(ellipse at 50% 30%, black 10%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black 10%, transparent 70%);
}

.cta-simple-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-simple-inner .eyebrow {
  color: var(--blue-300);
  justify-content: center;
}

.cta-simple-inner h2 {
  margin-top: 18px;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 500;
  line-height: 1.15;
}

.cta-simple-inner>p {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16.5px;
  max-width: 540px;
}

.cta-simple-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}

.btn-ghost-dark {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-ghost-dark:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.cta-simple-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  font-size: 14.5px;
  color: var(--blue-300);
  transition: color .25s ease;
}

.cta-simple-phone:hover {
  color: var(--white);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.7);
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand .brand-name {
  color: var(--white);
  font-size: 20px;
}

.footer-brand p {
  margin-top: 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s ease, border-color .25s ease;
}

.footer-social a:hover {
  background: var(--blue-600);
  border-color: var(--blue-600);
}

.footer-col h4 {
  color: var(--white);
  font-size: 14px;
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

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

.footer-col ul li a:hover {
  color: var(--blue-300);
}

.footer-col .contact-line {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.footer-col .contact-line i {
  color: var(--blue-300);
  margin-top: 3px;
  width: 16px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.45);
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- Mobile nav ---------- */
@media (max-width:960px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(320px, 80vw);
    background: var(--navy-950);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 28px;
    padding: 40px;
    transform: translateX(100%);
    transition: transform .35s ease;
    box-shadow: var(--shadow-lg);
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    color: var(--white) !important;
    font-size: 18px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-cta .btn-primary {
    display: none;
  }
}

@media (max-width:900px) {

  .about-grid,
  .services-grid,
  .resources-grid {
    grid-template-columns: 1fr;
  }

  .about-media {
    margin-bottom: 30px;
  }

  .about-badge {
    left: 16px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .timeline::before {
    display: none;
  }

  .cta-panel {
    grid-template-columns: 1fr;
    padding: 40px 28px;
  }

  .mistakes-grid {
    grid-template-columns: 1fr;
  }

  .mistake-item:nth-child(odd) {
    border-right: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  section {
    padding: 76px 0;
  }
}

@media (max-width:560px) {
  .hero-stats {
    flex-direction: column;
    gap: 18px;
  }

  .hero-stat {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    padding-bottom: 18px;
  }

  .hero-stat:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .resource-card {
    grid-template-columns: 1fr;
  }

  .resource-cover {
    aspect-ratio: 16/9;
  }

  .cta-form {
    padding: 22px;
  }
}