/* ============================================
   Hello Dexter — SOHub-inspired Design System
   ============================================ */

/* --- Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- Custom Properties --- */
:root {
  --color-white: #F0F6F8;
  --color-black: #0C1016;
  --color-soft-grey: #D9E0E3;
  --color-dark-grey: #1E232C;
  --color-muted: #6B7380;
  --color-accent: #2563EB;
  --color-accent-hover: #1d4ed8;
  --color-border: rgba(28, 32, 38, 0.08);

  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --container-max: 1440px;
  --container-padding: 2rem;
  --header-height: 72px;

  --ease-smooth: cubic-bezier(.22,.68,0,1);
  --ease-bounce: cubic-bezier(.22,.68,0,1.2);
  --ease-spring: cubic-bezier(.22,.68,0,1.5);
  --duration-fast: 200ms;
  --duration-medium: 400ms;
  --duration-slow: 700ms;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-black);
  background: var(--color-white);
  position: relative;
  overflow-x: hidden;
}

/* --- Noise Texture Overlay --- */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 99999;
  opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--color-black);
}

h1 { font-size: clamp(3rem, 6vw, 7rem); }
h2 { font-size: clamp(2rem, 4.5vw, 5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2.5rem); }
h4 { font-size: clamp(1.1rem, 1.5vw, 1.5rem); }

p {
  margin-bottom: 1rem;
  color: var(--color-muted);
}

a {
  color: inherit;
  text-decoration: none;
  transition: all var(--duration-fast) var(--ease-smooth);
}

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

/* --- Skip Link --- */
.skip-link {
  position: fixed;
  top: -100%;
  left: var(--container-padding);
  z-index: 100000;
  background: var(--color-black);
  color: var(--color-white);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  transition: top var(--duration-fast);
}

.skip-link:focus {
  top: 1rem;
}

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

.container--narrow {
  max-width: 900px;
}

/* ============================================
   HEADER — Transparent Floating
   ============================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  background: transparent;
  pointer-events: none;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  padding: 0 var(--container-padding);
  pointer-events: auto;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  color: var(--color-black);
  z-index: 1002;
  transition: opacity var(--duration-medium) var(--ease-smooth),
              transform var(--duration-medium) var(--ease-smooth);
}

.site-header.scrolled .logo {
  opacity: 0;
  transform: translateX(-20px);
  pointer-events: none;
}

.logo img {
  width: 96px;
  height: 96px;
  object-fit: contain;
}

/* Menu Pill — Floating */
.menu-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-black);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.625rem 1rem 0.625rem 1.5rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  z-index: 1002;
  position: relative;
  transition: all var(--duration-fast) var(--ease-smooth);
  pointer-events: auto;
}

.menu-pill:hover {
  background: var(--color-dark-grey);
  transform: scale(1.05);
}

.menu-pill-text {
  transition: opacity var(--duration-fast);
}

.menu-pill.active .menu-pill-text {
  opacity: 0;
  width: 0;
}

.menu-pill-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--color-dark-grey);
  border-radius: 50%;
  gap: 2px;
  transition: background var(--duration-fast);
}

.menu-pill:hover .menu-pill-icon {
  background: var(--color-black);
}

.menu-pill-dot {
  width: 4px;
  height: 4px;
  background: var(--color-white);
  border-radius: 50%;
  transition: all var(--duration-medium) var(--ease-smooth);
}

.menu-pill.active .menu-pill-dot:first-child {
  transform: translateX(3px);
}

.menu-pill.active .menu-pill-dot:last-child {
  transform: translateX(-3px);
  opacity: 0;
}

/* ============================================
   MENU OVERLAY — Right Sidebar
   ============================================ */

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--duration-medium) var(--ease-smooth);
}

.menu-overlay.active {
  pointer-events: auto;
  opacity: 1;
}

.menu-overlay-bg {
  position: absolute;
  inset: 0;
  background: rgba(12, 16, 22, 0.3);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 520px;
  background: var(--color-soft-grey);
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  padding: 6rem 3rem 3rem;
  transform: translateX(100%);
  transition: transform var(--duration-medium) var(--ease-bounce);
  overflow-y: auto;
}

.menu-overlay.active .menu-panel {
  transform: translateX(0);
}

.menu-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--color-black);
  padding: 0.75rem 0;
  transition: opacity var(--duration-fast);
  line-height: 1.1;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.menu-link:hover {
  opacity: 0.5;
}

