/* Marketing Site Styles */
:root {
  --bg-primary: #0d0d0d;
  --bg-secondary: #1a1a1a;
  --bg-card: #2a2a2a;
  --text-primary: #ffffff;
  --text-secondary: #a1a1a1;
  --accent-primary: #e100ff;
  --accent-secondary: #8b5cf6;
  --gradient: linear-gradient(135deg, #e100ff 0%, #8b5cf6 100%);
  --border: #404040;
  --success: #22c55e;
  --warning: #f59e0b;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.6;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Typography */
h1, h2, h3 {
  font-family: 'Sora', 'Inter', sans-serif;
  font-weight: 600;
  line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

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

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
}

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

.logo {
  display: flex;
  align-items: center;
  font-family: 'Sora', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-primary);
}

.logo-icon {
  margin-right: 0.5rem;
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(13, 13, 13, 0.98);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding-top: 5rem;
}

.mobile-menu.active {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
}

.mobile-menu .nav-link {
  font-size: 1.5rem;
  color: var(--text-primary);
  padding: 1rem;
  text-align: center;
  width: 100%;
  border-bottom: 1px solid var(--border);
}

.mobile-menu .btn {
  margin-top: 1rem;
  font-size: 1.2rem;
  padding: 1rem 2rem;
}

.nav-link {
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

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

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

.btn-primary {
  background: var(--gradient);
  color: white;
  box-shadow: 0 4px 14px 0 rgba(225, 0, 255, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px 0 rgba(225, 0, 255, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}

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

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

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
  background: radial-gradient(ellipse at center, rgba(225, 0, 255, 0.1) 0%, transparent 50%);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text h1 {
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
}

.hero-screenshot {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: optimize-quality;
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* Features Section */
.features {
  padding: 6rem 0;
}

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

.feature-card {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-primary);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  background: var(--gradient);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-card h3 {
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-secondary);
}

/* Benefits Section */
.benefits {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.benefits-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.benefits-content-reverse {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.benefits-content-single {
  max-width: 800px;
  margin: 0 auto;
}

.benefit-list-expanded {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.benefit-item-large {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border-radius: 1rem;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.benefit-item-large:hover {
  transform: translateY(-2px);
  border-color: var(--accent-primary);
}

.benefit-icon-large {
  width: 2rem;
  height: 2rem;
  background: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: bold;
  color: white;
  font-size: 1.1rem;
}

.benefit-item-large h4 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.benefit-item-large p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.benefit-icon {
  width: 1.5rem;
  height: 1.5rem;
  background: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

/* Testimonials */
.testimonials {
  padding: 6rem 0;
}

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

.testimonial-card {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.star {
  color: #fbbf24;
}

.testimonial-text {
  margin-bottom: 1.5rem;
  font-style: italic;
}

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

.author-avatar {
  width: 3rem;
  height: 3rem;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.author-info h4 {
  margin-bottom: 0.25rem;
}

.author-info p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
  text-align: center;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  margin-bottom: 1rem;
}

.cta-content p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

/* Footer */
.footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--border);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  margin-bottom: 1rem;
  color: var(--accent-primary);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link {
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  color: var(--text-secondary);
}

/* Responsive Design */
@media (max-width: 1279px) {
  .container {
    padding: 0 2rem;
  }
}

@media (max-width: 767px) {
  .container {
    padding: 0 1rem;
  }
  
  /* Mobile Navigation */
  .nav-links {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .benefits-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: left;
  }
  
  .benefits-content-reverse {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: left;
  }
  
  /* On mobile, show text first then image for BOTH sections */
  .benefits-content div:first-child {
    order: 2; /* Image second */
  }
  
  .benefits-content div:last-child {
    order: 1; /* Text first */
  }
  
  .benefits-content-reverse div:first-child {
    order: 1; /* Text first */
  }
  
  .benefits-content-reverse div:last-child {
    order: 2; /* Image second */
  }
  
  /* Ensure proper mobile order */
  .benefits-content img {
    max-width: 100%;
    height: auto;
  }
}

/* Tattoo Gallery Slider Styles */
.tattoo-gallery-slider {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.gallery-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  touch-action: pan-y;
}

.gallery-slide {
  min-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
}

.gallery-slide img {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
  object-position: center;
  display: block;
}

/* Navigation Dots */
.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.gallery-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
}

.gallery-dot:hover,
.gallery-dot.active {
  background: var(--accent);
  transform: scale(1.2);
}

/* Navigation Arrows */
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-arrow:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: translateY(-50%) scale(1.1);
}

.gallery-arrow-prev {
  left: 20px;
}

.gallery-arrow-next {
  right: 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .gallery-slide img {
    max-height: 400px;
    height: auto;
  }
  
  .tattoo-gallery-slider {
    margin: 0 1rem;
  }
  
  .gallery-dots {
    margin-top: 1.5rem;
    gap: 0.5rem;
  }
  
  .gallery-dot {
    width: 10px;
    height: 10px;
  }
  
  .gallery-arrow {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  
  .gallery-arrow-prev {
    left: 10px;
  }
  
  .gallery-arrow-next {
    right: 10px;
  }
  
  .software-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin: 1rem 0;
  }
  
  /* Mobile responsive - transform devices grid into carousel */
  .benefits-content .devices-grid {
    position: relative;
    overflow: hidden;
    height: 300px;
    margin-top: 2rem;
  }
  
  .benefits-content .device-card-enhanced {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 2rem;
    text-align: center;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .benefits-content .device-card-enhanced.active {
    opacity: 1;
    transform: translateX(0);
  }
  
  .benefits-content .device-card-enhanced h3 {
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }
  
  .benefits-content .device-card-enhanced p {
    font-size: 1.1rem;
    line-height: 1.5;
  }
  
  .benefits-content .device-icon-enhanced {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
  }
  
  .software-item {
    padding: 0.4rem 0.6rem;
    gap: 0.25rem;
    min-height: 60px;
  }
  
  .software-logo svg {
    width: 16px;
    height: 16px;
  }
  
  .software-item span {
    font-size: 0.75rem;
    line-height: 1.1;
  }
  
  .benefit-points {
    margin-top: 1rem !important;
  }
  
  .benefit-points li {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }
  
  .software-compatibility {
    padding: 1.5rem 0 3rem 0 !important;
  }
  
  .software-compatibility .container > div:first-child {
    margin-bottom: 2rem !important;
  }
  
  .devices-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .device-card-enhanced {
    padding: 2rem;
  }
  
  .nav-links {
    display: none;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
  }
}

/* Software Compatibility Section */

.software-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.software-item {
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    font-weight: 500;
    color: var(--text-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.software-item:hover {
    border-color: var(--primary);
    background: var(--bg-primary);
    transform: translateY(-2px);
}

.software-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.software-logo svg {
    transition: transform 0.3s ease;
}

.software-item:hover .software-logo svg {
    transform: scale(1.1);
    color: var(--accent-primary);
}

.software-item span {
    font-size: 0.9rem;
    line-height: 1.2;
}



/* Device Compatibility Section */
.devices-section {
  padding: 6rem 0;
  background: var(--bg-primary);
}

.devices-header {
  text-align: center;
  margin-bottom: 4rem;
}

.devices-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.devices-header p {
  color: var(--text-secondary);
  font-size: 1.2rem;
}

.devices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* When devices-grid is inside benefits-content, adjust for smaller column width */
.benefits-content .devices-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: none;
}

.benefits-content .device-card-enhanced {
  padding: 1.5rem;
}

.device-card-enhanced {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.device-card-enhanced:hover {
  transform: translateY(-8px);
  border-color: var(--accent-primary);
  box-shadow: 0 20px 40px rgba(225, 0, 255, 0.15);
}

.device-card-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.device-card-enhanced:hover::before {
  opacity: 1;
}

.device-icon-enhanced {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  transition: transform 0.3s ease;
}

.device-card-enhanced:hover .device-icon-enhanced {
  transform: scale(1.1);
}

.device-card-enhanced h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.device-card-enhanced p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.device-features {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.feature-tag {
  background: rgba(225, 0, 255, 0.1);
  color: var(--accent-primary);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid rgba(225, 0, 255, 0.2);
}

/* FAQ Page Styles */
.faq-hero {
  text-align: center;
  padding: 8rem 0 4rem;
}

.faq-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.faq-hero p {
  font-size: 1.2rem;
  color: var(--text-secondary);
}

.faq-content-section {
  padding: 4rem 0 6rem;
}

.faq-grid {
  display: grid;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item-expanded {
  background: var(--bg-card);
  border-radius: 1rem;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item-expanded:hover {
  border-color: var(--accent-primary);
  transform: translateY(-2px);
}

.faq-question {
  padding: 2rem 2rem 1rem;
  border-bottom: 1px solid var(--border);
}

.faq-question h3 {
  color: var(--text-primary);
  font-size: 1.3rem;
  margin: 0;
}

.faq-answer {
  padding: 1rem 2rem 2rem;
}

.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  font-size: 1.1rem;
}

.nav-link.active {
  color: var(--accent-primary);
  font-weight: 500;
}

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

.fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Success Page Styles */
.success-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.success-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: successPulse 2s ease-in-out infinite;
}

.success-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

@keyframes successPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.success-content h1 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
}

.success-message {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.success-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.success-info h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.success-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.success-info li {
    color: #b0b0b0;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.success-info li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00d4ff;
    font-weight: bold;
}

@media (max-width: 768px) {
    .success-content h1 {
        font-size: 2rem;
    }
    
    .success-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .success-actions .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .success-info {
        padding: 1.5rem;
    }
}