/* ============================================
   CustomsShape - Design System & Styles
   Minimalist Modern Design
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ---------- Design Tokens ---------- */
:root {
  /* Colors */
  --background: #FAFAFA;
  --foreground: #0F172A;
  --muted: #F1F5F9;
  --muted-foreground: #64748B;
  --accent: #0052FF;
  --accent-secondary: #4D7CFF;
  --accent-foreground: #FFFFFF;
  --border: #E2E8F0;
  --card: #FFFFFF;
  --ring: #0052FF;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
  --shadow-accent: 0 4px 14px rgba(0, 82, 255, 0.25);
  --shadow-accent-lg: 0 8px 24px rgba(0, 82, 255, 0.35);

  /* Typography */
  --font-display: 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'Inter', system-ui, sans-serif;

  /* Spacing */
  --container-width: 72rem;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.625;
  color: var(--foreground);
  background-color: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input {
  font-family: inherit;
}

/* ---------- Typography ---------- */
h1,
h2 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.75rem, 5vw + 1rem, 5.25rem);
  line-height: 1.05;
}

h2 {
  font-size: clamp(2rem, 3vw + 0.5rem, 3.25rem);
  line-height: 1.15;
}

h3,
h4,
h5,
h6 {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.5rem;
  line-height: 1.3;
}

p {
  color: var(--muted-foreground);
  line-height: 1.75;
}

.lead {
  font-size: 1.125rem;
  line-height: 1.7;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

.section {
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 7rem 0;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 11rem 0;
  }
}

/* ---------- Gradient Text ---------- */
.gradient-text {
  background: linear-gradient(to right, var(--accent), var(--accent-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline;
  position: relative;
}

.gradient-text::after {
  content: '';
  position: absolute;
  bottom: -0.25rem;
  left: 0;
  height: 0.5rem;
  width: 100%;
  border-radius: 0.125rem;
  background: linear-gradient(to right, rgba(0, 82, 255, 0.15), rgba(77, 124, 255, 0.1));
}

@media (min-width: 768px) {
  .gradient-text::after {
    bottom: -0.5rem;
    height: 0.75rem;
  }
}

/* ---------- Section Label Badge ---------- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  border: 1px solid rgba(0, 82, 255, 0.3);
  background: rgba(0, 82, 255, 0.05);
  margin-bottom: 1.5rem;
}

.section-label__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s infinite;
}

.section-label__text {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: 0.75rem;
  transition: all 0.2s ease-out;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(to right, var(--accent), var(--accent-secondary));
  color: var(--accent-foreground);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent-lg);
  filter: brightness(1.1);
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-primary .btn-arrow {
  transition: transform 0.2s;
}

.btn-primary:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-secondary {
  background: transparent;
  color: var(--foreground);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--muted);
  border-color: rgba(0, 82, 255, 0.3);
  box-shadow: var(--shadow-sm);
}

.btn-ghost {
  background: transparent;
  color: var(--muted-foreground);
}

.btn-ghost:hover {
  color: var(--foreground);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: 1rem;
  height: 3.5rem;
}

/* ---------- Cards ---------- */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease-out;
}

.card:hover {
  box-shadow: var(--shadow-xl);
}

.card-elevated {
  box-shadow: var(--shadow-lg);
}

/* Gradient border card */
.card-featured {
  position: relative;
  background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
  padding: 2px;
  border-radius: 1rem;
  border: none;
}

.card-featured__inner {
  background: var(--card);
  border-radius: calc(1rem - 2px);
  padding: 2rem;
  height: 100%;
}

/* ---------- Inputs ---------- */
.input {
  width: 100%;
  height: 3.5rem;
  padding: 0 1.25rem;
  font-size: 1rem;
  color: var(--foreground);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  transition: all 0.2s;
}

.input::placeholder {
  color: rgba(100, 116, 139, 0.5);
}

.input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 82, 255, 0.15);
}

/* ---------- Animations ---------- */
@keyframes pulse-dot {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.3);
    opacity: 0.7;
  }
}

@keyframes rotate-slow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes float-delayed {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(10px);
  }
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-rotate-slow {
  animation: rotate-slow 60s linear infinite;
}

.animate-float {
  animation: float 5s ease-in-out infinite;
}

.animate-float-delayed {
  animation: float-delayed 4s ease-in-out infinite;
}

.animate-fade-in-up {
  animation: fade-in-up 0.7s ease-out forwards;
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 250, 250, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--foreground);
}

.nav__logo span {
  color: var(--accent);
}

