/*
 * Vadimthai Brand Design System
 * Modern, Professional, Scalable
 * Version: 2.0
 */

/* ============================================
   CSS CUSTOM PROPERTIES (Design Tokens)
   ============================================ */
:root {
  /* Brand Colors - CBD Natural Green Theme */
  --brand-primary: #10B981;        /* Emerald Green - Main brand color */
  --brand-primary-dark: #059669;   /* Deep Green - Hover states */
  --brand-primary-light: #6EE7B7;  /* Light Mint - Backgrounds */
  --brand-accent: #5EEAD4;         /* Teal - Accents */

  /* Platform Colors */
  --etsy-orange: #10B981;          /* Green for Etsy sections */
  --fiverr-green: #14B8A6;         /* Teal for Fiverr sections */

  /* Neutral Colors - Natural Earth Tones */
  --dark-navy: #1e293b;            /* Dark Navy - Nav, footer, headings */
  --dark-gray: #334155;            /* Dark Gray - Text */
  --medium-gray: #6B7280;          /* Gray - Secondary text */
  --light-gray: #D1FAE5;           /* Light Mint - Borders */
  --ultra-light: #F0FDF4;          /* Very Light Green - Alt backgrounds */
  --white: #FFFFFF;

  /* Semantic Colors */
  --success: #10B981;              /* Green */
  --warning: #FBBF24;              /* Amber */
  --error: #F87171;                /* Soft Red */
  --info: #22D3EE;                 /* Cyan */

  /* Gradients - Natural CBD Theme */
  --gradient-brand: linear-gradient(135deg, #059669 0%, #10B981 100%);
  --gradient-etsy: linear-gradient(135deg, #10B981 0%, #34D399 100%);
  --gradient-fiverr: linear-gradient(135deg, #14B8A6 0%, #5EEAD4 100%);
  --gradient-hero: linear-gradient(135deg, #065F46 0%, #059669 50%, #10B981 100%);

  /* Typography */
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, monospace;

  /* Spacing Scale */
  --space-xs: 0.25rem;   /* 4px */
  --space-sm: 0.5rem;    /* 8px */
  --space-md: 1rem;      /* 16px */
  --space-lg: 1.5rem;    /* 24px */
  --space-xl: 2rem;      /* 32px */
  --space-2xl: 3rem;     /* 48px */
  --space-3xl: 4rem;     /* 64px */
  --space-4xl: 6rem;     /* 96px */

  /* Border Radius */
  --radius-sm: 0.375rem;  /* 6px */
  --radius-md: 0.5rem;    /* 8px */
  --radius-lg: 0.75rem;   /* 12px */
  --radius-xl: 1rem;      /* 16px */
  --radius-2xl: 1.5rem;   /* 24px */
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 300ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Z-index Scale */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark-navy);
  margin-bottom: var(--space-md);
}

h1 { font-size: 3rem; }      /* 48px */
h2 { font-size: 2.25rem; }   /* 36px */
h3 { font-size: 1.875rem; }  /* 30px */
h4 { font-size: 1.5rem; }    /* 24px */
h5 { font-size: 1.25rem; }   /* 20px */
h6 { font-size: 1rem; }      /* 16px */

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.5rem; }
}

p {
  margin-bottom: var(--space-md);
  color: var(--medium-gray);
}

a {
  color: var(--brand-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--brand-primary-dark);
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

main {
  flex: 1;
}

/* ============================================
   NAVIGATION - Dark Professional
   ============================================ */
.navbar {
  background: rgb(49, 48, 47);
  color: var(--white);
  padding: var(--space-md) 0;
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  box-shadow: 0 4px 20px rgba(49, 48, 47, 0.5);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.navbar-brand::before {
  content: '◆';
  color: #6EE7B7;
  font-size: 1.25rem;
  text-shadow: 0 0 10px rgba(110, 231, 183, 0.6);
}

.navbar-menu {
  display: flex;
  gap: var(--space-xl);
  list-style: none;
}

.navbar-menu a {
  color: var(--white);
  font-weight: 500;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.navbar-menu a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--brand-primary-light);
}

/* Mobile Menu Toggle */
.navbar-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .navbar-toggle {
    display: block;
  }

  .navbar-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark-navy);
    flex-direction: column;
    padding: var(--space-lg);
    gap: var(--space-md);
    box-shadow: var(--shadow-lg);
  }

  .navbar-menu.active {
    display: flex;
  }
}

/* ============================================
   HERO SECTION - Two Column Split Layout
   ============================================ */
.hero {
  /* Warm taupe background with gradient */
  background: linear-gradient(135deg,
    rgb(174, 164, 156) 0%,
    rgb(194, 184, 176) 35%,
    rgb(204, 194, 186) 65%,
    rgb(184, 174, 166) 100%);
  position: relative;
  overflow: hidden;
}

