/* Resmart Static Site - CSS */
/* ========================= */

/* CSS Custom Properties (Design Tokens) */
:root {
  /* Colors */
  --background: hsl(210, 20%, 98%);
  --foreground: hsl(220, 25%, 25%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(220, 25%, 25%);
  --primary: hsl(162, 72%, 47%);
  --primary-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(210, 15%, 94%);
  --secondary-foreground: hsl(220, 25%, 25%);
  --muted: hsl(210, 15%, 96%);
  --muted-foreground: hsl(220, 10%, 50%);
  --accent: hsl(162, 50%, 95%);
  --accent-foreground: hsl(162, 72%, 35%);
  --border: hsl(210, 15%, 90%);
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, hsl(162, 72%, 47%), hsl(170, 60%, 40%));
  --gradient-hero: linear-gradient(180deg, hsl(210, 20%, 98%) 0%, hsl(210, 25%, 96%) 100%);
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(45, 55, 72, 0.03);
  --shadow-md: 0 4px 6px -1px rgba(45, 55, 72, 0.05), 0 2px 4px -2px rgba(45, 55, 72, 0.03);
  --shadow-lg: 0 10px 15px -3px rgba(45, 55, 72, 0.05), 0 4px 6px -4px rgba(45, 55, 72, 0.03);
  --shadow-xl: 0 20px 25px -5px rgba(45, 55, 72, 0.06), 0 8px 10px -6px rgba(45, 55, 72, 0.04);
  
  /* Typography */
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  
  /* Spacing */
  --radius: 0.75rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--foreground);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

ul {
  list-style: none;
}

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

/* Utility Classes */
.container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

.section-padding {
  padding: 5rem 0;
}

@media (min-width: 1024px) {
  .section-padding {
    padding: 7rem 0;
  }
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.accent-line {
  height: 4px;
  width: 3rem;
  border-radius: 9999px;
  background: var(--gradient-primary);
}

.text-center {
  text-align: center;
}

/* Grid Pattern Background */
.bg-grid-pattern {
  background-image: 
    linear-gradient(to right, rgba(210, 210, 220, 0.5) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(210, 210, 220, 0.5) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Animations */
@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.animate-fade-in {
  animation: fade-in 0.5s ease-out forwards;
}

.animate-fade-in-up {
  animation: fade-in-up 0.6s ease-out forwards;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

/* ==================== */
/* HEADER               */
/* ==================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

@media (min-width: 1024px) {
  .header-inner {
    height: 5rem;
  }
}

.logo {
  height: 2.5rem;
  width: auto;
}

@media (min-width: 1024px) {
  .logo {
    height: 3rem;
  }
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--foreground);
}

.header-cta-desktop {
  display: none;
}

@media (min-width: 1024px) {
  .header-cta-desktop {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--foreground);
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu {
  display: none;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
}

.mobile-menu.open {
  display: block;
}

@media (min-width: 1024px) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu-link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted-foreground);
  padding: 0.5rem 0;
}

.mobile-menu-link:hover {
  color: var(--foreground);
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--foreground);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  background: var(--muted);
}

.btn-hero {
  background: var(--gradient-primary);
  color: var(--primary-foreground);
  padding: 1rem 2rem;
  font-size: 1rem;
  box-shadow: var(--shadow-lg);
}

.btn-hero:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-2px);
}

.btn-hero-outline {
  background: transparent;
  color: var(--foreground);
  border: 1px solid var(--border);
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-hero-outline:hover {
  background: var(--muted);
}

.btn-lg {
  padding: 1rem 1.5rem;
}

.btn-xl {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* ==================== */
/* HERO SECTION         */
/* ==================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  overflow: hidden;
  background: var(--gradient-hero);
}

@media (min-width: 1024px) {
  .hero {
    padding-top: 0;
  }
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.4;
}

.hero-accent-1 {
  position: absolute;
  top: 25%;
  right: 0;
  width: 24rem;
  height: 24rem;
  background: rgba(45, 200, 150, 0.05);
  border-radius: 50%;
  filter: blur(48px);
}

.hero-accent-2 {
  position: absolute;
  bottom: 25%;
  left: 0;
  width: 16rem;
  height: 16rem;
  background: rgba(45, 200, 150, 0.03);
  border-radius: 50%;
  filter: blur(32px);
}

.hero-decorative {
  position: absolute;
  top: 33%;
  right: 2.5rem;
  display: none;
}

@media (min-width: 1024px) {
  .hero-decorative {
    display: block;
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--accent);
  border: 1px solid rgba(45, 200, 150, 0.2);
  border-radius: 9999px;
  margin-bottom: 2rem;
}

.hero-badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--primary);
  border-radius: 50%;
}

.hero-badge-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent-foreground);
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

@media (min-width: 1280px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 48rem;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

@media (min-width: 1024px) {
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

.hero-subtitle strong {
  color: var(--foreground);
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 4rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-trust-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
}

.hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8rem;
  background: linear-gradient(to top, var(--background), transparent);
}

/* ==================== */
/* VALUE PROPOSITION    */
/* ==================== */
.value-section {
  position: relative;
  overflow: hidden;
}

.value-divider {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 56rem;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
}

.value-header {
  text-align: center;
  margin-bottom: 4rem;
}

.value-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 1024px) {
  .value-title {
    font-size: 2.25rem;
  }
}

.value-subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto;
}

.value-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .value-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.value-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s;
}

.value-card:hover {
  border-color: rgba(45, 200, 150, 0.3);
  box-shadow: var(--shadow-lg);
}

.value-icon-wrap {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--accent);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s;
}

