/* VaynerMedia Inspired Theme for Origon Media */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
}

/* Disable animations during scroll for better readability */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Pause animations when scrolling */
body.scrolling * {
  animation-play-state: paused !important;
}

:root {
  --primary: #000000;
  --accent: #000000;
  --accent-light: #000000;
  --accent-dark: #000000;
  --secondary: #000000;
  --purple: #000000;
  --pink: #000000;
  --orange: #000000;
  --bg: #ffffff;
  --card-bg: #ffffff;
  --text: #000000;
  --text-light: #666666;
  --heading: #000000;
  --shadow: 0 2px 8px rgba(0,0,0,0.1);
  --shadow-hover: 0 4px 16px rgba(0,0,0,0.15);
  --gradient-primary: #000000;
  --gradient-story: #000000;
  --gradient-bg: #ffffff;
  --radius: 0px;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg);
  overflow-x: hidden;
  font-weight: 400;
}

a {
  text-decoration: none;
  color: var(--accent);
  transition: color 0.3s;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* Layout & Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 100px 0;
  position: relative;
  z-index: 5;
  background: var(--bg);
}

/* Header & Navigation */
header {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s ease;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #000000;
  gap: 8px;
  font-weight: 600;
  font-size: 1.1rem;
}

.logo-image {
  height: 50px;
  width: auto;
  object-fit: contain;
  transition: all 0.4s ease;
  cursor: pointer;
}

.logo-image:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  25% {
    background-position: 100% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
  75% {
    background-position: 0% 100%;
  }
}

/* Logo circle pseudo-element styles removed - replaced with logo-image */

/* Logo text styles removed - logo image contains full text */

nav {
  display: flex;
  gap: 40px;
  align-items: center;
}

nav a {
  color: #2c2c2c;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  padding: 12px 20px;
  border-radius: 25px;
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  letter-spacing: 0.3px;
}

nav a:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border-color: rgba(0, 0, 0, 0.2);
}

nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
  border-radius: 25px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

nav a:hover::before {
  opacity: 1;
}

nav a:active {
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 20px;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  nav.active {
    display: flex;
  }
  
  nav a {
    padding: 16px 24px;
    font-size: 1.1rem;
    width: 100%;
    text-align: center;
    border-radius: 12px;
  }
  
  .header-container {
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  nav a {
    font-size: 1rem;
    padding: 14px 20px;
  }
  
  .header-container {
    padding: 0 16px;
  }
}

#burger {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #2c2c2c;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

#burger:hover {
  background: rgba(0, 0, 0, 0.1);
  color: #000000;
}

@media (max-width: 768px) {
  #burger {
    display: block;
  }
}

/* Hero Section */
.hero {
  position: relative;
  padding: 120px 20px 150px;
  text-align: center;
  background: #ffffff;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%);
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="80" cy="40" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="60" cy="10" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="60" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.4;
  z-index: 1;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.floating-element {
  position: absolute;
  font-size: 2rem;
  opacity: 0.4;
  animation: float 6s ease-in-out infinite, colorShift 8s ease-in-out infinite;
  pointer-events: none;
  filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
  transition: all 0.3s ease;
  z-index: 1;
}

@keyframes colorShift {
  0%, 100% {
    filter: drop-shadow(0 0 10px rgba(255,107,107,0.4)) hue-rotate(0deg);
  }
  25% {
    filter: drop-shadow(0 0 15px rgba(78,205,196,0.4)) hue-rotate(90deg);
  }
  50% {
    filter: drop-shadow(0 0 20px rgba(69,183,209,0.4)) hue-rotate(180deg);
  }
  75% {
    filter: drop-shadow(0 0 15px rgba(254,202,87,0.4)) hue-rotate(270deg);
  }
}

.float-item:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.float-item:nth-child(2) {
  top: 60%;
  right: 15%;
  animation-delay: 1s;
}

.float-item:nth-child(3) {
  top: 30%;
  right: 25%;
  animation-delay: 2s;
}

.float-item:nth-child(4) {
  bottom: 30%;
  left: 20%;
  animation-delay: 3s;
}

.float-item:nth-child(5) {
  top: 15%;
  left: 60%;
  animation-delay: 4s;
}

.float-item:nth-child(6) {
  top: 70%;
  left: 70%;
  animation-delay: 1.5s;
}

.float-item:nth-child(7) {
  top: 25%;
  right: 10%;
  animation-delay: 2.5s;
}

.float-item:nth-child(8) {
  bottom: 20%;
  right: 30%;
  animation-delay: 3.5s;
}

.float-item:nth-child(9) {
  top: 50%;
  left: 5%;
  animation-delay: 0.5s;
}

.float-item:nth-child(10) {
  bottom: 40%;
  right: 5%;
  animation-delay: 4.5s;
}

/* Hero Shapes */
.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: float 12s ease-in-out infinite;
}

