/* Global reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #1f2937 0, #020617 40%, #000 100%);
  color: #e5e7eb;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header & nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.7));
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0.25rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-mark {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.9rem;
  background: conic-gradient(from 140deg, #f97316, #22c55e, #ec4899, #6366f1, #f97316);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: #020617;
  box-shadow: 0 0 24px rgba(34, 197, 94, 0.55), 0 0 40px rgba(56, 189, 248, 0.4);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.logo-sub {
  font-weight: 400;
  font-size: 0.7rem;
  opacity: 0.7;
}

.main-nav {
  display: flex;
  gap: 1.75rem;
  align-items: center;
}

.nav-link {
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9ca3af;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, #22c55e, #22c55e);
  transition: width 0.2s ease-out;
}

.nav-link:hover,
.nav-link.active {
  color: #e5e7eb;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 1.5rem;
  height: 2px;
  background: #e5e7eb;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.65rem 1.25rem;
  font-size: 0.86rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out, background 0.15s ease-out, border-color 0.15s ease-out;
}

.btn-primary {
  background: linear-gradient(to right, #7c3aed, #a855f7);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(76, 29, 149, 0.7);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(76, 29, 149, 0.85);
}

.btn-primary:active {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(76, 29, 149, 0.8);
}

.btn-primary-glow:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 0 0 1px rgba(196, 181, 253, 0.95),
    0 16px 40px rgba(88, 28, 135, 0.9),
    0 0 30px rgba(196, 181, 253, 0.95);
}

.btn-primary-glow:active {
  transform: translateY(-1px) scale(0.99);
  box-shadow:
    0 0 0 1px rgba(196, 181, 253, 0.9),
    0 12px 32px rgba(88, 28, 135, 0.85),
    0 0 24px rgba(196, 181, 253, 0.9);
}

.btn-ghost {
  background: rgba(15, 23, 42, 0.9);
  color: #e5e7eb;
  border-color: rgba(148, 163, 184, 0.5);
}

.btn-ghost:hover {
  background: rgba(15, 23, 42, 1);
  box-shadow: none;
}

.btn-ghost-glow:hover {
  background: rgba(15, 23, 42, 1);
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(248, 250, 252, 0.6),
    0 10px 22px rgba(15, 23, 42, 0.95),
    0 0 18px rgba(248, 250, 252, 0.75);
}

.btn-ghost-glow:active {
  transform: translateY(-1px);
  box-shadow:
    0 0 0 1px rgba(248, 250, 252, 0.55),
    0 8px 18px rgba(15, 23, 42, 0.95),
    0 0 14px rgba(248, 250, 252, 0.65);
}

.full-width {
  width: 100%;
}

/* Hero */
.hero {
  position: relative;
  padding: 4.5rem 0 4rem;
  overflow: hidden;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.28), transparent 55%),
    radial-gradient(circle at top right, rgba(34, 197, 94, 0.25), transparent 55%),
    radial-gradient(circle at bottom, rgba(129, 140, 248, 0.28), transparent 55%);
  opacity: 0.9;
  pointer-events: none;
  animation: heroGlow 14s ease-in-out infinite alternate;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.4fr);
  gap: 3rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 2.9rem;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}

.hero-text {
  color: #9ca3af;
  font-size: 0.98rem;
  max-width: 30rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 1.6rem 0 1.2rem;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  font-size: 0.8rem;
}

.meta-label {
  color: #9ca3af;
  display: block;
  margin-bottom: 0.25rem;
}

.meta-value {
  color: #e5e7eb;
}

.hero-visual {
  position: relative;
  display: grid;
  gap: 1.25rem;
}

.hero-card {
  background: radial-gradient(circle at top left, rgba(34, 197, 94, 0.16), rgba(15, 23, 42, 0.96));
  border-radius: 1.4rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow:
    0 24px 80px rgba(15, 23, 42, 0.9),
    0 0 0 1px rgba(148, 163, 184, 0.15);
}

.hero-card.large {
  padding: 1.4rem 1.4rem 1.2rem;
}