.hero-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 110px var(--space-lg);
}

.hero-content {
  width: 100%;
  max-width: 1024px;
  max-height: 1024px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.15),
    0 0 0 4px rgba(255, 255, 255, 0.2);
}

.hero-text {
  padding: var(--space-3xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  color: #1e293b;
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: var(--space-lg);
  line-height: 1.15;
  letter-spacing: -0.02em;
  animation: fadeInUp 0.8s ease-out 0.1s backwards;
}

.hero-text h1 .gradient-text {
  background: linear-gradient(135deg, #F56400 0%, #FF8C42 50%, #FFB84D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  font-weight: 800;
}

.hero-subtitle {
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
  color: #475569;
  margin-bottom: var(--space-xl);
  line-height: 1.5;
  max-width: 400px;
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
  letter-spacing: 0.01em;
}

.hero-facts {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
  animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.hero-fact {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: #334155;
  font-weight: 500;
  font-size: 0.95rem;
}

.hero-fact i {
  color: #F56400;
  font-size: 1rem;
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero-buttons .btn {
  flex: 1;
  min-width: 180px;
}

.hero-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('../assets/hero.png');
  background-size: cover;
  /* Двигайте hero.png влево/вправо изменяя первое значение:
     left = влево (0%, 20%, 30%)
     center = по центру (50%)
     right = вправо (70%, 80%, 100%)
     Примеры: background-position: 30% center; или background-position: right center; */
  background-position: 60% center;
  background-repeat: no-repeat;
  min-height: 600px;
}

.hero-photo img {
  display: none;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 968px) {
  .hero-content {
    grid-template-columns: 1fr;
    max-height: none;
  }

  .hero-text {
    padding: var(--space-2xl);
    text-align: center;
    order: 2;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-facts {
    align-items: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-photo {
    order: 1;
    min-height: 300px;
    max-height: 400px;
    overflow: hidden;
  }
}

@media (max-width: 480px) {
  .hero-photo {
    min-height: 250px;
    max-height: 300px;
  }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
}

.btn-etsy {
  background: linear-gradient(135deg, #F56400 0%, #FF8C42 100%);
  color: var(--white);
  border: none;
  box-shadow: 0 4px 15px rgba(245, 100, 0, 0.35);
  position: relative;
  overflow: hidden;
}

.btn-etsy::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -100%;
  width: 100%;
  height: 200%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transform: skewX(-25deg);
}

.btn-etsy:hover::after {
  animation: shine 0.6s ease-out forwards;
}

.btn-etsy:hover {
  background: linear-gradient(135deg, #D45500 0%, #F56400 100%);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 100, 0, 0.45);
}

.btn-fiverr {
  background: linear-gradient(135deg, #10B981 0%, #34D399 100%);
  color: var(--white);
  border: none;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.35);
  position: relative;
  overflow: hidden;
}

.btn-fiverr::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -100%;
  width: 100%;
  height: 200%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transform: skewX(-25deg);
}

.btn-fiverr:hover::after {
  animation: shine 0.6s ease-out forwards;
}

.btn-fiverr:hover {
  background: linear-gradient(135deg, #059669 0%, #10B981 100%);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.45);
}

.btn-dark {
  background: linear-gradient(135deg, #475569 0%, #1e293b 100%);
  color: var(--white);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-dark::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -100%;
  width: 100%;
  height: 200%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transform: skewX(-25deg);
}

.btn-dark:hover::after {
  animation: shine 0.6s ease-out forwards;
}

.btn-dark:hover {
  background: linear-gradient(135deg, #334155 0%, #0f172a 100%);
  color: var(--white);
  transform: translateY(-2px);
}

@keyframes shine {
  to {
    left: 100%;
  }
}

.btn-purple {
  background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
  color: var(--white);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-purple::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -100%;
  width: 100%;
  height: 200%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transform: skewX(-25deg);
}

.btn-purple:hover::after {
  animation: shine 0.6s ease-out forwards;
}

.btn-purple:hover {
  background: linear-gradient(135deg, #5568D3 0%, #664193 100%);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: var(--space-lg) var(--space-2xl);
  font-size: 1.125rem;
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section {
  padding: 110px 0;
}

.section-alt {
  background: var(--ultra-light);
}

/* Colorful section backgrounds */
#about {
  background: linear-gradient(135deg, #8490C8 0%, #A0AAD8 50%, #C4CBE8 100%);
  position: relative;
  overflow: hidden;
}

#about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(132, 144, 200, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(160, 170, 216, 0.25) 0%, transparent 50%);
  pointer-events: none;
  animation: warmGlow 16s ease-in-out infinite alternate;
}

#about .container {
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-3xl);
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
}

.section-header p {
  font-size: 1.125rem;
  color: var(--medium-gray);
}

/* ============================================
   ETSY SERVICES SECTION - Warm Orange
   ============================================ */
#services {
  background: linear-gradient(135deg, #F56400 0%, #FF8C42 50%, #FFB84D 100%);
  position: relative;
  overflow: hidden;
}

#services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(245, 100, 0, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(255, 140, 66, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 50% 90%, rgba(255, 184, 77, 0.2) 0%, transparent 50%);
  pointer-events: none;
  animation: warmGlow 18s ease-in-out infinite alternate;
}

#services::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 100, 0, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatShape 25s ease-in-out infinite;
  pointer-events: none;
  filter: blur(60px);
}

#services .container {
  position: relative;
  z-index: 1;
}

#services .section-header h2 {
  color: var(--white);
}

#services .section-header p {
  color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   SERVICES GRID - ETSY SECTION
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-2xl);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-slow);
  border: 2px solid transparent;
  position: relative;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(30, 41, 59, 0.02) 100%);
  opacity: 0;
  transition: opacity var(--transition-slow);
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card:hover::after {
  opacity: 1;
}

