/* SnowPacksTech Design System */
:root {
  /* Colors - HSL values */
  --background: 218, 14%, 97%; /* Soft Light Gray #F6F7F9 */
  --foreground: 0, 0%, 13%; /* Dark Charcoal #222222 */
  --card: 0, 0%, 100%; /* Pure white for cards */
  --card-foreground: 0, 0%, 13%;
  --primary: 218, 79%, 19%; /* Deep Navy #0B1D51 */
  --primary-foreground: 0, 0%, 100%;
  --secondary: 218, 14%, 97%;
  --secondary-foreground: 218, 79%, 19%;
  --muted: 218, 14%, 92%;
  --muted-foreground: 0, 0%, 45%;
  --accent: 174, 100%, 50%; /* Electric Cyan #00FFD5 */
  --accent-foreground: 218, 79%, 19%;
  --border: 218, 14%, 88%;
  --input: 218, 14%, 96%;
  --ring: 174, 100%, 50%;

  /* Spacing */
  --spacing-unit: 20px;
  --radius: 12px;
  --max-width: 1200px;

  /* Typography */
  --font-heading: "Inter", sans-serif;
  --font-body: "Roboto", sans-serif;
  --line-height: 1.6;
  --letter-spacing: 0.2px;

  /* Animation */
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);

  /* Effects */
  --shadow-card: 0 4px 20px -2px hsla(var(--primary), 0.08);
  --shadow-hover: 0 8px 30px -4px hsla(var(--primary), 0.15);
  --glow-accent: 0 0 30px hsla(var(--accent), 0.3);
  --gradient-hero: linear-gradient(
    135deg,
    hsl(var(--primary)) 0%,
    hsl(var(--accent)) 100%
  );
  --gradient-card: linear-gradient(
    145deg,
    hsl(var(--card)) 0%,
    hsl(var(--background)) 100%
  );
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  line-height: var(--line-height);
  letter-spacing: var(--letter-spacing);
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
}

img {
  max-width: 100%;
  height: auto;
}

/* Container */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: hsl(var(--foreground));
}

