/* =====================================================
   GET REVIEW FAST - Main Stylesheet
   Modern, Professional, SEO-Optimized
   ===================================================== */

/* CSS Variables */
:root {
  /* Primary Colors */
  --primary: #0066FF;
  --primary-dark: #0052CC;
  --primary-light: #3385FF;
  --primary-gradient: linear-gradient(135deg, #0066FF 0%, #00D4AA 100%);
  
  /* Secondary Colors */
  --secondary: #00D4AA;
  --secondary-dark: #00B894;
  --secondary-light: #00F5C4;
  
  /* Accent Colors */
  --accent: #FF6B35;
  --accent-dark: #E55A2B;
  --accent-light: #FF8A5C;
  
  /* Neutral Colors */
  --dark: #0A1628;
  --dark-lighter: #1A2A42;
  --gray-900: #1F2937;
  --gray-800: #374151;
  --gray-700: #4B5563;
  --gray-600: #6B7280;
  --gray-500: #9CA3AF;
  --gray-400: #D1D5DB;
  --gray-300: #E5E7EB;
  --gray-200: #F3F4F6;
  --gray-100: #F9FAFB;
  --white: #FFFFFF;
  
  /* Status Colors */
  --success: #10B981;
  --warning: #F59E0B;
  --error: #EF4444;
  --info: #3B82F6;
  
  /* Typography */
  --font-display: 'Clash Display', 'SF Pro Display', sans-serif;
  --font-body: 'DM Sans', 'SF Pro Text', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  
  /* Font Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  --text-7xl: 4.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;
  --space-32: 8rem;
  
  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --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);
  --shadow-glow: 0 0 40px rgba(0, 102, 255, 0.3);
  --shadow-glow-secondary: 0 0 40px rgba(0, 212, 170, 0.3);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 300ms ease;
  --transition-slow: 500ms ease;
  --transition-bounce: 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  
  /* 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
   ===================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--gray-800);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Selection */
::selection {
  background-color: var(--primary);
  color: var(--white);
}

/* Focus Styles */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Links */
a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary);
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Lists */
ul, ol {
  list-style: none;
}

/* Buttons */
button {
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Inputs */
input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* =====================================================
   Typography
   ===================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark);
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-3xl); }
h4 { font-size: var(--text-2xl); }
h5 { font-size: var(--text-xl); }
h6 { font-size: var(--text-lg); }

p {
  margin-bottom: var(--space-4);
}

.text-gradient {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =====================================================
   Layout Components
   ===================================================== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.container-sm {
  max-width: 960px;
}

.container-lg {
  max-width: 1440px;
}

.section {
  padding: var(--space-20) 0;
}

.section-lg {
  padding: var(--space-32) 0;
}

/* =====================================================
   Top Contact Bar
   ===================================================== */
.top-bar {
  background: var(--dark);
  color: var(--white);
  padding: var(--space-3) 0;
  font-size: var(--text-sm);
}

.top-bar__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.top-bar__left {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.top-bar__item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--gray-300);
  transition: color var(--transition-fast);
}

.top-bar__item:hover {
  color: var(--secondary);
}

.top-bar__item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.top-bar__right {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.top-bar__social {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.top-bar__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  transition: all var(--transition-fast);
}

.top-bar__social a:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.top-bar__social svg {
  width: 16px;
  height: 16px;
}

/* =====================================================
   Navigation
   ===================================================== */
.navbar {
  background: var(--white);
  padding: var(--space-4) 0;
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.navbar.scrolled {
  padding: var(--space-3) 0;
  box-shadow: var(--shadow-md);
}

.navbar__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.navbar__logo img {
  height: 40px;
  width: auto;
}

.navbar__logo-text {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--dark);
}

.navbar__logo-text span {
  color: var(--primary);
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.navbar__link {
  position: relative;
  font-weight: 500;
  color: var(--gray-700);
  padding: var(--space-2) 0;
  transition: color var(--transition-fast);
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gradient);
  transition: width var(--transition-normal);
}

.navbar__link:hover,
.navbar__link.active {
  color: var(--primary);
}

.navbar__link:hover::after,
.navbar__link.active::after {
  width: 100%;
}

.navbar__dropdown {
  position: relative;
}

.navbar__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  font-weight: 500;
  color: var(--gray-700);
  padding: var(--space-2) 0;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.navbar__dropdown-toggle svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.navbar__dropdown:hover .navbar__dropdown-toggle {
  color: var(--primary);
}

.navbar__dropdown:hover .navbar__dropdown-toggle svg {
  transform: rotate(180deg);
}

.navbar__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: var(--space-2);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
}

