/* Premium Website Styles - Confident Me */

:root {
  --primary: #000000;
  --primary-dark: #1a1a1a;
  --secondary: #D4AF37;
  --accent: #C9A961;
  --accent-dark: #B8941E;
  --bg-white: #FFFFFF;
  --bg-light: #FFFFF0;
  --bg-ivory: #FFF8DC;
  --bg-charcoal: #2d2d2d;
  --text-dark: #000000;
  --text-gray: #4a4a4a;
  --text-light: #6b6b6b;
  --border: #e5e5e5;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
  --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #F4E5B0 50%, #C9A961 100%);
  --black-gradient: linear-gradient(135deg, #000000 0%, #2d2d2d 100%);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #FFFEF8;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: var(--bg-white);
  box-shadow: var(--shadow);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo-icon {
  width: 40px;
  height: 40px;
}

.logo strong {
  font-weight: 800;
  background: var(--gold-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  color: var(--text-gray);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--text-dark);
  transition: all 0.3s ease;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 0.95rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

.btn-primary {
  background: var(--black-gradient);
  color: white;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

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

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 175, 55, 0.2);
  border-color: var(--secondary);
}

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

.btn-secondary:hover {
  background: var(--primary);
  color: var(--secondary);
  border-color: var(--secondary);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--secondary);
  background: rgba(212, 175, 55, 0.1);
  color: var(--primary);
}

.btn-block {
  width: 100%;
  justify-content: center;
}

.btn-icon {
  width: 20px;
  height: 20px;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
  overflow: hidden;
  background: #FFFEF8;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
  overflow: visible;
}

/* Apply blur only to the gradient background, not the image */
.gradient-orb::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  filter: blur(80px);
  opacity: 0.4;
  z-index: 1;
}

.orb-1::before {
  background: radial-gradient(circle, rgba(0,0,0,0.15) 0%, transparent 70%);
}

.orb-2::before {
  background: radial-gradient(circle, rgba(212,175,55,0.2) 0%, transparent 70%);
}

.orb-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  opacity: 1;
  z-index: 2;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  pointer-events: none;
}

.desktop-orb {
  display: block;
}

.mobile-orb {
  display: none;
}

@media (max-width: 768px) {
  .desktop-orb {
    display: none;
  }
  
  .mobile-orb {
    display: block;
  }
}

.orb-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
}

.orb-2 {
  width: 500px;
  height: 500px;
  bottom: -100px;
  left: -50px;
  animation-delay: -10s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.9); }
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background: rgba(248, 249, 250, 0.5);
  opacity: 1;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(26,43,60,0.08);
  border: 1px solid rgba(26,43,60,0.2);
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 2rem;
  animation: slideDown 1s ease;
}

.badge-icon {
  font-size: 1.25rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: slideUp 1s ease;
}

.gradient-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  animation: slideUp 1s ease 0.2s both;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  animation: slideUp 1s ease 0.4s both;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  animation: slideUp 1s ease 0.6s both;
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.stat-label {
  color: var(--text-gray);
  font-size: 0.875rem;
}

.hero-visual {
  animation: slideLeft 1s ease 0.3s both;
}

.device-mockup-container {
  position: relative;
  width: 100%;
  height: 500px;
}

.mockup-image {
  position: absolute;
  border-radius: 12px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.3);
  object-fit: cover;
}

.mockup-image.desktop-mockup {
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
  z-index: 1;
  animation: float 6s ease-in-out infinite;
  border-radius: 8px;
}