.hero-card.large h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.hero-card.large p {
  font-size: 0.85rem;
  color: #9ca3af;
  margin-bottom: 0.9rem;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.kpi {
  background: rgba(15, 23, 42, 0.9);
  border-radius: 0.85rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.kpi-label {
  display: block;
  font-size: 0.7rem;
  color: #9ca3af;
  margin-bottom: 0.25rem;
}

.kpi-value {
  font-size: 0.95rem;
  font-weight: 600;
}

.kpi-pulse {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.35rem;
  padding: 0 0.45rem;
  border-radius: 999px;
  font-size: 0.65rem;
  border: 1px solid rgba(34, 197, 94, 0.7);
  color: #bbf7d0;
}

.kpi-up::before {
  content: "▲";
  font-size: 0.6rem;
  margin-right: 0.25rem;
}

.hero-card.stack {
  padding: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.stack-item {
  font-size: 0.78rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: linear-gradient(to right, rgba(31, 41, 55, 0.9), rgba(15, 23, 42, 0.95));
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.neon-card {
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(148, 163, 184, 0.4), 0 20px 50px rgba(15, 23, 42, 0.95), 0 0 36px rgba(34, 197, 94, 0.45);
}

.neon-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: conic-gradient(from 120deg, rgba(34, 197, 94, 0.15), rgba(56, 189, 248, 0.12), rgba(244, 63, 94, 0.12), rgba(234, 179, 8, 0.12), rgba(34, 197, 94, 0.15));
  opacity: 0;
  transition: opacity 0.25s ease-out;
  z-index: -1;
}

.neon-card:hover::before {
  opacity: 1;
}

.neon-card:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: rgba(34, 197, 94, 0.8);
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.7), 0 26px 60px rgba(15, 23, 42, 1), 0 0 48px rgba(34, 197, 94, 0.9);
}

/* Sections */
.section {
  padding: 3.5rem 0;
}

.section-alt {
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.9), #020617);
}

.section-heading {
  text-align: left;
  margin-bottom: 2rem;
}

.section-heading h2 {
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
}

.section-text {
  color: #9ca3af;
  font-size: 0.96rem;
}

.max-640 {
  max-width: 40rem;
}

.eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #a5b4fc;
  margin-bottom: 0.7rem;
}

.grid {
  display: grid;
  gap: 1.6rem;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  background: rgba(15, 23, 42, 0.96);
  border-radius: 1.4rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  padding: 1.4rem 1.4rem 1.3rem;
  box-shadow: 0 18px 60px rgba(15, 23, 42, 0.85);
}

.service-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.55rem;
}

.service-card p {
  font-size: 0.9rem;
  color: #9ca3af;
  margin-bottom: 0.7rem;
}

.pill-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.pill-list li {
  font-size: 0.76rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(31, 41, 55, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr);
  gap: 2rem;
  align-items: flex-start;
}

.split-content h2 {
  font-size: 1.8rem;
  margin-bottom: 0.7rem;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.badge {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: rgba(15, 23, 42, 0.9);
}

.timeline {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.timeline li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.8rem;
  align-items: flex-start;
}

.step {
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  background: #22c55e1a;
  color: #bbf7d0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  border: 1px solid rgba(34, 197, 94, 0.7);
}

.timeline h4 {
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.timeline p {
  font-size: 0.85rem;
  color: #9ca3af;
}

.stack-grid .chip-group h3 {
  font-size: 0.98rem;
  margin-bottom: 0.6rem;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.chip {
  font-size: 0.76rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.45);
}

.section-cta {
  background: radial-gradient(circle at center, rgba(34, 197, 94, 0.08), rgba(15, 23, 42, 0.98));
}

.cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cta-inner h2 {
  font-size: 1.7rem;
  margin-bottom: 0.5rem;
}

.cta-inner p {
  color: #9ca3af;
  max-width: 32rem;
  font-size: 0.94rem;
}

/* Metrics */
.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.metric {
  padding: 0.65rem 0.7rem;
  border-radius: 0.9rem;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.metric-label {
  display: block;
  font-size: 0.72rem;
  color: #9ca3af;
  margin-bottom: 0.2rem;
}

.metric-value {
  font-size: 0.92rem;
  font-weight: 600;
}

/* Page hero */
.page-hero {
  padding: 3.5rem 0 2.5rem;
}

.page-hero h1 {
  font-size: 2.1rem;
  margin-bottom: 0.7rem;
}

/* Engagement */
.engagement-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.engagement-item h3 {
  font-size: 0.98rem;
  margin-bottom: 0.35rem;
}

.engagement-item p {
  font-size: 0.86rem;
  color: #9ca3af;
}

/* Contact */
.contact-layout {
  align-items: stretch;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.field-inline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

label {
  font-size: 0.8rem;
  color: #9ca3af;
}

input,
select,
textarea {
  border-radius: 0.75rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.9);
  color: #e5e7eb;
  padding: 0.55rem 0.75rem;
  font-size: 0.86rem;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #22c55e;
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.4);
}

textarea {
  resize: vertical;
}

.form-note {
  margin-top: 0.35rem;
  font-size: 0.78rem;
  color: #9ca3af;
}

.contact-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-card {
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  padding: 0.9rem 1rem;
  background: rgba(15, 23, 42, 0.95);
  font-size: 0.86rem;
  color: #d1d5db;
}

.contact-card h3 {
  text-align: center;
  margin-bottom: 0.55rem;
}

/* Trending Project */
.trending-layout {
  gap: 2.5rem;
}

.trending-media {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.trending-video-wrapper {
  max-width: 320px;
  margin: 0 auto 1rem;
  padding: 0.45rem;
  border-radius: 1.8rem;
  border: 2px solid rgba(148, 163, 184, 0.55);
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.98), #020617);
  box-shadow:
    0 0 0 1px rgba(15, 23, 42, 0.9),
    0 18px 40px rgba(15, 23, 42, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trending-video {
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  display: block;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #000;
  border-radius: 1.4rem;
}

.trending-images {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.2fr);
  gap: 0.8rem;
}

.trending-image {
  border-radius: 0.9rem;
  overflow: hidden;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.96), #020617);
}

.trending-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.trending-image-16x9 {
  aspect-ratio: 16 / 9;
}

.trending-image-1x1 {
  aspect-ratio: 1 / 1;
}

.trending-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.trending-actions {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem 1.1rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.96), #020617);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.8);
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.trending-actions .btn {
  width: 100%;
  justify-content: center;
}

.trending-credentials {
  margin-top: 0.9rem;
  font-size: 0.8rem;
  color: #9ca3af;
  text-align: center;
}

/* Simple image lightbox */
.lightbox-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 60;
}

.lightbox-backdrop.open {
  display: flex;
}

.lightbox-image-wrapper {
  max-width: 96vw;
  max-height: 90vh;
}

.lightbox-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  padding: 2rem 0 2.2rem;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.95), #020617);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.8rem;
  align-items: flex-start;
}

