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

:root {
  --primary-color: #8b5cf6;
  --secondary-color: #6d28d9;
  --accent-color: #a78bfa;
  --tertiary-color: #ec4899;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --bg-light: #faf5ff;
  --bg-white: #ffffff;
  --border-color: #e9d5ff;
  --success-color: #10b981;
  --error-color: #ef4444;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu,
    Cantarell, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-dark);
  background-color: var(--bg-white);
}

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

header {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  padding: 12px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.logo {
  font-size: 18px;
  font-weight: 700;
  color: var(--bg-white);
  text-decoration: none;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 24px;
}

.main-nav a {
  color: var(--bg-white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: opacity 0.3s;
}

.main-nav a:hover {
  opacity: 0.8;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--bg-white);
  margin: 3px 0;
  transition: 0.3s;
}

.hero {
  position: relative;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 50%,
    var(--tertiary-color) 100%
  );
  color: var(--bg-white);
  padding: 100px 0 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
  opacity: 0.3;
}

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

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

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.2;
  animation: fadeInUp 0.8s ease;
}

.hero p {
  font-size: 20px;
  margin-bottom: 32px;
  opacity: 0.95;
  line-height: 1.6;
  animation: fadeInUp 1s ease;
  color: white;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1.2s ease;
}

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

.page-hero {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  color: var(--bg-white);
  padding: 48px 0;
  text-align: center;
}

.page-hero h1 {
  font-size: 28px;
  margin-bottom: 8px;
  font-weight: 700;
}

.page-hero p {
  font-size: 15px;
  opacity: 0.95;
  color: white;
}

.cta-button {
  display: inline-block;
  background: var(--bg-white);
  color: var(--primary-color);
  padding: 10px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-button.secondary {
  background: transparent;
  color: var(--bg-white);
  border: 2px solid var(--bg-white);
}

section {
  padding: 48px 0;
}

h2 {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--text-dark);
  font-weight: 700;
}

h3 {
  font-size: 17px;
  margin-bottom: 8px;
  color: var(--text-dark);
  font-weight: 600;
}

p {
  margin-bottom: 12px;
  color: var(--text-light);
  font-size: 14px;
}