.service-card.etsy-card {
  border-color: #F56400;
}

.service-card.etsy-card:hover {
  box-shadow: 0 25px 50px -12px rgba(245, 100, 0, 0.4);
}

.service-card-body {
  padding: var(--space-2xl) var(--space-xl) var(--space-xl);
}

.service-card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #F56400 0%, #FF8C42 100%);
  color: var(--white);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto var(--space-xl);
  transition: all var(--transition-base);
}

.service-card:hover .service-card-icon {
  transform: scale(1.05);
}

.service-card-title {
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
  color: #1e293b;
}

.service-card-subtitle {
  font-size: 1rem;
  font-weight: 600;
  color: #F56400;
  margin-bottom: var(--space-md);
}

.service-card-description {
  color: #334155;
  margin-bottom: var(--space-lg);
}

.service-features {
  list-style: none;
  margin-bottom: var(--space-xl);
}

.service-features li {
  padding: var(--space-sm) 0;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: #334155;
}

.service-features li::before {
  content: '✓';
  color: #F56400;
  font-weight: 700;
  font-size: 1.25rem;
}

/* ============================================
   FIVERR SECTION - Forest Green
   ============================================ */
.fiverr-section {
  background: linear-gradient(135deg, #047857 0%, #059669 50%, #10B981 100%);
  color: var(--white);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}

.fiverr-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 25% 30%, rgba(4, 120, 87, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 75% 70%, rgba(5, 150, 105, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.2) 0%, transparent 50%);
  pointer-events: none;
  animation: warmGlow 20s ease-in-out infinite alternate;
}

.fiverr-section::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(4, 120, 87, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatShape 22s ease-in-out infinite reverse;
  pointer-events: none;
  filter: blur(60px);
}

.fiverr-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.fiverr-stats {
  color: var(--white);
}

.fiverr-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.fiverr-header > i {
  font-size: 3rem;
  color: var(--white);
}

.fiverr-header h2 {
  color: var(--white);
  margin-bottom: 0.25rem;
  font-size: 2rem;
}

.fiverr-stats h2 {
  color: var(--white);
  margin-bottom: var(--space-lg);
}

.fiverr-stats p {
  color: rgba(255, 255, 255, 0.9);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.stat-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 1);
  box-shadow: 0 4px 15px rgba(4, 120, 87, 0.2);
  transition: all var(--transition-base);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(4, 120, 87, 0.3);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #065F46;
  display: block;
  margin-bottom: var(--space-xs);
}

.stat-label {
  font-size: 0.875rem;
  color: #047857;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.fiverr-info-box {
  background: rgba(4, 120, 87, 0.3);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 2px solid rgba(255, 255, 255, 0.3);
  margin-bottom: var(--space-xl);
  box-shadow: 0 4px 15px rgba(4, 120, 87, 0.2);
}

.fiverr-info-box h5 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.fiverr-info-box ul {
  list-style: none;
}

.fiverr-info-box li {
  padding: var(--space-sm) 0;
  color: rgba(255, 255, 255, 0.95);
}

.fiverr-info-box li::before {
  content: '✓';
  margin-right: var(--space-sm);
  font-weight: 700;
  color: var(--white);
}

.fiverr-reviews {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-2xl);
}

.fiverr-reviews h4 {
  text-align: center;
  color: var(--dark-navy);
  margin-bottom: var(--space-xl);
}

.review-card {
  padding: var(--space-lg);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-md);
  transition: all var(--transition-base);
}

.review-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--fiverr-green);
}