.mockup-image.mobile-mockup {
  width: 35%;
  height: auto;
  bottom: 0;
  right: 10%;
  z-index: 2;
  animation: float 6s ease-in-out infinite 1s;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

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

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

@keyframes slideLeft {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Trusted By Section */
.trusted-by {
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg-light);
}

.trusted-label {
  text-align: center;
  color: var(--text-gray);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.logo-marquee {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.logo-item {
  padding: 0.75rem 2rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  font-weight: 600;
  color: var(--text-gray);
  transition: all 0.3s ease;
}

.logo-item:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* Sections */
.section {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-label {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(26,43,60,0.08);
  border: 1px solid rgba(26,43,60,0.2);
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-title {
  font-size: 2.75rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.125rem;
  color: var(--text-gray);
  line-height: 1.7;
}

/* Services Section */
.services-section {
  background: #FFFEF8;
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(201, 169, 97, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.services-section .container {
  position: relative;
  z-index: 1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card {
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 1.25rem;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.03);
  transform: translateY(-5px);
  cursor: grab;
  position: relative;
}

.service-card:active {
  cursor: grabbing;
}

.service-card.dragging {
  opacity: 0.5;
  cursor: grabbing;
}

.service-card:hover {
  transform: translateY(-12px);
  background: rgba(255, 255, 255, 1);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), 0 0 40px rgba(212, 175, 55, 0.15);
}

.service-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black-gradient);
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  color: var(--secondary);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2), 0 0 20px rgba(212, 175, 55, 0.2);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.service-icon svg {
  width: 32px;
  height: 32px;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-gray);
  line-height: 1.7;
}

/* Portfolio Section */
.portfolio-section {
  background: #FFFEF8;
  position: relative;
  overflow: hidden;
}

.portfolio-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(201, 169, 97, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.portfolio-section .container {
  position: relative;
  z-index: 1;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2.5rem;
}

.portfolio-card {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 1.25rem;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 175, 55, 0.2);
  border-color: var(--secondary);
}

.portfolio-image {
  position: relative;
  overflow: hidden;
  background: var(--bg-light);
  aspect-ratio: 4/3;
}

.portfolio-image img,
.portfolio-image svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.portfolio-card:hover .portfolio-image img,
.portfolio-card:hover .portfolio-image svg {
  transform: scale(1.05);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,122,255,0.9), rgba(26,43,60,0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  text-decoration: none;
  cursor: pointer;
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.view-project {
  color: white;
  font-weight: 600;
  font-size: 1.125rem;
}

.portfolio-info {
  padding: 2rem;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

.portfolio-info h4 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #D4AF37;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.portfolio-info p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}

.portfolio-tags {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.portfolio-tags span {
  padding: 0.375rem 0.875rem;
  background: #FFFEF8;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #000000;
}

/* Process Section */
.process-section {
  background: #FFFEF8;
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 30% 40%, rgba(212, 175, 55, 0.04) 0%, transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(201, 169, 97, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.process-section .container {
  position: relative;
  z-index: 1;
}

.process-timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 30px;
  bottom: 30px;
  left: 30px;
  width: 2px;
  background: var(--gold-gradient);
}

.process-step {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black-gradient);
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--secondary);
  z-index: 1;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), 0 0 20px rgba(212, 175, 55, 0.2);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.step-content {
  padding-top: 0.5rem;
}

.step-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.step-content p {
  color: var(--text-gray);
  line-height: 1.7;
}

/* Pricing Section */
.pricing-section {
  background: #FFFEF8;
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(201, 169, 97, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.pricing-section .container {
  position: relative;
  z-index: 1;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.pricing-card {
  padding: 3rem 2.5rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 1.5rem;
  transition: all 0.4s ease;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: var(--secondary);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 40px rgba(212, 175, 55, 0.15);
}

.pricing-card.featured {
  border-color: var(--secondary);
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 40px rgba(212, 175, 55, 0.2);
  background: #FFFEF8;
}

.featured-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.5rem 1.5rem;
  background: var(--black-gradient);
  color: var(--secondary);
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 175, 55, 0.3);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.pricing-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.pricing-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.currency {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 0.5rem;
}

.amount {
  font-size: 4rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.price-description {
  color: var(--text-gray);
  font-size: 0.95rem;
}

.features-list {
  list-style: none;
  margin-bottom: 2.5rem;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem 0;
  color: var(--text-gray);
}

.check-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke-width: 2.5;
  color: var(--primary);
}

/* Testimonials Section */
.testimonials-section {
  background: #FFFEF8;
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 15% 50%, rgba(212, 175, 55, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 85% 50%, rgba(201, 169, 97, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.testimonials-section .container {
  position: relative;
  z-index: 1;
}

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

.testimonial-card {
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 1.25rem;
  transition: all 0.4s ease;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: var(--secondary);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12), 0 0 30px rgba(212, 175, 55, 0.15);
}

.testimonial-rating {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.testimonial-text {
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--black-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--secondary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 0 15px rgba(212, 175, 55, 0.2);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.author-info strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.author-info span {
  color: var(--text-gray);
  font-size: 0.875rem;
}

/* FAQ Section */
.faq-section {
  background: #FFFEF8;
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 25% 40%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.faq-section .container {
  position: relative;
  z-index: 1;
}

.faq-grid {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  background: transparent;
  border: none;
  color: var(--text-dark);
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-icon {
  flex-shrink: 0;
  stroke-width: 2.5;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  transition: max-height 0.4s ease-in;
}

.faq-answer p {
  padding: 0 2rem 1.5rem;
  color: var(--text-gray);
  line-height: 1.7;
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1" fill="white" opacity="0.1"/></svg>');
  opacity: 0.5;
}

.cta-content {
  position: relative;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.75rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: white;
}

.cta-content p {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
}

.cta-content .btn {
  background: white;
  color: var(--primary);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.cta-content .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

/* Contact Section */
.contact-section {
  background: #FFFEF8;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(201, 169, 97, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.contact-section .container {
  position: relative;
  z-index: 1;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.contact-description {
  color: var(--text-gray);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black-gradient);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 0.75rem;
  color: var(--secondary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25), 0 0 15px rgba(212, 175, 55, 0.2);
}

.contact-icon svg {
  width: 24px;
  height: 24px;
}

.contact-item strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.contact-item a,
.contact-item span {
  color: var(--text-gray);
  text-decoration: none;
}

.contact-item a:hover {
  color: var(--primary);
}

.contact-form {
  padding: 3rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 1.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  color: var(--text-dark);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
  resize: vertical;
}

/* Footer */
.footer {
  padding: 4rem 0 2rem;
  background: #1A2B3C;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
}

.footer-about p {
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 350px;
}

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

.footer-column h4 {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
}

.footer-column a {
  display: block;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
}

.footer-legal a:hover {
  color: white;
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4), 0 0 0 20px rgba(37, 211, 102, 0);
  }
}

/* Trust Badges */
.trust-badges {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  box-shadow: var(--shadow);
}

.trust-badge-icon {
  width: 24px;
  height: 24px;
  color: var(--accent);
}

.trust-badge-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* Comparison Slider */
.comparison-slider {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* Scroll to Top Button */
.scroll-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 45px;
  height: 45px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 998;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,122,255,0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    padding: 2rem;
    gap: 1.5rem;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    border-bottom: 1px solid var(--border);
  }
  
  .nav-menu.active {
    transform: translateX(0);
  }
  
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1.05rem;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .hero-visual {
    order: -1;
  }
  
  .device-mockup-container {
    height: 350px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .services-grid,
  .portfolio-grid,
  .testimonials-grid,
  .pricing-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.5rem;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
  
  .services-grid::-webkit-scrollbar,
  .portfolio-grid::-webkit-scrollbar,
  .testimonials-grid::-webkit-scrollbar,
  .pricing-grid::-webkit-scrollbar {
    height: 8px;
  }
  
  .services-grid::-webkit-scrollbar-track,
  .portfolio-grid::-webkit-scrollbar-track,
  .testimonials-grid::-webkit-scrollbar-track,
  .pricing-grid::-webkit-scrollbar-track {
    background: var(--bg-light);
    border-radius: 10px;
  }
  
  .services-grid::-webkit-scrollbar-thumb,
  .portfolio-grid::-webkit-scrollbar-thumb,
  .testimonials-grid::-webkit-scrollbar-thumb,
  .pricing-grid::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 10px;
  }
  
  .service-card,
  .portfolio-card,
  .testimonial-card,
  .pricing-card {
    min-width: 280px;
    flex: 0 0 280px;
    scroll-snap-align: start;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  
  .cta-content h2 {
    font-size: 2rem;
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
  
  .process-timeline::before {
    left: 15px;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
}

/* Image Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox-modal.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  animation: zoomIn 0.3s ease;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 25px 100px rgba(0, 0, 0, 0.5);
}

.lightbox-back {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 2rem;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10001;
}

.lightbox-back:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(-5px);
}

.lightbox-back svg {
  width: 20px;
  height: 20px;
  color: white;
}

.lightbox-more-info {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: var(--accent);
  color: white;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.75rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(0, 122, 255, 0.4);
}

.lightbox-more-info:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 122, 255, 0.6);
}

.lightbox-more-info svg {
  width: 20px;
  height: 20px;
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .lightbox-back {
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
  
  .lightbox-back svg {
    width: 18px;
    height: 18px;
  }
  
  .lightbox-content {
    max-width: 95vw;
    max-height: 85vh;
    gap: 1rem;
  }
  
  .lightbox-content img {
    max-height: 70vh;
  }
  
  .lightbox-more-info {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
  }
  
  .lightbox-more-info svg {
    width: 18px;
    height: 18px;
  }
}