.value-card:hover .value-icon-wrap {
  transform: scale(1.1);
}

.value-icon {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--primary);
}

.value-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.value-card-desc {
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* ==================== */
/* SERVICES SECTION     */
/* ==================== */
.services-section {
  background: rgba(210, 215, 220, 0.3);
  position: relative;
  overflow: hidden;
}

.services-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.3;
}

.services-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 10;
}

.services-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 1024px) {
  .services-title {
    font-size: 2.25rem;
  }
}

.services-subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  gap: 1.5rem;
  position: relative;
  z-index: 10;
}

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

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s;
}

.service-card:hover {
  border-color: rgba(45, 200, 150, 0.3);
  box-shadow: var(--shadow-lg);
}

.service-icon-wrap {
  width: 3rem;
  height: 3rem;
  background: var(--accent);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background-color 0.3s;
}

.service-card:hover .service-icon-wrap {
  background: rgba(45, 200, 150, 0.1);
}

.service-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

.service-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.service-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* ==================== */
/* ABOUT SECTION        */
/* ==================== */
.about-section {
  position: relative;
  overflow: hidden;
}

.about-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
  .about-title {
    font-size: 2.25rem;
  }
}

.about-text {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.about-text-sm {
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-highlight {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.about-highlight-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.about-visual {
  position: relative;
}

.about-visual-box {
  aspect-ratio: 1;
  border-radius: 1.5rem;
  background: linear-gradient(to bottom right, var(--accent), var(--muted));
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.about-deco-1 {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 8rem;
  height: 8rem;
  border: 1px solid rgba(45, 200, 150, 0.2);
  border-radius: 1rem;
}

.about-deco-2 {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  width: 6rem;
  height: 6rem;
  background: rgba(45, 200, 150, 0.1);
  border-radius: 0.75rem;
}

.about-logo-circles {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.about-circle-outer {
  width: 12rem;
  height: 12rem;
  border: 2px solid rgba(45, 200, 150, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-circle-mid {
  width: 9rem;
  height: 9rem;
  border: 2px solid rgba(45, 200, 150, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-circle-inner {
  width: 6rem;
  height: 6rem;
  background: rgba(45, 200, 150, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-logo-text {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
}

.about-stat {
  position: absolute;
  background: var(--card);
  border-radius: 0.75rem;
  padding: 1rem;
  box-shadow: var(--shadow-lg);
}

.about-stat-1 {
  top: 3rem;
  left: 3rem;
}

.about-stat-2 {
  bottom: 3rem;
  right: 3rem;
  animation-delay: 2s;
}

.about-stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.about-stat-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* ==================== */
/* CTA SECTION          */
/* ==================== */
.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-box {
  background: var(--foreground);
  border-radius: 1.5rem;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .cta-box {
    padding: 4rem;
  }
}

.cta-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
}

.cta-gradient {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(to left, rgba(45, 200, 150, 0.1), transparent);
}

.cta-content {
  position: relative;
  z-index: 10;
  max-width: 48rem;
}

.cta-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary-foreground);
  margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
  .cta-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1280px) {
  .cta-title {
    font-size: 3rem;
  }
}

.cta-text {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

@media (min-width: 1024px) {
  .cta-text {
    font-size: 1.25rem;
  }
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

.btn-cta-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 1rem 2rem;
  font-size: 1rem;
  box-shadow: var(--shadow-lg);
}

.btn-cta-primary:hover {
  background: hsl(162, 72%, 42%);
  box-shadow: var(--shadow-xl);
}

.btn-cta-outline {
  background: rgba(100, 116, 139, 0.7);
  color: var(--primary-foreground);
  border: 1px solid var(--primary-foreground);
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-cta-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ==================== */
/* CONTACT SECTION      */
/* ==================== */
.contact-section {
  background: rgba(210, 215, 220, 0.3);
  position: relative;
  overflow: hidden;
}

.contact-header {
  text-align: center;
  margin-bottom: 4rem;
}

.contact-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 1024px) {
  .contact-title {
    font-size: 2.25rem;
  }
}

.contact-subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto;
}

.contact-content {
  max-width: 42rem;
  margin: 0 auto;
}

.contact-info-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info-icon-wrap {
  width: 3rem;
  height: 3rem;
  background: var(--accent);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
}

.contact-info-label {
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.contact-info-value {
  color: var(--muted-foreground);
}

.contact-info-value a:hover {
  color: var(--primary);
}

.contact-hours {
  background: rgba(162, 200, 180, 0.3);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(45, 200, 150, 0.1);
  margin-bottom: 2rem;
}

.contact-hours-title {
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.contact-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.contact-hours-label {
  color: var(--muted-foreground);
}

.contact-hours-value {
  font-weight: 500;
}

.contact-support {
  background: rgba(45, 200, 150, 0.05);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(45, 200, 150, 0.2);
}

.contact-support-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.contact-support-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
}

.contact-support-title {
  font-weight: 500;
}

.contact-support-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.contact-support-highlight {
  color: var(--primary);
  font-weight: 600;
}

/* ==================== */
/* FOOTER               */
/* ==================== */
.footer {
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-brand-desc {
  color: var(--muted-foreground);
  margin: 1rem 0;
  line-height: 1.6;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.footer-contact-icon {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
}

.footer-title {
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.footer-link:hover {
  color: var(--foreground);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-copyright {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.footer-credit {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.footer-credit a {
  color: var(--primary);
}

.footer-credit a:hover {
  text-decoration: underline;
}

/* ==================== */
/* LEGAL PAGES          */
/* ==================== */
.legal-page {
  padding-top: 6rem;
  padding-bottom: 4rem;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  transition: color 0.2s;
}

.legal-back:hover {
  color: var(--foreground);
}

.legal-back-icon {
  width: 1rem;
  height: 1rem;
}

.legal-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

@media (min-width: 1024px) {
  .legal-title {
    font-size: 2.25rem;
  }
}

.legal-date {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.legal-section {
  margin-bottom: 2rem;
}

.legal-section-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.legal-text {
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.legal-list {
  list-style: disc;
  padding-left: 1.5rem;
  color: var(--muted-foreground);
}

.legal-list li {
  margin-bottom: 0.5rem;
}

.legal-contact {
  margin-top: 1rem;
}

.legal-contact strong {
  color: var(--foreground);
}

/* Icon SVG inline styles */
.icon {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}

.icon-sm {
  width: 1.25rem;
  height: 1.25rem;
}

.icon-lg {
  width: 1.75rem;
  height: 1.75rem;
}