.review-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  object-fit: cover;
}

.review-author {
  flex: 1;
}

.review-name {
  font-weight: 600;
  color: var(--dark-navy);
  margin-bottom: var(--space-xs);
}

.review-stars {
  color: #FFC107;
  font-size: 0.875rem;
}

.review-text {
  color: var(--medium-gray);
  font-size: 0.875rem;
  line-height: 1.6;
}

@media (max-width: 968px) {
  .fiverr-content {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================
   FEATURES GRID
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-2xl);
}

.feature-card {
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  border: 2px solid var(--light-gray);
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(30, 41, 59, 0.05), transparent);
  transition: left 0.6s;
}

.feature-card:hover::before {
  left: 100%;
}

.feature-card:hover {
  border-color: var(--brand-primary);
  box-shadow:
    var(--shadow-lg),
    0 10px 30px rgba(30, 41, 59, 0.1);
  transform: translateY(-4px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--space-lg);
  position: relative;
  transition: all var(--transition-base);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

/* Colorful icons for About section */
#about .feature-card:nth-child(1) .feature-icon {
  background: linear-gradient(135deg, #F093FB 0%, #F5576C 100%);
  box-shadow: 0 4px 15px rgba(240, 147, 251, 0.3);
}

#about .feature-card:nth-child(2) .feature-icon {
  background: linear-gradient(135deg, #4FACFE 0%, #00F2FE 100%);
  box-shadow: 0 4px 15px rgba(79, 172, 254, 0.3);
}

#about .feature-card:nth-child(3) .feature-icon {
  background: linear-gradient(135deg, #43E97B 0%, #38F9D7 100%);
  box-shadow: 0 4px 15px rgba(67, 233, 123, 0.3);
}

#about .feature-card:nth-child(4) .feature-icon {
  background: linear-gradient(135deg, #FA709A 0%, #FEE140 100%);
  box-shadow: 0 4px 15px rgba(250, 112, 154, 0.3);
}

.feature-card:hover .feature-icon {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(30, 41, 59, 0.3);
}

.feature-title {
  font-size: 1.25rem;
  color: var(--dark-navy);
  margin-bottom: var(--space-md);
}

.feature-description {
  color: var(--medium-gray);
  line-height: 1.6;
}

/* ============================================
   CTA (Call to Action)
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, #059669 0%, #10B981 50%, #34D399 100%);
  color: var(--white);
  padding: var(--space-3xl);
  border-radius: var(--radius-2xl);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(16, 185, 129, 0.3);
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-section h3 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: var(--space-md);
}

.cta-section p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-xl);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: rgb(49, 48, 47);
  color: var(--white);
  padding: var(--space-2xl) 0;
  margin-top: auto;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-lg);
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  display: flex;
  gap: var(--space-xl);
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--white);
}

/* ============================================
   UTILITIES
   ============================================ */

/* Loading spinner */
.spinner {
  border: 3px solid rgba(0, 0, 0, 0.1);
  border-left-color: var(--brand-primary);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Responsive Images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Focus visible for accessibility */
*:focus-visible {
  outline: 2px solid var(--brand-primary);
  outline-offset: 2px;
}

/* ============================================
   ARTISTIC PAINTBRUSH EFFECTS - Etsy Aesthetic
   ============================================ */

/* Add decorative brush strokes to sections */
.hero::after,
#services::after,
.fiverr-section::after {
  opacity: 0.15;
}

/* Enhance cards with artistic shadows */
.stat-card,
.fiverr-info-box {
  position: relative;
}

.stat-card::before,
.fiverr-info-box::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    45deg,
    rgba(110, 231, 183, 0.3),
    rgba(52, 211, 153, 0.3),
    rgba(94, 234, 212, 0.3),
    rgba(16, 185, 129, 0.3)
  );
  border-radius: inherit;
  opacity: 0;
  transition: opacity var(--transition-slow);
  z-index: -1;
  filter: blur(8px);
}

.stat-card:hover::before,
.fiverr-info-box:hover::before {
  opacity: 0.6;
}

/* Icon color adjustments for warm sections */
.fiverr-section .bi-patch-check-fill {
  color: var(--white);
}

.fiverr-reviews h4 .bi-chat-quote-fill {
  color: #10B981 !important;
}

/* ============================================
   SECTION DIVIDERS - Static Centered
   ============================================ */
.section-divider {
  width: 100%;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-divider--dark {
  background: rgb(49, 48, 47);
}

.section-divider--orange {
  background: #F56400;
}

.section-divider__text {
  color: rgba(255, 255, 255, 0.95);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .section-divider {
    height: 24px;
  }

  .section-divider__text {
    font-size: 10px;
    letter-spacing: 2px;
  }
}