.menu-link .menu-arrow {
  display: flex;
  width: 0;
  overflow: hidden;
  transition: width var(--duration-medium) var(--ease-smooth);
}

.menu-link:hover .menu-arrow {
  width: 32px;
}

.menu-link .menu-arrow svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

/* ============================================
   HERO SECTION — DARK (SOHub Style)
   ============================================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--color-black);
}

.hero-headline {
  position: relative;
  z-index: 2;
  margin-left: 10%;
  max-width: 60%;
}

.hero-headline h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 8rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 0;
}

.hero-line {
  display: block;
}

.hero-line--solid {
  color: var(--color-white);
}

.hero-line--outline {
  color: var(--color-muted);
}

@media (max-width: 767px) {
  .hero-headline {
    margin-left: 5%;
    max-width: 75%;
  }

  .hero-headline h1 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

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

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.6;
}

.hero-scroll::after {
  content: '';
  width: 1px;
  height: 32px;
  background: var(--color-muted);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================
   WORK / PROJECTS SECTION — 2 Column Image Grid
   ============================================ */

.work {
  padding: 8rem 0;
  background: var(--color-white);
}

.work-header {
  margin-bottom: 4rem;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  max-width: 18ch;
}

.work-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.project-card {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  transition: transform var(--duration-medium) var(--ease-smooth);
}

.project-card:hover {
  transform: scale(1.03);
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-medium) var(--ease-smooth);
}

.project-card:hover img {
  transform: scale(1.05);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 16, 22, 0.8) 0%, rgba(12, 16, 22, 0.2) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  transition: background var(--duration-medium);
}

.project-card:hover .project-overlay {
  background: linear-gradient(to top, rgba(12, 16, 22, 0.9) 0%, rgba(12, 16, 22, 0.3) 50%, transparent 100%);
}

.project-card-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.project-category {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
  transition: color var(--duration-medium);
}

.project-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-white);
  transition: color var(--duration-medium);
  flex: 1;
}

.project-card-arrow {
  display: flex;
  width: 0;
  overflow: hidden;
  transition: width var(--duration-medium) var(--ease-smooth);
  flex-shrink: 0;
}

.project-card:hover .project-card-arrow {
  width: 28px;
}

.project-card-arrow svg {
  width: 28px;
  height: 28px;
  color: var(--color-white);
  flex-shrink: 0;
}

/* ============================================
   SERVICES SECTION — Dark with Cards
   ============================================ */

.services {
  padding: 8rem 0;
  background: var(--color-black);
  border-radius: var(--radius-xl);
  margin: 0 var(--container-padding);
  color: var(--color-white);
}

.services .section-label {
  color: var(--color-accent);
}

.services .section-title {
  color: var(--color-white);
}

.services-tagline {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--color-muted);
  max-width: 55ch;
  margin-bottom: 4rem;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.service-card {
  background: var(--color-dark-grey);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 5rem 3rem;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: -webkit-sticky;
  position: sticky;
}

.service-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.service-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.service-card-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.02em;
  line-height: 1.1;
  max-width: 70%;
}

.service-card-title span {
  display: block;
  color: var(--color-muted);
}

.service-card-arrow {
  display: flex;
  width: 0;
  overflow: hidden;
  transition: width var(--duration-medium) var(--ease-smooth);
  flex-shrink: 0;
  margin-top: 0.5rem;
}

.service-card:hover .service-card-arrow {
  width: 28px;
}

.service-card-arrow svg {
  width: 28px;
  height: 28px;
  color: var(--color-white);
  flex-shrink: 0;
}

.service-card-desc {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 55ch;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.service-tag {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-white);
  background: transparent;
  padding: 0.375rem 0;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* ============================================
   ABOUT / STUDIO SECTION
   ============================================ */

.about {
  padding: 8rem 0;
  background: var(--color-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
}

.about-content h2 {
  margin-bottom: 1.5rem;
}

.about-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-muted);
  max-width: 55ch;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}

.stat-item {
  border-top: 3px solid var(--color-black);
  padding-top: 1.5rem;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-muted);
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 4rem 0;
  background: var(--color-white);
}

.cta-section h2 {
  font-size: clamp(3rem, 7vw, 8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 2rem;
  line-height: 0.9;
}

.cta-section .cta-pretitle {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-muted);
  margin-bottom: 1.5rem;
  display: block;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--color-black);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 1.15rem 2.5rem;
  border-radius: var(--radius-full);
  transition: all var(--duration-medium) var(--ease-smooth);
}

