:root {
  --primary: #9d2235;
  --primary-light: #c75b7a;
  --primary-dark: #5c1a25;
  --accent: #d4a574;
  --accent-light: #e8c4a0;
  --bg: #faf8f6;
  --text: #2d2d2d;
  --text-light: #666;
  --border: #e8e4e0;
  --line: #ddd;
  --white: #ffffff;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

/* Demo Bar */
.demo-bar {
  background: var(--primary);
  color: var(--white);
  padding: 8px 16px;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  border-bottom: 1px solid var(--primary-dark);
  position: sticky;
  top: 0;
  z-index: 999;
}

.demo-bar a {
  color: var(--accent-light);
  text-decoration: none;
  transition: opacity 0.2s;
}

.demo-bar a:hover {
  opacity: 0.8;
}

.demo-cta {
  background: var(--accent) !important;
  color: var(--primary) !important;
  padding: 4px 12px;
  border-radius: 3px;
  font-weight: 600;
}

/* Header & Navigation */
header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 27px;
  z-index: 99;
}

header .logo {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

.menu-toggle {
  display: none;
}

.menu-label {
  display: none;
  cursor: pointer;
  color: var(--primary);
}

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

header nav ul {
  list-style: none;
  display: flex;
  gap: 0;
}

header nav ul li {
  position: relative;
}

header nav ul li a {
  display: block;
  padding: 8px 16px;
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
  border-bottom: 2px solid transparent;
}

header nav ul li a:hover,
header nav ul li a.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

header nav ul li a.cta-link {
  color: var(--primary);
  font-weight: 600;
}

/* Mobile Menu */
@media (max-width: 768px) {
  .menu-label {
    display: block;
  }

  header nav {
    flex-direction: column;
    padding: 12px 16px;
    gap: 0;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--white);
    max-height: 0;
    overflow: hidden;
    border-bottom: none;
    transition: max-height 0.3s;
  }

  #menu-toggle:checked ~ nav {
    max-height: 500px;
    border-bottom: 1px solid var(--border);
  }

  header nav ul {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }

  header nav ul li a {
    padding: 12px 16px;
    border-bottom: none;
    border-left: 3px solid transparent;
  }

  header nav ul li a.active {
    border-left-color: var(--primary);
    background: rgba(157, 34, 53, 0.05);
  }

  header nav ul li a:hover {
    border-left-color: var(--primary);
  }
}

/* Main & Sections */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

section {
  padding: 60px 24px;
}

section h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
  text-align: center;
}

section h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}

section h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

section p {
  color: var(--text-light);
  margin-bottom: 16px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 16px;
  margin-bottom: 40px;
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, #7a1f2d 0%, #a63147 100%);
  color: var(--white);
  text-align: center;
  padding: 80px 24px;
  margin-bottom: 40px;
}

.page-header h1 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 12px;
}

.page-header p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
}

/* Hero Section */
.hero {
  background: var(--bg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 80px 24px;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.2;
}

.tagline {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 40px 24px;
  }

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

  .hero-visual {
    order: -1;
  }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  text-align: center;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(157, 34, 53, 0.3);
}

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

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

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

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

.btn-small {
  padding: 8px 16px;
  font-size: 13px;
}

.btn-large {
  padding: 16px 48px;
  font-size: 16px;
}

.btn-submit {
  width: 100%;
}

/* Features Grid */
.features {
  background: var(--white);
  padding: 60px 24px;
}

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

.feature-card {
  background: var(--bg);
  padding: 32px 24px;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  border-top: 4px solid var(--primary);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(157, 34, 53, 0.1);
}

.feature-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.feature-card h3 {
  margin-bottom: 12px;
  color: var(--primary);
}

.feature-card p {
  font-size: 14px;
  margin: 0;
}

/* Collections */
.collections {
  background: var(--bg);
  padding: 60px 24px;
}

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

.collection-item {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.collection-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(157, 34, 53, 0.15);
}

.collection-image {
  height: 200px;
  overflow: hidden;
}

.color-box {
  width: 100%;
  height: 100%;
}

.collection-item h3 {
  padding: 16px 16px 8px;
  margin: 0;
}

.collection-item p {
  padding: 0 16px;
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 12px;
}

.price-tag {
  padding: 8px 16px 16px;
  font-weight: 600;
  color: var(--primary);
  font-size: 14px;
}

/* Design Grid */
.design-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.design-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s;
}

.design-card:hover {
  box-shadow: 0 12px 32px rgba(157, 34, 53, 0.2);
  transform: translateY(-4px);
}

.design-preview {
  height: 240px;
  width: 100%;
}

.design-card h3 {
  padding: 16px 16px 8px;
  margin: 0;
}