.footer-column h4 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #9ca3af;
  margin-bottom: 0.5rem;
}

.footer-column a {
  display: block;
  color: #e5e7eb;
  margin-bottom: 0.28rem;
  font-size: 0.82rem;
}

.footer-meta {
  font-size: 0.78rem;
  color: #6b7280;
  margin-top: 1.2rem;
}

.footer-meta-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding-top: 0.75rem;
}

.footer-meta-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 520px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(148, 163, 184, 0.7), transparent);
  box-shadow: 0 0 18px rgba(148, 163, 184, 0.45);
}

.footer-meta-inner span {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: #9ca3af;
}

.footer-meta-inner span span#year {
  color: #e5e7eb;
}

.footer-meta-inner span::first-letter {
  letter-spacing: 0.16em;
}

.footer-description {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: #9ca3af;
  max-width: 20rem;
}

.footer-social-row {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-start;
}

.contact-card .footer-social-row {
  justify-content: center;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: radial-gradient(circle at top, rgba(34, 197, 94, 0.16), rgba(15, 23, 42, 0.96));
  font-size: 0.78rem;
  color: #e5e7eb;
}

.social-link i {
  font-size: 0.8rem;
}

.social-link:hover {
  border-color: rgba(34, 197, 94, 0.9);
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.85), 0 10px 26px rgba(15, 23, 42, 1), 0 0 22px rgba(34, 197, 94, 0.8);
  transform: translateY(-1px);
}

/* Page variations */
.page-inner body {
  background: radial-gradient(circle at top left, #1f2937 0, #020617 40%, #000 100%);
}

/* Animations */
[data-animate] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 3.5rem;
  }

  .hero-visual {
    order: -1;
  }

  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split,
  .footer-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .main-nav {
    position: absolute;
    inset-inline: 0;
    top: 100%;
    background: rgba(15, 23, 42, 0.98);
    border-bottom: 1px solid rgba(148, 163, 184, 0.3);
    flex-direction: column;
    padding: 0.75rem 1.5rem 1rem;
    gap: 0.75rem;
    transform-origin: top;
    transform: scaleY(0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease-out, transform 0.18s ease-out;
  }

  .main-nav.open {
    opacity: 1;
    transform: scaleY(1);
    pointer-events: auto;
  }

  .nav-toggle {
    display: flex;
  }

  .grid-3,
  .grid-4 {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-content h1 {
    font-size: 2.1rem;
  }

  .hero-meta {
    grid-template-columns: minmax(0, 1fr);
  }

  .metric-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .field-inline {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-links {
    grid-template-columns: minmax(0, 1fr);
  }

  .cta-inner,
  .simple-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .cta-actions {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
  }

  .cta-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
  }

  .contact-card {
    font-size: 0.84rem;
  }

  .footer-inner {
    row-gap: 1.8rem;
  }

  .footer-column.footer-nav-center,
  .footer-column.footer-nav-right {
    margin-top: 0.25rem;
  }

  .trending-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .trending-video-wrapper {
    display: none;
  }

  .trending-images {
    grid-template-columns: minmax(0, 1fr);
  }

  .trending-gallery {
    grid-template-columns: minmax(0, 1fr);
  }
}