.section-subtitle {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.section-cta {
  text-align: center;
  margin-top: 48px;
}

/* Background Variations */
.bg-background {
  background-color: hsl(var(--background));
}

.bg-muted {
  background-color: hsl(var(--muted) / 0.3);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--gradient-hero);
  overflow: hidden;
  color: white;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("./src/assets/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.1;
}

.floating-element {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  animation: float 6s ease-in-out infinite;
}

.floating-element-1 {
  top: 80px;
  left: 40px;
  width: 80px;
  height: 80px;
  background-color: hsla(var(--accent), 0.2);
}

.floating-element-2 {
  bottom: 128px;
  right: 64px;
  width: 128px;
  height: 128px;
  background-color: hsla(var(--accent), 0.1);
  animation-delay: -1s;
}

.floating-element-3 {
  top: 33.33%;
  right: 80px;
  width: 64px;
  height: 64px;
  background-color: hsla(var(--primary), 0.2);
  animation-delay: -2s;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.hero-text {
  max-width: 900px;
  margin: 0 auto 64px;
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}

.accent-text {
  color: hsl(var(--accent));
}

svg{
  color: #fff;
}

.pulse-glow {
  animation: pulseGlow 2s ease-in-out infinite alternate;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-bottom: 64px;
  padding: 32px 0;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: hsl(var(--accent));
}

.stat-label {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 4px;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin-bottom: 64px;
}

.trust-indicators {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 32px;
  opacity: 0.8;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
}

.trust-icon {
  width: 20px;
  height: 20px;
}

.trust-icon.accent {
  color: hsl(var(--accent));
}

.trust-dot {
  width: 20px;
  height: 20px;
  background-color: hsl(var(--accent));
  border-radius: 50%;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s var(--ease-smooth);
  text-decoration: none;
  font-family: var(--font-body);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background-color: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
}

.btn-primary:hover {
  background-color: hsl(var(--accent) / 0.9);
  box-shadow: var(--glow-accent);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.btn-outline {
  background-color: transparent;
  color: hsl(var(--foreground));
  border: 1px solid hsl(var(--border));
}

.btn-outline:hover {
  background-color: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
  border-color: hsl(var(--accent));
}

.btn-outline-white {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.btn-accent {
  background-color: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
}

.btn-accent:hover {
  background-color: hsl(var(--accent) / 0.9);
}

.btn-hero {
  box-shadow: var(--glow-accent);
}

.btn-hero:hover {
  transform: scale(1.05);
}

.btn-glow {
  box-shadow: 0 0 20px hsla(var(--accent), 0.3);
}

.btn-glow:hover {
  box-shadow: 0 0 40px hsla(var(--accent), 0.6);
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.btn-full {
  width: 100%;
}

.btn-icon {
  margin-left: 8px;
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--ease-smooth);
}

.btn-icon-left {
  margin-right: 8px;
  margin-left: 0;
  width: 16px;
  height: 16px;
}

.btn:hover .btn-icon {
  transform: translateX(4px);
}

/* Categories Section */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.category-card {
  background: var(--gradient-card);
  border-radius: var(--radius);
  padding: 32px;
  height: 100%;
  cursor: pointer;
  transition: all 0.3s var(--ease-smooth);
  box-shadow: var(--shadow-card);
  border: 1px solid hsl(var(--border));
  opacity: 0;
  animation: slideUp 0.6s var(--ease-spring) forwards;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.category-icon {
  width: 64px;
  height: 64px;
  background-color: hsl(var(--primary));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s var(--ease-smooth);
}

.category-icon i {
  width: 32px;
  height: 32px;
  color: white;
}

.category-card:hover .category-icon {
  background-color: hsl(var(--accent));
}

.category-arrow {
  width: 24px;
  height: 24px;
  color: hsl(var(--muted-foreground));
  transition: all 0.3s var(--ease-smooth);
}

.category-card:hover .category-arrow {
  color: hsl(var(--accent));
  transform: translateX(4px);
}

.category-content {
  margin-bottom: 24px;
}

.category-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  transition: color 0.3s var(--ease-smooth);
}

.category-card:hover .category-title {
  color: hsl(var(--primary));
}

.category-description {
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}

.category-footer {
  padding-top: 16px;
  border-top: 1px solid hsl(var(--border) / 0.5);
}

.category-count {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--accent));
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
}

.product-card {
  background: var(--gradient-card);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s var(--ease-smooth);
  box-shadow: var(--shadow-card);
  border: 1px solid hsl(var(--border));
  opacity: 0;
  animation: slideUp 0.6s var(--ease-spring) forwards;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.product-image {
  position: relative;
  height: 192px;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    hsla(var(--primary), 0.05),
    hsla(var(--accent), 0.05)
  );
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-smooth);
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsla(var(--primary), 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s var(--ease-smooth);
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-info {
  padding: 24px;
}

.product-category {
  font-size: 0.875rem;
  color: hsl(var(--accent));
  font-weight: 500;
  margin-bottom: 8px;
}

.product-name {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 8px;
  transition: color 0.3s var(--ease-smooth);
  line-height: 1.3;
}

.product-card:hover .product-name {
  color: hsl(var(--primary));
}

.product-description {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 16px;
  line-height: 1.4;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.stars {
  display: flex;
  align-items: center;
}

.star {
  width: 16px;
  height: 16px;
  color: hsl(var(--muted-foreground));
}

.star.filled {
  color: hsl(var(--accent));
}

.rating-number {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
}

.product-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(var(--primary));
}

.buy-btn {
  padding: 8px 16px;
  font-size: 0.875rem;
  transition: transform 0.3s var(--ease-smooth);
}

.product-card:hover .buy-btn {
  transform: scale(1.05);
}

/* Steps Section */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 48px;
  margin-bottom: 64px;
}

.step-item {
  position: relative;
  opacity: 0;
  animation: slideUp 0.6s var(--ease-spring) forwards;
}

.step-number {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  background-color: hsl(var(--primary));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  z-index: 10;
  transition: background-color 0.3s var(--ease-smooth);
}

.step-item:hover .step-number {
  background-color: hsl(var(--accent));
}

.step-card {
  background: var(--gradient-card);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  height: 100%;
  position: relative;
  z-index: 1;
  transition: all 0.3s var(--ease-smooth);
  box-shadow: var(--shadow-card);
  border: 1px solid hsl(var(--border));
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.step-icon {
  margin-bottom: 24px;
  padding-top: 16px;
}

.step-icon-container {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  background: linear-gradient(
    135deg,
    hsla(var(--accent), 0.1),
    hsla(var(--primary), 0.05)
  );
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease-smooth);
}

.step-card:hover .step-icon-container {
  transform: scale(1.1);
}

.step-icon i {
  width: 40px;
  height: 40px;
}

.step-icon i.accent {
  color: hsl(var(--accent));
}

.step-icon i.primary {
  color: hsl(var(--primary));
}

.step-content {
  margin-bottom: 16px;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 16px;
  transition: color 0.3s var(--ease-smooth);
}

.step-card:hover .step-title {
  color: hsl(var(--primary));
}

.step-description {
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}

.steps-cta {
  text-align: center;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: hsla(var(--accent), 0.1);
  color: hsl(var(--accent));
  padding: 8px 24px;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 24px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: hsl(var(--accent));
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.cta-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-description {
  color: hsl(var(--muted-foreground));
  margin-bottom: 24px;
}

/* Benefits Section */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-bottom: 64px;
}

.benefit-card {
  background: var(--gradient-card);
  border-radius: var(--radius);
  padding: 32px;
  height: 100%;
  cursor: pointer;
  transition: all 0.3s var(--ease-smooth);
  box-shadow: var(--shadow-card);
  border: 1px solid hsl(var(--border));
  opacity: 0;
  animation: slideUp 0.6s var(--ease-spring) forwards;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  background-color: hsl(var(--primary));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.3s var(--ease-smooth);
}

.benefit-icon i {
  width: 32px;
  height: 32px;
  color: white;
}

.benefit-card:hover .benefit-icon {
  background-color: hsl(var(--accent));
  transform: scale(1.1);
}

.benefit-content {
  margin-bottom: 12px;
}

.benefit-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  transition: color 0.3s var(--ease-smooth);
}

.benefit-card:hover .benefit-title {
  color: hsl(var(--primary));
}

.benefit-description {
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}

/* Trust Badges */
.trust-badges {
  margin-top: 64px;
  padding-top: 64px;
  border-top: 1px solid hsl(var(--border) / 0.5);
}

.trust-badges-header {
  text-align: center;
  margin-bottom: 32px;
}

.trust-badges-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.trust-badges-subtitle {
  color: hsl(var(--muted-foreground));
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 32px;
  opacity: 0.6;
}

.trust-stat {
  text-align: center;
}

.trust-stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--primary));
  margin-bottom: 4px;
}

