/* ===================================
   Togather Landing Page Styles
   =================================== */

/* CSS Variables */
:root {
  /* Colors - Warm, inviting palette */
  --color-bg: #FDF8F3;
  --color-bg-alt: #F9F3ED;
  --color-primary: #D4A574;
  --color-primary-dark: #C4956A;
  --color-primary-light: #E8C9A8;
  --color-text: #2D2A26;
  --color-text-muted: #6B6560;
  --color-text-light: #9A958F;
  --color-border: #E8E3DD;
  --color-white: #FFFFFF;
  --color-success: #5A9A6E;
  --color-error: #C76B6B;

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 2rem;
  --font-size-4xl: 2.5rem;
  --font-size-5xl: 3.5rem;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Layout */
  --container-max: 1200px;
  --container-narrow: 800px;
  --header-height: 72px;

  /* Effects */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.08);
  --transition-fast: 150ms ease;
  --transition-base: 200ms ease;
  --transition-slow: 300ms ease;
}

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

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

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* Accessibility */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  padding: var(--space-3) var(--space-6);
  background: var(--color-text);
  color: var(--color-white);
  border-radius: var(--radius-md);
  z-index: 1000;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: var(--space-4);
}

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

/* ===================================
   Header & Navigation
   =================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(253, 248, 243, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  z-index: 100;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-weight: 600;
  font-size: var(--font-size-xl);
  color: var(--color-text);
}

.logo-icon {
  width: 36px;
  height: 36px;
  color: var(--color-primary);
}

.nav-links {
  display: none;
  gap: var(--space-8);
}

.nav-links a {
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

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

.nav-cta {
  display: none;
}

.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 4px;
}

.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: var(--transition-fast);
}

.mobile-menu-btn[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-6);
  flex-direction: column;
  gap: var(--space-4);
  z-index: 99;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  font-size: var(--font-size-lg);
  font-weight: 500;
  padding: var(--space-3) 0;
}

/* Desktop Nav */
@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .nav-cta {
    display: block;
  }

  .mobile-menu-btn,
  .mobile-menu {
    display: none !important;
  }
}

/* ===================================
   Buttons
   =================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-size: var(--font-size-sm);
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--color-white);
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.btn-secondary:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--font-size-base);
}

.btn-icon {
  width: 18px;
  height: 18px;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
  padding: calc(var(--header-height) + var(--space-12)) 0 var(--space-16);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--color-success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.hero-title {
  font-size: var(--font-size-4xl);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--space-6);
  letter-spacing: -0.02em;
}

.hero-title .highlight {
  color: var(--color-primary);
  display: block;
}

.hero-subtitle {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
  max-width: 540px;
  margin: 0 auto var(--space-8);
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-10);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-6);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.trust-badge svg {
  width: 18px;
  height: 18px;
  color: var(--color-primary);
}

/* Phone Mockup */
.hero-visual {
  display: none;
  justify-content: center;
  margin-top: var(--space-12);
}

.phone-mockup {
  width: 280px;
  height: 560px;
  background: var(--color-text);
  border-radius: 40px;
  padding: 12px;
  box-shadow: var(--shadow-lg);
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--color-white);
  border-radius: 32px;
  overflow: hidden;
}

.app-preview {
  padding: var(--space-6);
}

.preview-header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.preview-avatar {
  width: 48px;
  height: 48px;
  background: var(--color-primary-light);
  border-radius: 50%;
}

.preview-text {
  flex: 1;
}

.preview-title {
  height: 14px;
  width: 80%;
  background: var(--color-border);
  border-radius: 4px;
  margin-bottom: 6px;
}

.preview-subtitle {
  height: 10px;
  width: 50%;
  background: var(--color-border);
  border-radius: 4px;
}

.preview-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.preview-card {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4);
  background: var(--color-bg);
  border-radius: var(--radius-md);
}

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
}