.navbar__dropdown:hover .navbar__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.navbar__dropdown-item {
  display: block;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  color: var(--gray-700);
  font-weight: 500;
  transition: all var(--transition-fast);
}

.navbar__dropdown-item:hover {
  background: var(--gray-100);
  color: var(--primary);
}

.navbar__cta {
  margin-left: var(--space-4);
}

/* Mobile Menu Toggle */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  cursor: pointer;
}

.navbar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.navbar__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar__toggle.active span:nth-child(2) {
  opacity: 0;
}

.navbar__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.navbar__mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--white);
  padding: var(--space-20) var(--space-6);
  z-index: var(--z-modal);
  transform: translateX(100%);
  transition: transform var(--transition-normal);
}

.navbar__mobile-menu.active {
  transform: translateX(0);
}

.navbar__mobile-link {
  display: block;
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--dark);
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--gray-200);
}

.navbar__mobile-link:hover {
  color: var(--primary);
}

/* =====================================================
   Buttons
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  text-align: center;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.01em;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 2px;
  background: var(--primary-gradient);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.btn:hover svg {
  transform: translateX(4px);
}

.btn--primary {
  background: linear-gradient(135deg, #0066FF 0%, #00A8E8 100%);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(0, 102, 255, 0.25);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 102, 255, 0.35);
  color: var(--white);
  background: linear-gradient(135deg, #0052CC 0%, #0088C7 100%);
}

.btn--primary:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 102, 255, 0.3);
}

.btn--secondary {
  background: linear-gradient(135deg, #00D4AA 0%, #00B894 100%);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(0, 212, 170, 0.25);
}

.btn--secondary:hover {
  background: linear-gradient(135deg, #00B894 0%, #009A7F 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 212, 170, 0.35);
  color: var(--white);
}

.btn--outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  box-shadow: 0 4px 16px rgba(0, 102, 255, 0.1);
}

.btn--outline::before {
  opacity: 0;
}

.btn--outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 102, 255, 0.3);
}

.btn--white {
  background: var(--white);
  color: var(--dark);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.btn--white:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.btn--lg {
  padding: 18px 40px;
  font-size: var(--text-lg);
  border-radius: 14px;
}

.btn--sm {
  padding: 10px 24px;
  font-size: var(--text-sm);
  border-radius: 10px;
}

.btn--full {
  width: 100%;
}

/* Button animations */
@keyframes btn-pulse {
  0%, 100% {
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.25);
  }
  50% {
    box-shadow: 0 8px 32px rgba(0, 102, 255, 0.4);
  }
}

.btn--primary:focus {
  animation: btn-pulse 2s infinite;
}

