@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700&family=Montserrat:wght@800;900&family=Poppins:wght@400;500;600;700&display=swap');

:root {
  --primary: #0F0F0F;
  --secondary: #FFFFFF;
  --accent: #FF0000;
  --accent-secondary: #3B82F6;
  --highlight: #FFD60A;
  
  --font-bebas: 'Bebas Neue', sans-serif;
  --font-montserrat: 'Montserrat', sans-serif;
  --font-inter: 'Inter', sans-serif;
  --font-poppins: 'Poppins', sans-serif;
  
  --spacing-section: 120px;
}

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

body {
  background-color: var(--primary);
  color: var(--secondary);
  font-family: var(--font-inter);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-bebas);
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: 1px;
}

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-accent { color: var(--accent); }
.text-highlight { color: var(--highlight); }

.btn {
  display: inline-block;
  padding: 18px 40px;
  font-family: var(--font-poppins);
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1.1rem;
}

.btn-primary {
  background-color: var(--accent);
  color: var(--secondary);
  box-shadow: 0 10px 20px rgba(255, 0, 0, 0.3);
}

.btn-primary:hover {
  background-color: #E60000;
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(255, 0, 0, 0.4);
}

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

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

.btn-highlight {
  background-color: var(--highlight);
  color: var(--primary);
  box-shadow: 0 10px 20px rgba(255, 214, 10, 0.3);
}

.btn-highlight:hover {
  background-color: #E5C009;
  transform: translateY(-3px);
}

section {
  padding: var(--spacing-section) 0;
}

.section-title {
  font-size: 4rem;
  text-align: center;
  margin-bottom: 60px;
}

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(15, 15, 15, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-montserrat);
  font-size: 2rem;
  font-weight: 900;
  color: var(--secondary);
  text-decoration: none;
  letter-spacing: -1px;
}

.logo span {
  color: var(--accent);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: radial-gradient(circle at center, transparent 0%, var(--primary) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-size: 5.5rem;
  margin-bottom: 24px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero p {
  font-size: 1.4rem;
  color: #CCCCCC;
  margin-bottom: 40px;
  font-family: var(--font-poppins);
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* Problem Section */
.problem {
  background-color: #151515;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.problem-text h2 {
  font-size: 4rem;
  margin-bottom: 20px;
}

.problem-text p {
  font-size: 1.2rem;
  color: #AAAAAA;
  margin-bottom: 30px;
}

.problem-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  border: 2px solid rgba(255,255,255,0.05);
}

/* Advantage Section */
.advantage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.adv-card {
  background: #111;
  padding: 40px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.adv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 4px; height: 100%;
  background: var(--accent-secondary);
}

.adv-card:hover {
  transform: translateY(-10px);
  border-color: rgba(59, 130, 246, 0.3);
}

.adv-card h3 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.adv-card p {
  color: #999;
}

/* Process Section */
.process {
  background: #151515;
}

.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  align-items: center;
  background: #1A1A1A;
  padding: 30px;
  border-radius: 8px;
  border-left: 4px solid var(--highlight);
}

.step-num {
  font-family: var(--font-montserrat);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255,214,10,0.2);
  margin-right: 30px;
}

.process-step h3 {
  font-size: 1.8rem;
  margin: 0;
}

/* Portfolio Section */
.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: 1px solid #333;
  color: #FFF;
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  font-family: var(--font-poppins);
  transition: all 0.3s;
}

.filter-btn.active, .filter-btn:hover {
  background: var(--secondary);
  color: var(--primary);
}

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

.portfolio-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  group: portfolio;
}

.portfolio-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s;
}

.portfolio-item:hover img {
  transform: scale(1.05);
}

.portfolio-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
  padding: 30px 20px 20px;
  transform: translateY(100%);
  transition: transform 0.3s;
}

.portfolio-item:hover .portfolio-overlay {
  transform: translateY(0);
}

.portfolio-overlay h4 {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

/* Pricing Section */
.pricing {
  background: #151515;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: center;
}

.price-card {
  background: #111;
  padding: 50px 30px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.05);
  position: relative;
}

.price-card.popular {
  border-color: var(--accent);
  transform: scale(1.05);
  background: #1A1A1A;
  box-shadow: 0 20px 50px rgba(255,0,0,0.15);
  z-index: 2;
}

.popular-badge {
  position: absolute;
  top: -15px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #FFF;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  letter-spacing: 1px;
}

.price-card h3 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.price {
  font-size: 4rem;
  font-family: var(--font-montserrat);
  font-weight: 900;
  margin-bottom: 30px;
  color: var(--secondary);
}

.price span {
  font-size: 1.5rem;
}

.price-card ul {
  list-style: none;
  margin-bottom: 40px;
  text-align: left;
}

.price-card ul li {
  margin-bottom: 15px;
  color: #AAA;
  position: relative;
  padding-left: 30px;
}

.price-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-secondary);
  font-weight: bold;
}

.price-card.popular ul li::before {
  color: var(--accent);
}

/* FAQ Section */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
}

.faq-q {
  font-size: 1.5rem;
  font-family: var(--font-bebas);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: #AAA;
  margin-top: 0;
}

.faq-item.active .faq-a {
  max-height: 200px;
  margin-top: 15px;
}

/* CTA Section */
.cta-section {
  text-align: center;
  background: linear-gradient(45deg, #0F0F0F, #1A0000);
  border-top: 1px solid rgba(255,0,0,0.2);
}

.cta-section h2 {
  font-size: 5rem;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
footer {
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: #666;
}

/* Testimonials Section */
.testimonials {
  background: #0A0A0A;
  padding: 80px 0;
}

.scrolling-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.scrolling-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: scroll 40s linear infinite;
}

.scrolling-track:hover {
  animation-play-state: paused;
}

.review-group {
  display: flex;
  gap: 30px;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 15px)); }
}

.review-card {
  background: #111;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 30px;
  width: 400px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 214, 10, 0.3);
}

.review-stars {
  color: var(--highlight);
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.review-text {
  color: #AAA;
  font-size: 1rem;
  font-style: italic;
  flex-grow: 1;
  line-height: 1.6;
}

.review-author {
  font-family: var(--font-poppins);
  font-weight: 600;
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 10px;
}

.author-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 992px) {
  .hero h1 { font-size: 4rem; }
  .problem-grid, .pricing-grid { grid-template-columns: 1fr; }
  .price-card.popular { transform: none; }
}
@media (max-width: 768px) {
  .hero h1 { font-size: 3rem; }
  .hero-buttons { flex-direction: column; }
  .section-title { font-size: 3rem; }
}

/* Forms & Admin */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-poppins);
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 15px;
  background: #151515;
  border: 1px solid #333;
  color: #FFF;
  border-radius: 4px;
  font-family: var(--font-inter);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-secondary);
}

/* Checkout Page */
.checkout-container {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  margin-top: 120px;
  margin-bottom: 60px;
}
@media (max-width: 900px) {
  .checkout-container { grid-template-columns: 1fr; }
}

.checkout-form {
  background: #111;
  padding: 40px;
  border-radius: 8px;
  border: 1px solid #222;
}

.order-summary {
  background: #1A1A1A;
  padding: 40px;
  border-radius: 8px;
  border: 1px solid var(--accent);
  align-self: start;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  border-bottom: 1px solid #333;
  padding-bottom: 15px;
}

.summary-total {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--highlight);
  border-bottom: none;
}