.card-icon.groups { background: var(--color-primary-light); }
.card-icon.events { background: #A8D4C8; }
.card-icon.chat { background: #C8B8D8; }

.card-content {
  flex: 1;
}

.card-title {
  height: 12px;
  width: 70%;
  background: var(--color-border);
  border-radius: 4px;
  margin-bottom: 6px;
}

.card-desc {
  height: 8px;
  width: 90%;
  background: var(--color-border);
  border-radius: 4px;
}

/* Map Preview Mockup */
.app-preview-map {
  position: relative;
  width: 100%;
  height: 100%;
  background: #E8E4DF;
  overflow: hidden;
}

.map-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #E8E4DF 0%, #D8D4CF 100%);
}

.map-road {
  position: absolute;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 2px;
}

.map-road-1 {
  width: 80%;
  height: 8px;
  top: 30%;
  left: 10%;
}

.map-road-2 {
  width: 8px;
  height: 60%;
  top: 20%;
  left: 40%;
}

.map-road-3 {
  width: 60%;
  height: 8px;
  top: 55%;
  left: 25%;
  transform: rotate(-15deg);
}

.map-pin {
  position: absolute;
  width: 32px;
  height: 32px;
  color: var(--color-primary);
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
  animation: pin-bounce 2s ease-in-out infinite;
}

.map-pin svg {
  width: 100%;
  height: 100%;
}

.pin-1 {
  top: 20%;
  left: 25%;
  animation-delay: 0s;
}

.pin-2 {
  top: 35%;
  left: 60%;
  animation-delay: 0.3s;
}

.pin-3 {
  top: 50%;
  left: 35%;
  animation-delay: 0.6s;
}

@keyframes pin-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.explore-card {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-white);
  border-radius: 20px 20px 0 0;
  padding: var(--space-4);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}

.explore-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-3);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--color-border);
}

.explore-title {
  font-weight: 600;
  font-size: var(--font-size-sm);
  color: var(--color-text);
}

.explore-count {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

.explore-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-2) 0;
}

.explore-avatar {
  width: 36px;
  height: 36px;
  background: var(--color-primary-light);
  border-radius: var(--radius-sm);
}

.explore-avatar.alt {
  background: #A8D4C8;
}

.explore-info {
  flex: 1;
}

.explore-name {
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--color-text);
}

.explore-meta {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

/* Hero Responsive */
@media (min-width: 640px) {
  .hero-cta {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: var(--font-size-5xl);
  }

  .hero-title .highlight {
    display: inline;
  }

  .hero-visual {
    display: flex;
  }
}

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

  .hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
  }

  .hero-content {
    text-align: left;
  }

  .hero-subtitle {
    margin: 0 0 var(--space-8);
  }

  .hero-cta {
    justify-content: flex-start;
  }

  .hero-badges {
    justify-content: flex-start;
  }

  .hero-visual {
    margin-top: 0;
    order: 1;
  }
}

/* ===================================
   Section Styles
   =================================== */
.section-header {
  text-align: center;
  max-width: var(--container-narrow);
  margin: 0 auto var(--space-12);
}

.section-title {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  margin-bottom: var(--space-4);
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .section-title {
    font-size: var(--font-size-4xl);
  }
}

/* ===================================
   Features Section
   =================================== */
.features {
  padding: var(--space-20) 0;
  background: var(--color-white);
}

.features-grid {
  display: grid;
  gap: var(--space-8);
}

.feature-card {
  padding: var(--space-6);
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-light);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-4);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-primary-dark);
}

.feature-title {
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.feature-desc {
  font-size: var(--font-size-base);
  color: var(--color-text-muted);
  line-height: 1.6;
}

.features-integration {
  margin-top: var(--space-12);
  text-align: center;
}

.integration-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-6);
  background: var(--color-bg);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.integration-badge svg {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
}

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

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

/* ===================================
   How It Works Section
   =================================== */