.nav__links {
  display: none;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

@media (min-width: 768px) {
  .nav__links {
    display: flex;
  }
}

.nav__link {
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.nav__link:hover {
  color: var(--foreground);
}

.nav__cta {
  display: none;
}

@media (min-width: 768px) {
  .nav__cta {
    display: flex;
  }
}

/* Mobile menu button */
.nav__mobile-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .nav__mobile-btn {
    display: none;
  }
}

/* ---------- Hero Section ---------- */
.hero {
  padding-top: 7rem;
  padding-bottom: 5rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero {
    padding-top: 9rem;
    padding-bottom: 7rem;
  }
}

@media (min-width: 1024px) {
  .hero {
    padding-top: 10rem;
    padding-bottom: 9rem;
  }
}

.hero__container {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero__container {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
  }
}

.hero__content {
  text-align: center;
}

@media (min-width: 1024px) {
  .hero__content {
    text-align: left;
  }
}

.hero__title {
  margin-bottom: 1.5rem;
}

.hero__description {
  font-size: 1.125rem;
  max-width: 32rem;
  margin: 0 auto 2rem;
}

@media (min-width: 1024px) {
  .hero__description {
    margin: 0 0 2.5rem 0;
  }
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero__actions {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .hero__actions {
    justify-content: flex-start;
  }
}

/* Hero Graphic */
.hero__graphic {
  display: none;
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 500px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .hero__graphic {
    display: block;
  }
}

.hero__graphic-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0, 82, 255, 0.08), transparent 70%);
  border-radius: 50%;
}

.hero__graphic-ring {
  position: absolute;
  inset: 2rem;
  border: 2px dashed rgba(0, 82, 255, 0.2);
  border-radius: 50%;
}

.hero__graphic-card {
  position: absolute;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-xl);
}

.hero__graphic-card--1 {
  top: 15%;
  right: 5%;
}

.hero__graphic-card--2 {
  bottom: 20%;
  left: 10%;
}

.hero__graphic-card-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-bottom: 0.25rem;
}

.hero__graphic-card-value {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
}

.hero__graphic-card-value--success {
  color: #10b981;
}

.hero__graphic-accent {
  position: absolute;
  bottom: 10%;
  right: 20%;
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
  border-radius: 1rem;
  box-shadow: var(--shadow-accent-lg);
}

.hero__graphic-dots {
  position: absolute;
  top: 40%;
  left: 25%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.hero__graphic-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: rgba(0, 82, 255, 0.3);
  border-radius: 50%;
}

/* ---------- Features Section ---------- */
.features {
  background: var(--background);
}

.features__header {
  text-align: center;
  margin-bottom: 4rem;
}

.features__title {
  margin-bottom: 1rem;
}

.features__description {
  max-width: 36rem;
  margin: 0 auto;
}

.features__grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 82, 255, 0.03), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card__icon {
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
  border-radius: 0.75rem;
  margin-bottom: 1.25rem;
  color: white;
  transition: transform 0.3s;
}

.feature-card:hover .feature-card__icon {
  transform: scale(1.1);
}

.feature-card__title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.feature-card__description {
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* ---------- Stats Section (Inverted) ---------- */
.stats {
  background: var(--foreground);
  color: white;
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 1px 1px, white 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.03;
}

.stats__glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--accent);
  filter: blur(150px);
  opacity: 0.06;
}

.stats__glow--1 {
  top: -200px;
  right: -100px;
}

.stats__glow--2 {
  bottom: -200px;
  left: -100px;
}

.stats__container {
  position: relative;
  z-index: 1;
}

.stats__header {
  text-align: center;
  margin-bottom: 4rem;
}