.services-overview {
  background: var(--bg-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.service-card {
  background: var(--bg-white);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.service-card img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 16px;
}

.service-card h3 {
  margin-bottom: 8px;
}

.learn-more {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  margin-top: 8px;
}

.learn-more:hover {
  text-decoration: underline;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.feature {
  padding: 20px;
  background: var(--bg-white);
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.process {
  background: var(--bg-light);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.step {
  text-align: center;
  padding: 20px;
  background: var(--bg-white);
  border-radius: 8px;
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-weight: 700;
  font-size: 16px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.portfolio-item {
  padding: 20px;
  background: var(--bg-light);
  border-radius: 8px;
}

.testimonials {
  background: var(--bg-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.testimonial {
  background: var(--bg-white);
  padding: 24px;
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
}

.testimonial p {
  font-style: italic;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.testimonial cite {
  font-size: 13px;
  color: var(--text-light);
  font-style: normal;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.pricing-card {
  background: var(--bg-white);
  border: 2px solid var(--border-color);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.pricing-card.featured {
  border-color: var(--primary-color);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.2);
}

.price {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 16px 0;
}

.pricing-card ul {
  list-style: none;
  margin: 20px 0;
  text-align: left;
}

.pricing-card li {
  padding: 8px 0;
  font-size: 13px;
  color: var(--text-light);
  border-bottom: 1px solid var(--border-color);
}

.pricing-card li:last-child {
  border-bottom: none;
}

.stats-section {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 50%,
    var(--tertiary-color) 100%
  );
  color: var(--bg-white);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-top: 32px;
  text-align: center;
}

.stat-item h3 {
  font-size: 42px;
  color: var(--bg-white);
  margin-bottom: 8px;
  font-weight: 800;
}

.stat-item p {
  font-size: 15px;
  color: var(--bg-white);
  opacity: 0.9;
}

.service-details {
  padding: 48px 0;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.detail-item {
  padding: 20px;
  background: var(--bg-light);
  border-radius: 8px;
}

.editing-types,
.graphics-types {
  background: var(--bg-light);
}

.types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.type-card {
  background: var(--bg-white);
  padding: 20px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.workflow-step {
  padding: 20px;
  background: var(--bg-light);
  border-radius: 8px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.benefit-item {
  padding: 20px;
  background: var(--bg-white);
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.contact-section {
  padding: 48px 0;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 32px;
}

.contact-info h2 {
  margin-bottom: 16px;
}

.info-items {
  margin-top: 32px;
}

.info-item {
  margin-bottom: 24px;
}

.info-item h3 {
  font-size: 15px;
  margin-bottom: 6px;
}

.info-item p {
  font-size: 13px;
}

.contact-form-wrapper h2 {
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 13px;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 13px;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  font-size: 12px;
}

.checkbox-label input[type='checkbox'] {
  width: auto;
  margin-right: 8px;
  margin-top: 2px;
  cursor: pointer;
}

.checkbox-label a {
  color: var(--primary-color);
  text-decoration: none;
}

.checkbox-label a:hover {
  text-decoration: underline;
}

.map-section {
  background: var(--bg-light);
}

.map-wrapper {
  margin-top: 24px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

footer {
  background: var(--text-dark);
  color: var(--bg-white);
  padding: 40px 0 20px;
}

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

.footer-col h4 {
  font-size: 15px;
  margin-bottom: 12px;
  color: var(--bg-white);
}

.footer-col p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 8px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--bg-white);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--text-dark);
  color: var(--bg-white);
  padding: 16px;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: none;
}

.privacy-popup.show {
  display: block;
}

.privacy-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.privacy-content p {
  font-size: 13px;
  margin: 0;
  color: var(--bg-white);
}

.privacy-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.privacy-buttons a {
  color: var(--bg-white);
  text-decoration: underline;
  font-size: 13px;
}

.privacy-buttons button {
  background: var(--primary-color);
  color: var(--bg-white);
  border: none;
  padding: 8px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
}

.thankyou-page,
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
}

.thankyou-container,
.error-container {
  text-align: center;
  color: var(--bg-white);
  padding: 40px 20px;
}

.thankyou-content h1,
.error-content h1 {
  font-size: 36px;
  margin-bottom: 16px;
  color: var(--bg-white);
}

.error-content h1 {
  font-size: 72px;
  margin-bottom: 8px;
}

.error-content h2 {
  font-size: 28px;
  margin-bottom: 12px;
  color: var(--bg-white);
}

.thankyou-content p,
.error-content p {
  font-size: 16px;
  margin-bottom: 32px;
  color: var(--bg-white);
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.thankyou-actions,
.error-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.policy-page {
  padding: 48px 0;
}

.policy-page h1 {
  font-size: 32px;
  margin-bottom: 8px;
}

.last-updated {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 32px;
}

.policy-section {
  margin-bottom: 32px;
}

.policy-section h2 {
  font-size: 22px;
  margin-bottom: 12px;
  margin-top: 24px;
}

.policy-section h3 {
  font-size: 16px;
  margin-bottom: 8px;
  margin-top: 16px;
}

.policy-section ul {
  margin-left: 20px;
  margin-bottom: 12px;
}

.policy-section li {
  margin-bottom: 6px;
  font-size: 14px;
  color: var(--text-light);
}

.video-showcase {
  background: var(--bg-white);
  padding: 60px 0;
}

.showcase-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.showcase-text h2 {
  margin-bottom: 20px;
}

.showcase-text ul {
  list-style: none;
  margin-top: 24px;
}

.showcase-text li {
  padding: 12px 0;
  font-size: 15px;
  color: var(--text-light);
  border-bottom: 1px solid var(--border-color);
  position: relative;
  padding-left: 24px;
}

.showcase-text li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
}

.showcase-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

.showcase-image img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .showcase-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .main-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 250px;
    height: 100vh;
    background: var(--text-dark);
    padding: 60px 20px 20px;
    transition: left 0.3s;
    z-index: 999;
  }

  .main-nav.active {
    left: 0;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 16px;
  }

  .menu-toggle {
    display: flex;
    z-index: 1000;
  }

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

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

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

  .hero {
    padding: 60px 0 50px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .cta-button {
    width: 100%;
    max-width: 280px;
  }

  .page-hero h1 {
    font-size: 24px;
  }

  .page-hero p {
    font-size: 14px;
  }

  h2 {
    font-size: 20px;
  }

  h3 {
    font-size: 16px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .services-grid,
  .pricing-grid,
  .features-grid,
  .process-steps,
  .portfolio-grid,
  .testimonials-grid,
  .details-grid,
  .types-grid,
  .workflow-steps,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .privacy-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .thankyou-content h1,
  .error-content h2 {
    font-size: 24px;
  }

  .error-content h1 {
    font-size: 56px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 13px;
  }

  .container {
    padding: 0 12px;
  }

  section {
    padding: 32px 0;
  }

  .hero {
    padding: 50px 0 40px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .page-hero {
    padding: 32px 0;
  }

  .cta-button {
    padding: 8px 20px;
    font-size: 12px;
  }

  .service-card,
  .feature,
  .step,
  .portfolio-item,
  .testimonial,
  .pricing-card,
  .detail-item,
  .type-card,
  .workflow-step,
  .benefit-item {
    padding: 16px;
  }

  .price {
    font-size: 28px;
  }

  footer {
    padding: 32px 0 16px;
  }
}

@media (min-width: 320px) and (max-width: 374px) {
  body {
    font-size: 12px;
  }

  .hero h1 {
    font-size: 24px;
  }

  h2 {
    font-size: 18px;
  }

  .cta-button {
    padding: 7px 16px;
    font-size: 11px;
  }

  .hero {
    padding: 40px 0 35px;
  }
}