.how-it-works {
  padding: var(--space-20) 0;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  max-width: var(--container-narrow);
  margin: 0 auto;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: var(--space-5);
  padding: var(--space-6);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.step-number {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: var(--font-size-xl);
  font-weight: 700;
  border-radius: 50%;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.step-content p {
  color: var(--color-text-muted);
}

.step-connector {
  display: none;
}

@media (min-width: 768px) {
  .steps {
    flex-direction: row;
    align-items: flex-start;
  }

  .step {
    flex-direction: column;
    text-align: center;
    flex: 1;
  }

  .step-number {
    margin: 0 auto;
  }

  .step-connector {
    display: block;
    width: 60px;
    height: 2px;
    background: var(--color-border);
    margin-top: 24px;
    flex-shrink: 0;
  }
}

/* ===================================
   Perspectives Section
   =================================== */
.perspectives {
  padding: var(--space-20) 0;
  background: var(--color-white);
}

.perspectives-grid {
  display: grid;
  gap: var(--space-8);
}

.perspective-card {
  padding: var(--space-8);
  background: var(--color-bg);
  border-radius: var(--radius-xl);
  text-align: center;
}

.perspective-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-light);
  border-radius: 50%;
  margin: 0 auto var(--space-5);
}

.perspective-icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-primary-dark);
}

.perspective-title {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  margin-bottom: var(--space-4);
}

.perspective-desc {
  font-size: var(--font-size-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

.perspective-list {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.perspective-list li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--font-size-sm);
  color: var(--color-text);
}

.perspective-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  background: var(--color-primary);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

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

  .perspective-card {
    text-align: left;
  }

  .perspective-icon {
    margin: 0 0 var(--space-5);
  }
}

/* ===================================
   Social Proof Section
   =================================== */
.social-proof {
  padding: var(--space-16) 0;
}

.testimonial-card {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: var(--space-10);
  background: var(--color-white);
  border-radius: var(--radius-xl);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.testimonial-card blockquote {
  font-size: var(--font-size-xl);
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-text);
  margin-bottom: var(--space-6);
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.author-name {
  font-weight: 600;
  color: var(--color-text);
}

.author-title {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

@media (min-width: 768px) {
  .testimonial-card blockquote {
    font-size: var(--font-size-2xl);
  }
}

/* ===================================
   FAQ Section
   =================================== */
.faq {
  padding: var(--space-20) 0;
  background: var(--color-white);
}

.faq-list {
  max-width: var(--container-narrow);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.faq-item {
  background: var(--color-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-item summary {
  padding: var(--space-5) var(--space-6);
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: var(--font-size-xl);
  color: var(--color-text-muted);
  transition: transform var(--transition-fast);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 var(--space-6) var(--space-5);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ===================================
   Download CTA Section
   =================================== */
.download-cta {
  padding: var(--space-20) 0;
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-primary-light) 100%);
}

.cta-content {
  text-align: center;
  max-width: var(--container-narrow);
  margin: 0 auto;
}

.cta-content h2 {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  margin-bottom: var(--space-4);
}

.cta-content > p {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
}

.app-stores {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-10);
}

.store-badge {
  display: block;
  color: var(--color-text);
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.store-badge:hover {
  transform: scale(1.02);
  opacity: 0.9;
}

.store-badge svg {
  height: 48px;
  width: auto;
}

.store-badge-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.cta-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-6);
}

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

  .cta-content h2 {
    font-size: var(--font-size-4xl);
  }
}

/* ===================================
   Footer
   =================================== */
.footer {
  padding: var(--space-16) 0 var(--space-8);
  background: var(--color-text);
  color: var(--color-white);
}

.footer-grid {
  display: grid;
  gap: var(--space-10);
  margin-bottom: var(--space-10);
}

.footer-brand .logo {
  margin-bottom: var(--space-4);
}

.footer-brand .logo-icon {
  color: var(--color-primary-light);
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.6);
  max-width: 280px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
}

.footer-column h4 {
  font-size: var(--font-size-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: var(--space-4);
}

.footer-column a {
  display: block;
  padding: var(--space-2) 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--font-size-sm);
  transition: color var(--transition-fast);
}

.footer-column a:hover {
  color: var(--color-white);
}

.footer-bottom {
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.4);
}

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

/* ===================================
   Utility Classes
   =================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