.trust-stat-label {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: var(--gradient-hero);
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.cta-bg-1 {
  top: 80px;
  left: 80px;
  width: 160px;
  height: 160px;
  background-color: hsla(var(--accent), 0.2);
  animation: float 6s ease-in-out infinite;
}

.cta-bg-2 {
  bottom: 80px;
  right: 80px;
  width: 128px;
  height: 128px;
  background-color: hsla(var(--accent), 0.3);
  animation: float 6s ease-in-out infinite;
  animation-delay: -1s;
}

.cta-bg-3 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 384px;
  height: 384px;
  background-color: hsla(var(--accent), 0.1);
}

.cta-card {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 48px 64px;
  text-align: center;
  transition: all 0.3s var(--ease-smooth);
}

.cta-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px hsla(0, 0%, 0%, 0.2);
}

.cta-content {
  max-width: 900px;
  margin: 0 auto;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: hsla(var(--accent), 0.2);
  color: hsl(var(--accent));
  padding: 8px 16px;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 32px;
}

.cta-badge i {
  width: 16px;
  height: 16px;
}

.cta-text {
  margin-bottom: 32px;
}

.cta-title {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.1;
}

.cta-subtitle {
  font-size: clamp(1rem, 3vw, 1.5rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}

.cta-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
  padding: 32px 0;
}