.design-desc {
  padding: 0 16px;
  font-size: 13px;
  margin-bottom: 12px;
}

.design-meta {
  padding: 0 16px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.design-color,
.design-theme {
  font-size: 12px;
  padding: 4px 8px;
  background: var(--bg);
  color: var(--text-light);
  border-radius: 3px;
}

.btn-small {
  margin: 0 16px 16px;
  display: inline-block;
}

/* Packages */
.packages {
  background: var(--white);
  padding: 60px 24px;
}

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

.package-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s;
  position: relative;
}

.package-card.featured {
  border-color: var(--primary);
  box-shadow: 0 12px 32px rgba(157, 34, 53, 0.15);
  transform: scale(1.02);
}

.package-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--primary);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
}

.package-header {
  background: linear-gradient(135deg, #7a1f2d 0%, #a63147 100%);
  color: var(--white);
  padding: 24px;
  font-size: 20px;
  font-weight: 700;
}

.package-body {
  padding: 32px 24px;
}

.package-features {
  list-style: none;
  margin-bottom: 24px;
}

.package-features li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  font-size: 14px;
  color: var(--text-light);
}

.package-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.package-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
}

/* Pricing Table */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 40px;
  background: var(--white);
}

.pricing-table th,
.pricing-table td {
  padding: 16px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  font-size: 14px;
}

.pricing-table thead {
  background: var(--bg);
}

.pricing-table th {
  font-weight: 700;
  color: var(--primary);
}

.feature-name {
  font-weight: 600;
  color: var(--text);
  min-width: 160px;
}

.price-row {
  background: var(--bg);
  font-weight: 700;
  font-size: 18px;
  color: var(--primary);
}

.button-row {
  text-align: center;
  padding: 24px 16px !important;
}

.badge-pop {
  background: var(--primary);
  color: var(--white);
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 3px;
  display: block;
  margin-top: 4px;
  font-weight: 600;
}

/* Add-ons */
.addon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.addon-item {
  background: var(--bg);
  padding: 24px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid var(--border);
}

.addon-item h3 {
  margin-bottom: 12px;
  color: var(--primary);
}

.addon-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin: 12px 0;
}

/* Materials */
.materials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.material-card {
  background: var(--white);
  border: 2px solid var(--border);
  padding: 24px;
  border-radius: 8px;
  transition: all 0.3s;
}

.material-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(157, 34, 53, 0.1);
}

.material-card h3 {
  margin-bottom: 8px;
  color: var(--primary);
}

.price-small {
  font-size: 12px;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 8px;
}

/* Timeline */
.timeline-content {
  margin-top: 40px;
}

.timeline-item {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  position: relative;
}

.timeline-item:not(:last-child):after {
  content: "";
  position: absolute;
  left: 15px;
  top: 60px;
  width: 2px;
  height: calc(100% + 32px);
  background: var(--border);
}

.timeline-marker {
  background: var(--primary);
  color: var(--white);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 4px;
}

.timeline-text h4 {
  margin-bottom: 8px;
  color: var(--primary);
}

.timeline-text p {
  margin: 0;
  font-size: 14px;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.gallery-item {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(157, 34, 53, 0.2);
}

.gallery-image {
  height: 280px;
  width: 100%;
}

.gallery-info {
  padding: 24px;
}

.gallery-info h3 {
  margin-bottom: 8px;
  color: var(--primary);
}

.gallery-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--text-light);
  margin-top: 12px;
}

/* Stats */
.portfolio-stats {
  margin-top: 40px;
}

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

.stat-box {
  background: var(--bg);
  padding: 32px;
  border-radius: 8px;
  text-align: center;
  border-left: 4px solid var(--primary);
}

.stat-number {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-light);
}

/* Testimonials */
.testimonials,
.client-testimonials {
  background: var(--bg);
}

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

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

.testimonial-stars {
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 12px;
}

.testimonial-author {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 600;
  margin-top: 12px;
}

.testimonial-header {
  margin-bottom: 12px;
}

.testimonial-header h4 {
  margin: 8px 0 0;
}