/* =====================================================
   Hero Section
   ===================================================== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-lighter) 100%);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__bg-gradient {
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
}

.hero__bg-gradient--1 {
  top: -200px;
  right: -200px;
  background: var(--primary);
}

.hero__bg-gradient--2 {
  bottom: -300px;
  left: -200px;
  background: var(--secondary);
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero__container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.hero__content {
  color: var(--white);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
  margin-bottom: var(--space-6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__badge svg {
  width: 16px;
  height: 16px;
  color: var(--secondary);
}

.hero__title {
  font-size: var(--text-6xl);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-6);
  line-height: 1.1;
}

.hero__title span {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__description {
  font-size: var(--text-xl);
  color: var(--gray-400);
  margin-bottom: var(--space-8);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-12);
}

.hero__stats {
  display: flex;
  gap: var(--space-10);
}

.hero__stat {
  text-align: center;
}

.hero__stat-value {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.hero__stat-label {
  font-size: var(--text-sm);
  color: var(--gray-500);
  margin-top: var(--space-2);
}

.hero__visual {
  position: relative;
}

.hero__image {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
}

.hero__image img {
  width: 100%;
  height: auto;
}

.hero__floating-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-4);
  box-shadow: var(--shadow-xl);
  animation: float 6s ease-in-out infinite;
}

.hero__floating-card--1 {
  top: 10%;
  left: -10%;
  animation-delay: 0s;
}

.hero__floating-card--2 {
  bottom: 20%;
  right: -10%;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* =====================================================
   Services Cards
   ===================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-8);
}

.service-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-normal);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-6);
}

.service-card__icon img {
  width: 36px;
  height: 36px;
}

.service-card__icon svg {
  width: 32px;
  height: 32px;
  color: var(--white);
}

.service-card__title {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-3);
}

.service-card__description {
  color: var(--gray-600);
  margin-bottom: var(--space-6);
}

.service-card__price {
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
}

.service-card__price-value {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--primary);
}

.service-card__price-period {
  font-size: var(--text-sm);
  color: var(--gray-500);
}

.service-card__features {
  margin-bottom: var(--space-6);
}

.service-card__feature {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-2) 0;
  color: var(--gray-700);
}

.service-card__feature svg {
  width: 18px;
  height: 18px;
  color: var(--success);
  flex-shrink: 0;
}

/* =====================================================
   Reviews/Buy Reviews Section
   ===================================================== */
.reviews-section {
  background: var(--gray-100);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-8);
}

.review-package {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-normal);
  border: 2px solid transparent;
}

.review-package:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
  border-color: var(--primary);
}

.review-package--featured {
  border-color: var(--primary);
  transform: scale(1.05);
}

.review-package--featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.review-package__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-gradient);
  color: var(--white);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
}

.review-package__platform {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-6);
}

.review-package__platform img {
  height: 48px;
  width: auto;
}

.review-package__title {
  text-align: center;
  font-size: var(--text-2xl);
  font-weight: 700;
  margin-bottom: var(--space-4);
}

.review-package__price {
  text-align: center;
  margin-bottom: var(--space-6);
}

.review-package__price-value {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--primary);
}

.review-package__price-unit {
  font-size: var(--text-base);
  color: var(--gray-500);
}

.review-package__features {
  margin-bottom: var(--space-8);
}

.review-package__feature {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-200);
}

.review-package__feature:last-child {
  border-bottom: none;
}

.review-package__feature svg {
  width: 20px;
  height: 20px;
  color: var(--success);
  flex-shrink: 0;
}

/* =====================================================
   Blog Section
   ===================================================== */
.blog-section {
  background: var(--white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-8);
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-normal);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
}

.blog-card__image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.1);
}

.blog-card__category {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  background: var(--primary);
  color: var(--white);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
}

.blog-card__content {
  padding: var(--space-6);
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  font-size: var(--text-sm);
  color: var(--gray-500);
  margin-bottom: var(--space-3);
}

.blog-card__meta-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.blog-card__meta svg {
  width: 14px;
  height: 14px;
}

.blog-card__title {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-3);
  line-height: 1.3;
  transition: color var(--transition-fast);
}

.blog-card:hover .blog-card__title {
  color: var(--primary);
}

.blog-card__excerpt {
  color: var(--gray-600);
  font-size: var(--text-base);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--primary);
  font-weight: 600;
  transition: gap var(--transition-fast);
}

.blog-card__link:hover {
  gap: var(--space-3);
}

.blog-card__link svg {
  width: 18px;
  height: 18px;
}

/* =====================================================
   Contact Section
   ===================================================== */
.contact-section {
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--white) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
}

.contact-info {
  padding-right: var(--space-8);
}

.contact-info__title {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-4);
}

.contact-info__description {
  font-size: var(--text-lg);
  color: var(--gray-600);
  margin-bottom: var(--space-8);
}

.contact-info__items {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}

.contact-info__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-gradient);
  border-radius: var(--radius-xl);
  flex-shrink: 0;
}

.contact-info__icon svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}

.contact-info__text h4 {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-1);
}