.shape-1 {
  width: 200px;
  height: 200px;
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 150px;
  height: 150px;
  background: linear-gradient(45deg, #a8e6cf, #ffd93d);
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.shape-3 {
  width: 100px;
  height: 100px;
  background: linear-gradient(45deg, #ff8a80, #82b1ff);
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

.shape-4 {
  width: 120px;
  height: 120px;
  background: linear-gradient(45deg, #ce93d8, #80cbc4);
  top: 30%;
  right: 40%;
  animation-delay: 6s;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  text-align: center;
  color: #000000;
  background: transparent;
  padding: 0;
  margin: 0 auto;
  margin-top: 80px;
}

.hero .subtitle {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  animation: fadeInUp 1s ease-out 0.5s both;
  background: linear-gradient(135deg, #ffffff, #e0e0e0, #ffffff);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: subtitleFlow 6s ease-in-out infinite, fadeInUp 1s ease-out 0.5s both;
}

@keyframes subtitleFlow {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 400;
  margin-bottom: 24px;
  color: #2c2c2c;
  line-height: 1.2;
  letter-spacing: -0.5px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  white-space: nowrap;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

@keyframes titleShimmer {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes titleGlow {
  0% {
    text-shadow: 0 4px 20px rgba(0,0,0,0.4), 0 0 30px rgba(255,255,255,0.1);
  }
  100% {
    text-shadow: 0 4px 20px rgba(0,0,0,0.4), 0 0 50px rgba(255,255,255,0.3);
  }
}

.subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  display: block;
  margin: 0 auto 48px;
  color: #000000 !important;
  line-height: 1.5;
  max-width: 600px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  opacity: 1 !important;
  text-shadow: none !important;
}

.hero .subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  display: block;
  margin: 0 auto 48px;
  color: #000000 !important;
  line-height: 1.5;
  max-width: 600px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  opacity: 1 !important;
  text-shadow: none !important;
}

/* WhatsApp Button Styling */
.btn-whatsapp {
  background: #25D366;
  color: white;
  border: none;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-whatsapp:hover {
  background: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

/* Success Message Styling */
.success-message {
  background: #f0f9ff;
  border: 2px solid #10b981;
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  margin-top: 24px;
  animation: slideIn 0.5s ease-out;
}

.success-message h3 {
  color: #10b981;
  margin: 0 0 16px 0;
  font-size: 1.5rem;
}

.success-message p {
  color: #374151;
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.6;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Buttons Layout */
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
  }
}

/* Pricing Plan Badges */
.plan-badge {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  text-align: center;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-card.popular .plan-badge {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

/* Plan Description */
.plan-description {
  color: #666;
  font-size: 0.9rem;
  margin: 12px 0 20px 0;
  line-height: 1.4;
}

/* Pricing Notes */
.pricing-note {
  margin-top: 48px;
  padding: 24px;
  background: #f8fafc;
  border-radius: 12px;
  text-align: center;
}

.pricing-note p {
  margin: 8px 0;
  color: #374151;
  font-size: 0.95rem;
}

.pricing-note strong {
  color: #1f2937;
}

/* Enhanced Price Display */
.price-card .price span {
  font-size: 0.6em;
  color: #666;
  font-weight: 400;
}

/* Checkmark Styling */
.price-card ul li {
  position: relative;
  padding-left: 0;
  margin-bottom: 8px;
}

.price-card ul li:before {
  content: none;
}

/* Responsive Pricing */
@media (max-width: 768px) {
  .pricing-note {
    margin-top: 32px;
    padding: 20px;
  }
  
  .plan-badge {
    font-size: 0.7rem;
    padding: 4px 10px;
  }
  
  .plan-description {
    font-size: 0.85rem;
  }
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  25% {
    background-position: 100% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
  75% {
    background-position: 0% 100%;
  }
}

.hero-description {
  font-size: 1.1rem;
  margin: 0 auto 48px;
  color: #666666;
  max-width: 600px;
  line-height: 1.6;
  font-weight: 400;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Hero Features */
.hero-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 12px 20px;
  border-radius: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.feature-icon {
  font-size: 1.2rem;
}

.feature-text {
  scroll-behavior: smooth;
  overflow-x: hidden;
  font-size: 0.9rem;
  font-weight: 500;
}

body {
  overflow-x: hidden;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 50px;
}

.tag {
  background: #f5f5f5;
  color: #666666;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  border: none;
  transition: all 0.2s ease;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.tag:hover {
  background: #e5e5e5;
  color: #333333;
}

.tag:nth-child(1) { --tag-index: 0; }
.tag:nth-child(2) { --tag-index: 1; }
.tag:nth-child(3) { --tag-index: 2; }
.tag:nth-child(4) { --tag-index: 3; }
.tag:nth-child(5) { --tag-index: 4; }
.tag:nth-child(6) { --tag-index: 5; }

@keyframes tagFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
}

.tag:hover {
  background: var(--gradient-primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  border-color: transparent;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 16px 32px;
  background: #000;
  color: white;
  text-decoration: none;
  border-radius: 0;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid #000;
  cursor: pointer;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: none;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  margin: 0 10px;
}

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

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

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  background: var(--accent-dark);
}

.btn-secondary {
  background: white;
  color: var(--primary);
  border: 2px solid var(--primary);
  backdrop-filter: none;
}

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

.btn-secondary.tag:hover {
  background: var(--primary);
  color: white;
  transform: none;
  box-shadow: none;
  border-color: var(--primary);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--heading);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
  border-color: transparent;
}

/* Hero CTA */
.hero-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.hero-cta .btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 18px 35px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.btn-arrow {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.hero-cta .btn-primary:hover .btn-arrow {
  transform: translateX(5px);
}

.btn-icon {
  font-size: 1rem;
}

/* Hero Social Proof */
.hero-social-proof {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  opacity: 0.9;
}

.proof-item {
  text-align: center;
}

.proof-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  margin-bottom: 5px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.proof-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.btn.small {
  padding: 10px 25px;
  font-size: 14px;
}

/* Stats Section */
.stats-section {
  background: #f8f9fa;
  color: var(--text);
  padding: 40px 0;
  margin: 60px 0 40px 0;
}

.stats-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.stat-item {
  text-align: center;
  flex: 1;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: #e0e0e0;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--heading);
  letter-spacing: -0.5px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Services Section */
.services {
  background: white;
  padding-top: 80px;
}

.services h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--heading);
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  justify-content: center;
}

.service-card {
  background-color: var(--card-bg);
  padding: 40px 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  height: 100%;
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 20px;
}

.feature {
  background: rgba(228, 64, 95, 0.1);
  color: var(--accent);
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(228, 64, 95, 0.2);
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading);
}

.service-card p {
  color: var(--text-light);
  margin-bottom: 0;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(78, 84, 200, 0.2);
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading);
}

.service-card p {
  color: var(--text-light);
  margin-bottom: 0;
}

/* Pricing Section */
.pricing {
  text-align: center;
  background-color: var(--bg);
}

.pricing h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: var(--heading);
}

.price-tiers {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.price-card {
  background-color: var(--card-bg);
  padding: 40px 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  transition: transform 0.3s;
}

.price-card.popular {
  transform: scale(1.05);
  border: 1px solid var(--accent);
}

.price-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--heading);
}

.price-card .price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 20px;
}

.price-card .price span {
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.7;
}

.price-card ul {
  margin-bottom: 30px;
  text-align: left;
}

.price-card ul li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.price-card ul li:before {
  content: "✓";
  color: var(--accent);
  position: absolute;
  left: 0;
}

/* Contact Section */
.contact {
  text-align: center;
  margin-top: 100px;
  padding-top: 80px;
}

.hero .btn {
  margin: 0 15px 15px 0;
  margin-top: 0;
  animation: none;
  position: relative;
  overflow: hidden;
}

.hero .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.hero .btn:hover::before {
  left: 100%;
}

/* Services Section - VaynerMedia Style */
.services {
  padding: 120px 0;
  background: #f8f9fa;
  border-top: 1px solid #e0e0e0;
}

.services .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
}

.services h2 {
  font-size: 3rem;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 30px;
  line-height: 1.1;
  letter-spacing: -2px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.animated-text {
  color: #4a4a4a;
  position: relative;
  display: inline-block;
  min-width: 350px;
  white-space: nowrap;
  font-weight: 300;
  opacity: 0.8;
}

.animated-text::after {
  content: '|';
  color: #4a4a4a;
  animation: blink 1s infinite;
  margin-left: 2px;
  opacity: 0.6;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

@keyframes typewriter {
  from { width: 0; }
  to { width: 100%; }
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 80px;
  max-width: 600px;
  line-height: 1.5;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 60px;
  margin-top: 60px;
}

.service-card {
  background: white;
  padding: 40px 30px;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
  position: relative;
}

.service-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 25px;
  display: block;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 15px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.service-card p {
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 1rem;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feature {
  background: #f8f9fa;
  color: var(--text);
  padding: 6px 12px;
  font-size: 0.85rem;
  border: 1px solid #e0e0e0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.contact-container {
  max-width: 700px;
  margin: 0 auto;
}

.contact h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--heading);
}

.contact p {
  color: var(--text-light);
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  border-radius: var(--radius);
  border: 1px solid #ddd;
  width: 100%;
  font-family: inherit;
  font-size: 16px;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form button {
  margin-top: 10px;
  align-self: center;
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--primary) 0%, #1a1a1a 100%);
  color: white;
  margin-top: 80px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding: 60px 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo .logo-image {
  height: 50px;
  width: auto;
}

/* Footer logo text styles removed - logo image contains full text */

.footer-tagline {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.social-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.social-link:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-2px);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-column h4 {
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: var(--accent);
}

.footer-column ul li:not(:has(a)) {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-bottom {
  padding: 30px 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links {
  display: flex;
  gap: 30px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--accent);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* Scroller Animation */
.scroller {
  overflow: hidden;
  width: 100%;
  background: var(--bg);
  margin: 0 auto;
  position: relative;
  padding: 20px 0;
}

.scroller__inner {
  display: flex;
  width: max-content;
  gap: 30px;
  padding: 10px 0;
  animation: scroll 30s linear infinite;
}

.scroller__inner:hover {
  animation-play-state: paused;
}

.scroller-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: var(--radius);
  background: var(--card-bg);
  box-shadow: var(--shadow);
  min-width: 150px;
  color: var(--accent);
  font-weight: 500;
}

/* Testimonials Section */
.testimonials-section {
  background: linear-gradient(135deg, #f8f8f8 0%, #e8f4f8 100%);
  padding: 80px 0;
}

.testimonials-section h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 60px;
  color: var(--heading);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-content {
  margin-bottom: 25px;
}

.testimonial-content p {
  font-style: italic;
  color: var(--text);
  font-size: 1.1rem;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  font-size: 2.5rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-story);
  border-radius: 50%;
  border: 3px solid transparent;
  background-clip: padding-box;
}

.author-name {
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 5px;
}

.author-title {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Animations */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  header {
    padding: 12px 0;
    top: 0;
  }
  
  .header-container {
    padding: 0 20px;
  }
  
  .logo-image {
    height: 45px;
    width: auto;
  }
  
/* Mobile logo text styles removed */
  
  .logo {
    gap: 10px;
  }
  
  nav {
    gap: 20px;
  }
  
  nav a {
    padding: 6px 12px;
    font-size: 0.9rem;
  }
  
  #burger {
    display: block;
  }
  
  nav {
    position: fixed;
    top: 70px;
    right: -100%;
    background-color: white;
    box-shadow: -5px 0 10px rgba(0,0,0,0.1);
    height: calc(100vh - 70px);
    width: 70%;
    flex-direction: column;
    padding: 40px;
    transition: right 0.3s;
  }
  
  nav.show {
    right: 0;
  }
  
  .hero {
    padding: 150px 20px 100px;
    min-height: 100vh;
    text-align: center;
    justify-content: center;
  }
  
  .hero-content {
    margin: 60px auto 0;
    text-align: center;
    max-width: 100%;
    padding: 0 20px;
  }
  
  .hero-title {
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: -0.5px;
    white-space: nowrap;
    line-height: 1.2;
    overflow: visible;
  }
  
  .animated-text {
    min-width: 180px;
    font-size: 0.9em;
  }
  
  .service-tags {
    justify-content: center;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .hero .subtitle {
    font-size: 1.8rem;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .services {
    padding: 80px 0;
  }
  
  .services .container {
    padding: 0 20px;
  }
  
  .services h2 {
    font-size: 2.5rem;
    text-align: center;
  }
  
  .section-subtitle {
    text-align: center;
    margin-bottom: 50px;
  }
  
  .service-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .service-card {
    padding: 30px 20px;
  }
  
  .price-card {
    flex: 100%;
    margin-bottom: 20px;
  }
  
  .price-card.popular {
    transform: none;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero .subtitle {
    font-size: 1.5rem;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}