/* Process Steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.process-step {
  background: var(--white);
  padding: 32px 24px;
  border-radius: 8px;
  border: 2px solid var(--border);
  text-align: center;
  transition: all 0.3s;
}

.process-step:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(157, 34, 53, 0.1);
}

.step-number {
  display: inline-flex;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 16px;
}

.process-step h3 {
  margin-bottom: 12px;
  color: var(--primary);
}

.process-step p {
  font-size: 14px;
  margin: 0;
}

/* Contact Section */
.contact-section {
  padding: 60px 24px;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.contact-info h2,
.contact-form h2 {
  margin-bottom: 32px;
  color: var(--primary);
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.info-item {
  display: flex;
  gap: 20px;
}

.info-icon {
  display: flex;
  width: 48px;
  height: 48px;
  background: var(--bg);
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-text h3 {
  margin-bottom: 8px;
  color: var(--primary);
}

.info-text p {
  margin: 4px 0;
  font-size: 14px;
}

.info-small {
  font-size: 12px !important;
  color: var(--text-light);
}

.info-text a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.social-links {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.social-links h3 {
  margin-bottom: 16px;
  color: var(--primary);
}

.social-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-btn {
  padding: 10px 20px;
  background: var(--bg);
  color: var(--primary);
  border-radius: 4px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s;
}

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

/* Form */
.contact-form {
  background: var(--bg);
  padding: 32px;
  border-radius: 8px;
}

.form-subtitle {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 28px;
}

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(157, 34, 53, 0.1);
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  font-size: 13px;
}

.form-checkbox input {
  width: auto;
  margin: 0;
}

.form-note {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 16px;
}

/* Filter */
.filter-section,
.gallery-filter {
  background: var(--white);
  padding: 40px 24px;
  border-bottom: 1px solid var(--border);
}

.filter-wrap h3 {
  color: var(--primary);
  margin-bottom: 20px;
}

.filter-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 20px;
  background: var(--bg);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
}

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

/* Customization */
.customization-info {
  background: var(--white);
  padding: 60px 24px;
}

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

.custom-content > p {
  font-size: 16px;
  margin-bottom: 32px;
  color: var(--text-light);
}

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

.custom-item {
  background: var(--bg);
  padding: 24px;
  border-radius: 8px;
}

.custom-item strong {
  color: var(--primary);
  display: block;
  margin-bottom: 8px;
}

.custom-item p {
  font-size: 14px;
  margin: 0;
}

/* Finishing Guide */
.finishing-guide {
  background: var(--bg);
  padding: 60px 24px;
}

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

.finishing-item {
  background: var(--white);
  padding: 24px;
  border-radius: 8px;
  text-align: center;
  border-top: 4px solid var(--primary);
}

.finishing-item h3 {
  margin-bottom: 12px;
  color: var(--primary);
}

.finishing-item p {
  font-size: 14px;
  margin: 0;
}

/* FAQ */
.faq-section {
  background: var(--white);
  padding: 60px 24px;
}

.faq-items {
  max-width: 800px;
  margin: 40px auto 0;
}

.faq-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h4 {
  color: var(--primary);
  margin-bottom: 12px;
}

.faq-item p {
  font-size: 14px;
  margin: 0;
}

/* FAQ Columns */
.faq-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.faq-group h3 {
  color: var(--primary);
  margin-bottom: 20px;
}

.faq-group .faq-items {
  margin: 0;
  max-width: none;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #7a1f2d 0%, #a63147 100%);
  color: var(--white);
  text-align: center;
  padding: 80px 24px;
  border-radius: 8px;
  margin: 40px 24px;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.closing-cta {
  background: var(--bg);
  padding: 60px 24px;
  text-align: center;
}

.closing-cta h2 {
  margin-bottom: 12px;
}

.closing-cta p {
  font-size: 16px;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
footer {
  background: var(--text);
  color: var(--white);
  padding: 60px 24px 0;
  margin-top: 80px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.footer-section h4 {
  color: var(--accent);
  margin-bottom: 16px;
  font-size: 16px;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin: 0;
}

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

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

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
  section {
    padding: 40px 16px;
  }

  section h2 {
    font-size: 28px;
  }

  .page-header {
    padding: 60px 16px;
  }

  .page-header h1 {
    font-size: 32px;
  }

  .feature-grid,
  .collection-grid,
  .design-grid,
  .package-grid,
  .addon-grid,
  .materials,
  .stats-grid,
  .testimonial-grid,
  .gallery-grid,
  .process-steps,
  .finishing-grid,
  .faq-columns {
    grid-template-columns: 1fr;
  }

  .package-card.featured {
    transform: scale(1);
  }

  .contact-form {
    padding: 24px;
  }
}

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

  header nav {
    gap: 0;
  }

  header nav ul li a {
    padding: 12px;
  }

  section {
    padding: 32px 12px;
  }

  section h2 {
    font-size: 24px;
  }

  .page-header h1 {
    font-size: 26px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    padding: 10px 20px;
    font-size: 13px;
  }

  .demo-bar {
    font-size: 12px;
    flex-direction: column;
    gap: 8px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
  }

  .pricing-table {
    font-size: 12px;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 12px 8px;
  }
}