.cta-stat {
  text-align: center;
}

.cta-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(var(--accent));
  margin-bottom: 8px;
}

.cta-stat-label {
  color: rgba(255, 255, 255, 0.8);
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin-bottom: 32px;
}

.cta-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

/* Contact Section */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.contact-description {
  color: hsl(var(--muted-foreground));
  margin-bottom: 32px;
  line-height: 1.6;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-method-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-method-icon.accent {
  background-color: hsla(var(--accent), 0.1);
}

.contact-method-icon.primary {
  background-color: hsla(var(--primary), 0.1);
}

.contact-method-icon i {
  width: 24px;
  height: 24px;
}

.contact-method-icon.accent i {
  color: hsl(var(--accent));
}

.contact-method-icon.primary i {
  color: hsl(var(--primary));
}

.contact-method-content {
  flex: 1;
}

.contact-method-title {
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-method-text {
  color: hsl(var(--muted-foreground));
  margin-bottom: 4px;
}

.contact-method-subtitle {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.contact-guarantee {
  background: linear-gradient(
    to right,
    hsla(var(--accent), 0.1),
    hsla(var(--primary), 0.1)
  );
  border-radius: var(--radius);
  padding: 24px;
}

.guarantee-title {
  font-weight: 600;
  margin-bottom: 8px;
}

.guarantee-text {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}

/* Contact Form */
.contact-form-container {
  background: var(--gradient-card);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-card);
  border: 1px solid hsl(var(--border));
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-weight: 500;
  color: hsl(var(--foreground));
}

.form-input,
.form-textarea {
  padding: 12px 16px;
  border: none;
  border-radius: calc(var(--radius) - 4px);
  background-color: hsla(var(--muted), 0.5);
  color: hsl(var(--foreground));
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s var(--ease-smooth);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  box-shadow: 0 0 0 2px hsl(var(--accent));
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}

/* Footer */
.footer {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  position: relative;
  overflow: hidden;
}

.footer-bg {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.1;
}

.footer-bg-1 {
  top: 0;
  left: 25%;
  width: 128px;
  height: 128px;
  background-color: hsl(var(--accent));
}

.footer-bg-2 {
  bottom: 0;
  right: 25%;
  width: 192px;
  height: 192px;
  background-color: hsl(var(--accent));
}

.footer-content {
  padding: 64px 0;
  position: relative;
  z-index: 10;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-brand-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-brand-description {
  color: hsla(var(--primary-foreground), 0.8);
  line-height: 1.6;
  max-width: 400px;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact-icon {
  width: 16px;
  height: 16px;
  color: hsl(var(--accent));
}

.footer-contact-link {
  color: hsla(var(--primary-foreground), 0.8);
  text-decoration: none;
  transition: color 0.3s var(--ease-smooth);
}

.footer-contact-link:hover {
  color: hsl(var(--accent));
}

.footer-social {
  display: flex;
  gap: 16px;
}

.social-btn {
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s var(--ease-smooth);
  color: hsla(var(--primary-foreground), 0.7);
}

.social-btn:hover {
  background-color: hsla(var(--accent), 0.2);
  color: hsl(var(--accent));
}

.social-btn i {
  width: 20px;
  height: 20px;
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-section-title {
  font-size: 1.125rem;
  font-weight: 600;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  color: hsla(var(--primary-foreground), 0.8);
  text-decoration: none;
  transition: color 0.3s var(--ease-smooth);
}

.footer-link:hover {
  color: hsl(var(--accent));
}

.footer-link-external {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-link-external i {
  width: 16px;
  height: 16px;
}

.footer-separator {
  height: 1px;
  background-color: hsla(var(--primary-foreground), 0.2);
}

.footer-bottom {
  padding: 32px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-copyright {
  color: hsla(var(--primary-foreground), 0.7);
  font-size: 0.875rem;
}

.footer-bottom-nav {
  display: flex;
  gap: 24px;
  font-size: 0.875rem;
}

.footer-bottom-link {
  color: hsla(var(--primary-foreground), 0.7);
  text-decoration: none;
  transition: color 0.3s var(--ease-smooth);
}

.footer-bottom-link:hover {
  color: hsl(var(--accent));
}

.footer-trust {
  text-align: center;
  padding-bottom: 32px;
}

.footer-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: hsla(var(--accent), 0.2);
  color: hsl(var(--accent));
  padding: 8px 16px;
  border-radius: 9999px;
  font-size: 0.875rem;
}

/* Floating Backgrounds */
.floating-bg {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.05;
}

.floating-bg-1 {
  top: 25%;
  left: 25%;
  width: 256px;
  height: 256px;
  background-color: hsl(var(--accent));
}

.floating-bg-2 {
  bottom: 25%;
  right: 25%;
  width: 192px;
  height: 192px;
  background-color: hsl(var(--primary));
}

.floating-bg-3 {
  top: 25%;
  left: 25%;
  width: 256px;
  height: 256px;
  background-color: hsl(var(--accent));
}

.floating-bg-4 {
  bottom: 25%;
  right: 25%;
  width: 192px;
  height: 192px;
  background-color: hsl(var(--primary));
}

/* Toast Notification */
.toast {
  position: fixed;
  top: 24px;
  right: 24px;
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 320px;
  z-index: 1000;
  transform: translateX(100%);
  opacity: 0;
  transition: all 0.3s var(--ease-smooth);
}

.toast.show {
  transform: translateX(0);
  opacity: 1;
}

.toast-content {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
}

.toast-icon {
  width: 24px;
  height: 24px;
  color: hsl(var(--accent));
  flex-shrink: 0;
  margin-top: 2px;
}

.toast-text {
  flex: 1;
}

.toast-title {
  font-weight: 600;
  margin-bottom: 4px;
}

.toast-description {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.toast-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: hsl(var(--muted-foreground));
  transition: color 0.3s var(--ease-smooth);
}

.toast-close:hover {
  color: hsl(var(--foreground));
}

.toast-close i {
  width: 16px;
  height: 16px;
}

/* Animations */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulseGlow {
  0% {
    text-shadow: 0 0 20px hsla(var(--accent), 0.3);
  }
  100% {
    text-shadow: 0 0 40px hsla(var(--accent), 0.6);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Animation Delays */
.fade-up {
  opacity: 0;
  animation: slideUp 0.6s var(--ease-spring) forwards;
}

.stagger-1 {
  animation-delay: 0.1s;
}
.stagger-2 {
  animation-delay: 0.2s;
}
.stagger-3 {
  animation-delay: 0.3s;
}
.stagger-4 {
  animation-delay: 0.4s;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .section {
    padding: 60px 0;
  }

  .container {
    padding: 0 20px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 48px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero-buttons,
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn,
  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  .categories-grid,
  .products-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .cta-card {
    padding: 32px 24px;
  }

  .cta-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .trust-indicators,
  .cta-trust {
    flex-direction: column;
    gap: 16px;
  }

  .toast {
    right: 12px;
    left: 12px;
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .section {
    padding: 40px 0;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  :root {
    --background: 218, 79%, 4.9%;
    --foreground: 210, 40%, 98%;
    --card: 218, 79%, 4.9%;
    --card-foreground: 210, 40%, 98%;
    --muted: 217, 32.6%, 17.5%;
    --muted-foreground: 215, 20.2%, 65.1%;
    --border: 217, 32.6%, 17.5%;
    --input: 217, 32.6%, 17.5%;
  }
}