.cta-button:hover {
  background: var(--color-accent);
  transform: scale(1.05);
}

.cta-button .arrow-group {
  display: inline-flex;
  width: 18px;
  height: 18px;
  overflow: hidden;
  position: relative;
}

.cta-button .arrow-group svg {
  width: 18px;
  height: 18px;
  position: absolute;
  transition: transform var(--duration-medium) var(--ease-bounce);
}

.cta-button .arrow-group svg:last-child {
  transform: translateX(-100%) translateY(100%);
}

.cta-button:hover .arrow-group svg:first-child {
  transform: translateX(100%) translateY(-100%);
}

.cta-button:hover .arrow-group svg:last-child {
  transform: translateX(0) translateY(0);
}

/* ============================================
   FOOTER — Massive Dark Rounded
   ============================================ */

.site-footer {
  position: relative;
  padding: 4rem var(--container-padding) 2rem;
  margin-top: 4rem;
}

.footer-main {
  background: var(--color-black);
  border-radius: var(--radius-xl);
  padding: 5rem 3rem;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo-img {
  max-width: 180px;
  height: auto;
}

.footer-copyright {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: var(--color-muted);
}

.footer-award {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-soft-grey);
  letter-spacing: 0.05em;
}

.footer-funded {
  width: 100%;
  max-width: 240px;
  height: auto;
  margin-top: 0.5rem;
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-soft-grey);
  background: var(--color-dark-grey);
  padding: 0.625rem 1.5rem;
  border-radius: var(--radius-full);
  transition: all var(--duration-fast) var(--ease-smooth);
}

.footer-pill:hover {
  background: var(--color-white);
  color: var(--color-black);
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--color-dark-grey);
  border-radius: 50%;
  transition: all var(--duration-fast) var(--ease-smooth);
}

.footer-social:hover {
  background: var(--color-muted);
  transform: scale(1.1);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  color: var(--color-white);
}

.footer-separator {
  width: 16px;
  height: 16px;
  color: var(--color-muted);
  animation: rotateStar 10s linear infinite;
}

@keyframes rotateStar {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Footer Extension */
.footer-extension {
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 3rem 2rem 2rem;
  margin-top: -1rem;
}

.footer-ext-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.footer-go-up {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-dark-grey);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.625rem 1.5rem;
  border-radius: var(--radius-full);
  transition: all var(--duration-fast) var(--ease-smooth);
  border: none;
  cursor: pointer;
}

.footer-go-up:hover {
  background: var(--color-black);
}

/* ============================================
   PRIVACY / GENERIC PAGE
   ============================================ */

.page {
  padding: calc(var(--header-height) + 4rem) 0 6rem;
}

.privacy-page {
  max-width: 780px;
  margin: 0 auto;
  padding: 4rem 0 8rem;
}

.privacy-page h1 {
  margin-bottom: 0.75rem;
}

.privacy-page .last-updated {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: var(--color-muted);
  margin-bottom: 3rem;
  display: block;
}

.privacy-page h2 {
  font-size: 1.5rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.privacy-page h2:first-of-type {
  border-top: none;
  padding-top: 0;
}

.privacy-page h3 {
  font-size: 1.1rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.privacy-page p {
  color: var(--color-muted);
  font-size: 0.9375rem;
  margin-bottom: 1rem;
}

.privacy-page ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  color: var(--color-muted);
}

.privacy-page li {
  margin-bottom: 0.5rem;
}

.privacy-page a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-page a:hover {
  color: var(--color-accent-hover);
}

/* ============================================
   SCROLL REVEAL
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--duration-slow) var(--ease-smooth),
              transform var(--duration-slow) var(--ease-smooth);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0ms; }
.reveal-delay-2 { transition-delay: 100ms; }
.reveal-delay-3 { transition-delay: 200ms; }
.reveal-delay-4 { transition-delay: 300ms; }
.reveal-delay-5 { transition-delay: 400ms; }
.reveal-delay-6 { transition-delay: 500ms; }

/* ============================================
   UTILITIES
   ============================================ */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (min-width: 640px) {
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
}

@media (min-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    padding: 6rem 4rem;
  }
}

@media (max-width: 767px) {
  .menu-panel {
    padding: 3rem 1.5rem 2rem;
  }

  .services {
    margin: 0 0.75rem;
    border-radius: var(--radius-lg);
  }

  .footer-main {
    padding: 3rem 1.5rem;
  }
}