.contact-info__text p,
.contact-info__text a {
  color: var(--gray-600);
  transition: color var(--transition-fast);
}

.contact-info__text a:hover {
  color: var(--primary);
}

/* Contact Form */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: var(--space-10);
  box-shadow: var(--shadow-xl);
}

.contact-form__title {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-6);
}

.form-group {
  margin-bottom: var(--space-5);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}

.form-label {
  display: block;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: var(--space-2);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: var(--space-4);
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-lg);
  font-size: var(--text-base);
  transition: all var(--transition-fast);
  background: var(--white);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
  outline: none;
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

/* =====================================================
   Footer
   ===================================================== */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: var(--space-20) 0 var(--space-8);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-16);
}

.footer__brand {
  max-width: 320px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.footer__logo img {
  height: 40px;
  width: auto;
}

.footer__logo-text {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
}

.footer__logo-text span {
  color: var(--primary);
}

.footer__description {
  color: var(--gray-400);
  margin-bottom: var(--space-6);
  line-height: 1.7;
}

.footer__social {
  display: flex;
  gap: var(--space-3);
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  color: var(--white);
  transition: all var(--transition-fast);
}

.footer__social a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer__social svg {
  width: 20px;
  height: 20px;
}

.footer__column h4 {
  color: var(--white);
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-6);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__link {
  color: var(--gray-400);
  transition: all var(--transition-fast);
}

.footer__link:hover {
  color: var(--white);
  padding-left: var(--space-2);
}

.footer__bottom {
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer__copyright {
  color: var(--gray-500);
  font-size: var(--text-sm);
}

.footer__legal {
  display: flex;
  gap: var(--space-6);
}

.footer__legal a {
  color: var(--gray-500);
  font-size: var(--text-sm);
  transition: color var(--transition-fast);
}

.footer__legal a:hover {
  color: var(--white);
}

/* =====================================================
   Section Headers
   ===================================================== */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-16);
}

.section-header__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(0, 102, 255, 0.1);
  color: var(--primary);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--space-4);
}

.section-header__title {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-4);
}

.section-header__description {
  font-size: var(--text-lg);
  color: var(--gray-600);
}

/* =====================================================
   Testimonials
   ===================================================== */
.testimonials-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(0, 102, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(0, 212, 170, 0.1) 0%, transparent 50%);
}

.testimonials-section .section-header__badge {
  background: rgba(255, 255, 255, 0.1);
  color: var(--secondary);
}

.testimonials-section .section-header__title {
  color: var(--white);
}

.testimonials-section .section-header__description {
  color: var(--gray-400);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-8);
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  transition: all var(--transition-normal);
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-8px);
}

.testimonial-card__stars {
  display: flex;
  gap: var(--space-1);
  margin-bottom: var(--space-4);
}

.testimonial-card__stars svg {
  width: 20px;
  height: 20px;
  color: var(--warning);
  fill: var(--warning);
}

.testimonial-card__text {
  color: var(--gray-300);
  font-size: var(--text-lg);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.testimonial-card__avatar {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  object-fit: cover;
}

.testimonial-card__name {
  color: var(--white);
  font-weight: 600;
  font-size: var(--text-lg);
}

.testimonial-card__role {
  color: var(--gray-500);
  font-size: var(--text-sm);
}

/* =====================================================
   FAQ Section
   ===================================================== */
.faq-section {
  background: var(--white);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-item__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-6) 0;
  text-align: left;
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--dark);
  transition: color var(--transition-fast);
}

.faq-item__question:hover {
  color: var(--primary);
}