.stats__header .section-label {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.stats__header .section-label__text {
  color: white;
}

.stats__title {
  color: white;
  margin-bottom: 1rem;
}

.stats__description {
  color: rgba(255, 255, 255, 0.7);
  max-width: 36rem;
  margin: 0 auto;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) {
  .stats__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .stat-item {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .stat-item:last-child {
    border-right: none;
  }
}

.stat-item__value {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(to right, white, rgba(255, 255, 255, 0.7));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.5rem;
}

.stat-item__label {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ---------- How It Works Section ---------- */
.how-it-works {
  background: var(--background);
}

.how-it-works__header {
  text-align: center;
  margin-bottom: 4rem;
}

.how-it-works__title {
  margin-bottom: 1rem;
}

.how-it-works__description {
  max-width: 36rem;
  margin: 0 auto;
}

.how-it-works__timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .how-it-works__timeline {
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
  }
}

.timeline-step {
  flex: 1;
  position: relative;
  text-align: center;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .timeline-step::after {
    content: '→';
    position: absolute;
    right: -0.5rem;
    top: 1.75rem;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    font-size: 0.875rem;
  }

  .timeline-step:last-child::after {
    display: none;
  }
}

.timeline-step__number {
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
  color: white;
  font-size: 1.25rem;
  font-weight: 600;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  box-shadow: var(--shadow-accent);
}

.timeline-step__title {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.timeline-step__description {
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* ---------- Pricing Section ---------- */
.pricing {
  background: var(--muted);
}

.pricing__header {
  text-align: center;
  margin-bottom: 4rem;
}

.pricing__title {
  margin-bottom: 1rem;
}

.pricing__description {
  max-width: 36rem;
  margin: 0 auto;
}

.pricing__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .pricing__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.pricing-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 2.5rem;
  text-align: center;
}

.pricing-card--featured {
  position: relative;
  background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
  padding: 2px;
  border: none;
  transform: scale(1.05);
  z-index: 1;
}

.pricing-card--featured .pricing-card__inner {
  background: var(--card);
  border-radius: calc(1.5rem - 2px);
  padding: 2.5rem;
}

.pricing-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  background: linear-gradient(to right, var(--accent), var(--accent-secondary));
  color: white;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}

.pricing-card__name {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.pricing-card__price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.pricing-card__price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--muted-foreground);
}

.pricing-card__description {
  font-size: 0.9375rem;
  margin-bottom: 2rem;
}

.pricing-card__features {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
}

.pricing-card__feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0;
  font-size: 0.9375rem;
  color: var(--foreground);
}

.pricing-card__feature svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--accent);
  flex-shrink: 0;
}

.pricing-card .btn {
  width: 100%;
}

/* ---------- Testimonials Section ---------- */
.testimonials {
  background: var(--background);
}

.testimonials__header {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials__title {
  margin-bottom: 1rem;
}

.testimonials__description {
  max-width: 36rem;
  margin: 0 auto;
}

.testimonials__grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
  }
}

.testimonial-card {
  position: relative;
  padding: 2rem;
}

@media (min-width: 768px) {
  .testimonial-card--featured {
    transform: translateY(-1rem);
  }
}

.testimonial-card__accent {
  position: absolute;
  left: 0;
  top: 2rem;
  bottom: 2rem;
  width: 4px;
  background: linear-gradient(to bottom, var(--accent), var(--accent-secondary));
  border-radius: 2px;
}

.testimonial-card__quote-mark {
  font-size: 5rem;
  line-height: 1;
  color: rgba(0, 82, 255, 0.1);
  font-family: Georgia, serif;
  margin-bottom: -2rem;
}

.testimonial-card__quote {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--foreground);
  margin-bottom: 1.5rem;
  position: relative;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-card__avatar {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
}

.testimonial-card__name {
  font-weight: 600;
  font-size: 0.9375rem;
}

.testimonial-card__role {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ---------- CTA Section ---------- */
.cta {
  background: var(--foreground);
  color: white;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 1px 1px, white 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.03;
}

.cta__glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: var(--accent);
  filter: blur(150px);
  opacity: 0.08;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cta__container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta__title {
  color: white;
  margin-bottom: 1rem;
}

.cta__description {
  color: rgba(255, 255, 255, 0.7);
  max-width: 32rem;
  margin: 0 auto 2.5rem;
  font-size: 1.125rem;
}

.cta__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 28rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .cta__form {
    flex-direction: row;
  }
}

.cta__form .input {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: white;
}

.cta__form .input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.cta__form .input:focus {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.15);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--background);
  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 repeat(3, 1fr);
    gap: 2rem;
  }
}

.footer__brand {
  max-width: 20rem;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.footer__logo span {
  color: var(--accent);
}

.footer__tagline {
  font-size: 0.9375rem;
  line-height: 1.6;
}

.footer__column h4 {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--foreground);
  margin-bottom: 1.25rem;
}

.footer__links {
  list-style: none;
}

.footer__link {
  display: block;
  padding: 0.375rem 0;
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.footer__link:hover {
  color: var(--accent);
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

@media (min-width: 640px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer__copyright {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social-link {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-foreground);
  background: var(--muted);
  border-radius: 0.5rem;
  transition: all 0.2s;
}

.footer__social-link:hover {
  color: var(--accent);
  background: rgba(0, 82, 255, 0.1);
}

/* ---------- Utility Classes ---------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-center {
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}