.faq-item__icon {
  width: 24px;
  height: 24px;
  color: var(--gray-500);
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-item__icon {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
}

.faq-item.active .faq-item__answer {
  max-height: 500px;
}

.faq-item__answer-content {
  padding-bottom: var(--space-6);
  color: var(--gray-600);
  line-height: 1.7;
}

/* =====================================================
   CTA Section
   ===================================================== */
.cta-section {
  background: var(--primary-gradient);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content__title {
  font-size: var(--text-4xl);
  color: var(--white);
  margin-bottom: var(--space-4);
}

.cta-content__description {
  font-size: var(--text-xl);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-8);
}

.cta-content__actions {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
}

/* =====================================================
   Utility Classes
   ===================================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: var(--space-4); }
.mb-8 { margin-bottom: var(--space-8); }
.mb-16 { margin-bottom: var(--space-16); }

.mt-0 { margin-top: 0; }
.mt-4 { margin-top: var(--space-4); }
.mt-8 { margin-top: var(--space-8); }

.hidden { display: none; }
.visible { display: block; }

/* =====================================================
   Page Header (for inner pages)
   ===================================================== */
.page-header {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-lighter) 100%);
  padding: var(--space-24) 0 var(--space-16);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: var(--primary);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.2;
}

.page-header__content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-header__title {
  font-size: var(--text-5xl);
  color: var(--white);
  margin-bottom: var(--space-4);
}

.page-header__breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-3);
  color: var(--gray-400);
}

.page-header__breadcrumb a {
  color: var(--gray-400);
  transition: color var(--transition-fast);
}

.page-header__breadcrumb a:hover {
  color: var(--white);
}

.page-header__breadcrumb span {
  color: var(--secondary);
}

/* =====================================================
   Responsive Styles
   ===================================================== */
@media (max-width: 1200px) {
  .hero__title {
    font-size: var(--text-5xl);
  }
  
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }
}

@media (max-width: 992px) {
  .hero__container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero__actions {
    justify-content: center;
  }
  
  .hero__stats {
    justify-content: center;
  }
  
  .hero__visual {
    display: none;
  }
  
  .navbar__menu {
    display: none;
  }
  
  .navbar__toggle {
    display: flex;
  }
  
  .navbar__mobile-menu {
    display: block;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-info {
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  
  .section {
    padding: var(--space-12) 0;
  }
  
  .section-lg {
    padding: var(--space-16) 0;
  }
  
  .hero {
    min-height: auto;
    padding: var(--space-16) 0;
  }
  
  .hero__title {
    font-size: var(--text-4xl);
  }
  
  .hero__actions {
    flex-direction: column;
    align-items: center;
  }
  
  .hero__stats {
    flex-wrap: wrap;
    gap: var(--space-6);
  }
  
  .services-grid,
  .reviews-grid,
  .blog-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer__brand {
    max-width: none;
    margin: 0 auto;
  }
  
  .footer__social {
    justify-content: center;
  }
  
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .top-bar__container {
    justify-content: center;
  }
  
  .top-bar__left {
    flex-direction: column;
    gap: var(--space-2);
  }
  
  .page-header__title {
    font-size: var(--text-3xl);
  }
  
  .section-header__title {
    font-size: var(--text-3xl);
  }
  
  .cta-content__title {
    font-size: var(--text-3xl);
  }
  
  .cta-content__actions {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-4);
  }
  
  .hero__title {
    font-size: var(--text-3xl);
  }
  
  .hero__description {
    font-size: var(--text-base);
  }
  
  .btn {
    width: 100%;
  }
  
  .btn--lg {
    padding: var(--space-3) var(--space-6);
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-card__image {
    height: 180px;
  }
}

/* =====================================================
   Animations
   ===================================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.animate-fadeInUp {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-fadeIn {
  animation: fadeIn 0.6s ease forwards;
}

.animate-slideInLeft {
  animation: slideInLeft 0.6s ease forwards;
}

.animate-slideInRight {
  animation: slideInRight 0.6s ease forwards;
}

/* Stagger Animation Delays */
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
.animate-delay-5 { animation-delay: 0.5s; }

/* Initial state for animations */
[class*="animate-"] {
  opacity: 0;
}

/* =====================================================
   Loading States
   ===================================================== */
.loading {
  position: relative;
  pointer-events: none;
}

.loading::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--gray-300);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* =====================================================
   Print Styles
   ===================================================== */
@media print {
  .navbar,
  .top-bar,
  .footer,
  .cta-section {
    display: none;
  }
  
  .hero {
    min-height: auto;
    background: none;
    color: var(--dark);
  }
  
  .hero__title,
  .hero__description {
    color: var(--dark);
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
}

