:root {
  --bg-primary: #FAF8F5;
  --bg-secondary: #FFFFFF;
  --bg-accent-light: #F4F1EA;
  --text-dark: #1E2229;
  --text-light: #6D7682;
  --color-gold: #C5A880;
  --color-gold-hover: #B2956E;
  --color-terracotta: #D97D64;
  --color-terracotta-hover: #C66850;
  --color-green: #72B076;
  --color-green-light: #EBF7EC;
  --border-color: rgba(197, 168, 128, 0.15);
  
  --shadow-sm: 0 4px 10px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 50px rgba(30, 34, 41, 0.08);
  
  --font-sans: 'Plus Jakarta Sans', sans-serif;
  --font-serif: 'Playfair Display', serif;
}

/* Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}

/* Utility Layouts */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px auto;
  padding: 0 20px;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.section-main-title {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.section-desc {
  color: var(--text-light);
  font-size: 1.05rem;
  font-weight: 300;
}

.badge {
  display: inline-block;
  background-color: var(--bg-accent-light);
  color: var(--text-dark);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 30px;
  border: 1px solid var(--border-color);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.badge-gold {
  background-color: rgba(197, 168, 128, 0.08);
  color: var(--color-gold-hover);
  border-color: rgba(197, 168, 128, 0.25);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: var(--font-sans);
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: var(--color-terracotta);
  color: white;
  box-shadow: 0 8px 20px rgba(217, 125, 100, 0.25);
}

.btn-primary:hover {
  background-color: var(--color-terracotta-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(217, 125, 100, 0.35);
}

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

.btn-secondary:hover {
  background-color: var(--text-dark);
  color: white;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.8rem;
}

.btn-block {
  width: 100%;
}

.btn-white {
  background-color: white;
  color: var(--text-dark);
  border: 1px solid white;
}
.btn-white:hover {
  background-color: var(--bg-primary);
  color: var(--text-dark);
}

.btn-icon {
  width: 18px;
  height: 18px;
  margin-right: 8px;
}

/* Header & Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(250, 248, 245, 0.8);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(197, 168, 128, 0.1);
  transition: all 0.3s;
}

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

.logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.logo-accent {
  color: var(--color-gold);
  font-style: italic;
  font-weight: 400;
}
.logo-dot {
  color: var(--color-terracotta);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark);
  opacity: 0.85;
}
.nav-link:hover {
  color: var(--color-terracotta);
  opacity: 1;
}

.nav-btn {
  background-color: var(--color-gold);
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}
.nav-btn:hover {
  background-color: var(--color-gold-hover);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1100;
}
.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-dark);
  transition: all 0.3s;
}

/* Hero Section */
.hero-section {
  padding: 140px 24px 80px 24px;
  background: radial-gradient(circle at 80% 20%, rgba(197, 168, 128, 0.07) 0%, rgba(250, 248, 245, 1) 70%);
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

.hero-text-content {
  max-width: 600px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.hero-title .highlight {
  color: var(--color-gold);
  font-style: italic;
  font-weight: 400;
  position: relative;
  display: inline-block;
}
.hero-title .highlight::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: rgba(217, 125, 100, 0.15);
  z-index: -1;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 35px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.hero-stats-row {
  display: flex;
  gap: 40px;
  border-top: 1px solid var(--border-color);
  padding-top: 30px;
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
}
.hero-stat-num {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-gold-hover);
}
.hero-stat-lbl {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  margin-top: 2px;
}

/* Interactive iPhone Mockup */
.hero-mockup-content {
  display: flex;
  justify-content: center;
  position: relative;
}

.phone-mockup-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.phone-frame {
  width: 295px;
  height: 600px;
  background-color: #1e1e24;
  border: 12px solid #2d2d34;
  border-radius: 40px;
  box-shadow: var(--shadow-lg), 0 30px 70px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.phone-screen-container {
  width: 100%;
  height: 100%;
  background-color: white;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
}

.phone-screen-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Speaker notch */
.phone-speaker {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 22px;
  background-color: #2d2d34;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  z-index: 10;
}

.mockup-controls {
  display: flex;
  background-color: white;
  padding: 6px;
  border-radius: 30px;
  box-shadow: var(--shadow-md);
  margin-top: 25px;
  border: 1px solid var(--border-color);
  gap: 5px;
}

.mockup-btn {
  background-color: transparent;
  border: none;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 20px;
  cursor: pointer;
  color: var(--text-light);
  transition: all 0.3s;
}

.mockup-btn.active {
  background-color: var(--color-gold);
  color: white;
}

/* Benefits Section */
.benefits-section {
  padding: 100px 24px;
  background-color: white;
}

.benefits-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 30px;
}

.benefit-card {
  background-color: var(--bg-primary);
  padding: 30px 24px;
  border-radius: 16px;
  border: 1px solid rgba(197, 168, 128, 0.08);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-align: left;
}

.benefit-card:hover {
  transform: translateY(-8px);
  background-color: white;
  box-shadow: var(--shadow-md);
  border-color: rgba(197, 168, 128, 0.25);
}

.benefit-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: rgba(197, 168, 128, 0.08);
  color: var(--color-gold-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s;
}

.benefit-card:hover .benefit-icon-wrapper {
  background-color: var(--color-gold);
  color: white;
}

.benefit-svg {
  width: 22px;
  height: 22px;
}

.benefit-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.benefit-text {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* Difference Section (QR Control) */
.difference-section {
  padding: 100px 24px;
  background-color: var(--bg-accent-light);
}

.difference-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.difference-text-content {
  max-width: 550px;
}

.difference-title {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.difference-lead {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 30px;
  font-weight: 300;
}

.difference-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.difference-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.list-bullet {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgba(217, 125, 100, 0.1);
  color: var(--color-terracotta);
  font-weight: bold;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.difference-list li div {
  font-size: 0.95rem;
  color: var(--text-light);
}

.difference-list li strong {
  color: var(--text-dark);
  display: block;
  margin-bottom: 2px;
}

/* QR Simulator */
.difference-visual {
  display: flex;
  justify-content: center;
}

.qr-simulator-card {
  width: 320px;
  background-color: white;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.simulator-header {
  padding: 15px 20px;
  background-color: var(--bg-primary);
  border-bottom: 1px solid rgba(197, 168, 128, 0.1);
  display: flex;
  align-items: center;
}

.simulator-header .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 6px;
}
.dot.red { background-color: #ff5f56; }
.dot.yellow { background-color: #ffbd2e; }
.dot.green { background-color: #27c93f; }

.simulator-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-light);
  margin-left: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.scanner-screen {
  position: relative;
  height: 250px;
  background-color: #f7f5f2;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.scanning-laser {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  box-shadow: 0 0 10px var(--color-gold);
  z-index: 5;
  animation: laserScan 3s infinite linear;
}

.ticket-mockup {
  width: 160px;
  background-color: white;
  padding: 15px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  text-align: center;
  border: 1px dashed var(--color-gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s;
}

.ticket-label {
  font-size: 0.55rem;
  letter-spacing: 1px;
  color: var(--text-light);
  font-weight: 700;
}

.qr-code-box {
  width: 90px;
  height: 90px;
  margin: 10px 0;
  padding: 5px;
  background-color: white;
}
.qr-svg {
  width: 100%;
  height: 100%;
}

.ticket-name {
  font-family: var(--font-serif);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-dark);
}

.ticket-guest {
  font-size: 0.6rem;
  color: var(--text-light);
  margin-top: 2px;
}

.scan-overlay {
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border: 2px solid rgba(197, 168, 128, 0.3);
  border-radius: 8px;
  pointer-events: none;
}

.simulator-controls {
  padding: 20px;
  text-align: center;
  background-color: white;
}

.scan-result {
  margin-top: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px;
  border-radius: 6px;
  background-color: var(--bg-primary);
  color: var(--text-light);
  transition: all 0.3s;
}

.scan-result.success {
  background-color: var(--color-green-light);
  color: var(--color-green);
  border: 1px solid rgba(114, 176, 118, 0.2);
}

/* How It Works Section */
.how-it-works-section {
  padding: 100px 24px;
  background-color: white;
}

.steps-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.step-card {
  position: relative;
  text-align: left;
}

.step-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 400;
  color: rgba(197, 168, 128, 0.2);
  line-height: 1;
  margin-bottom: 15px;
}

.step-card:hover .step-num {
  color: var(--color-gold);
  transition: color 0.3s;
}

.step-title {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.step-text {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* Gallery Section */
.gallery-section {
  padding: 100px 24px;
}

.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.gallery-tab-btn {
  background-color: white;
  border: 1px solid var(--border-color);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 20px;
  cursor: pointer;
  color: var(--text-light);
  transition: all 0.3s;
}

.gallery-tab-btn:hover, .gallery-tab-btn.active {
  background-color: var(--color-gold);
  color: white;
  border-color: var(--color-gold);
}

.gallery-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.gallery-item {
  background-color: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: transform 0.3s;
}
.gallery-item:hover {
  transform: translateY(-4px);
}

.gallery-img-wrapper {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-img-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: linear-gradient(135deg, #fbf9f6, #f2ece4);
}
.grad-graduation { background: linear-gradient(135deg, #2b303a, #4a4e69); }
.grad-corporate { background: linear-gradient(135deg, #1b263b, #415a77); }
.grad-baby { background: linear-gradient(135deg, #f2eff9, #d0e1fd); }
.gallery-img-fallback span {
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.15));
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(30, 34, 41, 0.4);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-info {
  padding: 20px;
  text-align: left;
}

.gallery-item-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
}

.gallery-item-category {
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Testimonials */
.testimonials-section {
  padding: 100px 24px;
  background-color: white;
}

.testimonials-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background-color: var(--bg-primary);
  padding: 40px 30px;
  border-radius: 16px;
  border: 1px solid rgba(197, 168, 128, 0.08);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.rating {
  color: var(--color-gold);
  margin-bottom: 20px;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 30px;
  font-style: italic;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.client-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--color-gold);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
}

.client-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
}

.client-event {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* FAQ Section */
.faq-section {
  padding: 100px 24px;
}

.faq-container {
  max-width: 750px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background-color: white;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: all 0.3s;
}

.faq-question {
  width: 100%;
  padding: 22px 30px;
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--color-gold);
  font-weight: 300;
  transition: transform 0.3s;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
  padding: 0 30px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 25px;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* Express Calculator */
.pricing-calculator-section {
  padding: 80px 24px;
  background-color: white;
}

.calculator-container {
  max-width: 650px;
  margin: 0 auto;
  background-color: var(--bg-primary);
  border-radius: 24px;
  padding: 40px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}

.calculator-header {
  text-align: center;
  margin-bottom: 30px;
}

.calc-title {
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.calc-subtitle {
  font-size: 0.9rem;
  color: var(--text-light);
}

.calc-form .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.calc-form .form-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.calc-form label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.calc-form select {
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid rgba(197, 168, 128, 0.3);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  outline: none;
  background-color: white;
  cursor: pointer;
}

.calc-form select:focus {
  border-color: var(--color-gold);
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  margin-top: 10px;
}

.checkbox-container {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  font-size: 0.85rem !important;
  font-weight: 500 !important;
  color: var(--text-dark) !important;
  user-select: none;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 18px;
  width: 18px;
  background-color: white;
  border: 1px solid rgba(197, 168, 128, 0.4);
  border-radius: 4px;
}

.checkbox-container:hover input ~ .checkmark {
  background-color: #f7f5f2;
}

.checkbox-container input:checked ~ .checkmark {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-container .checkmark:after {
  left: 6px;
  top: 2px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.price-display-wrapper {
  margin: 30px 0;
  padding: 20px;
  background-color: white;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(197, 168, 128, 0.15);
}

.price-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  display: block;
}

.price-value {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-terracotta);
  display: block;
  margin: 5px 0;
}

.price-note {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* Final CTA */
.final-cta-section {
  padding: 80px 24px 100px 24px;
}

.cta-card {
  max-width: 1000px;
  margin: 0 auto;
  background: linear-gradient(135deg, #1e2229 0%, #2b303a 100%);
  padding: 70px 40px;
  border-radius: 24px;
  color: white;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-title {
  font-size: 2.4rem;
  margin-bottom: 15px;
}

.cta-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 35px auto;
  font-weight: 300;
}

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

/* Footer */
.footer {
  background-color: #1a1c20;
  color: #a0a8b3;
  padding: 70px 24px 30px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-brand-column .logo {
  color: white;
  margin-bottom: 15px;
  display: block;
}

.footer-tagline {
  font-size: 0.85rem;
  line-height: 1.6;
  max-width: 300px;
}

.footer-links-column h4, .footer-contact-column h4 {
  color: white;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.footer-links-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-column a {
  font-size: 0.85rem;
}
.footer-links-column a:hover {
  color: var(--color-gold);
}

.footer-contact-column p {
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: center;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.75rem;
}

/* Live Demo Preview Modal */
.demo-preview-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(30, 34, 41, 0.9);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  padding: 30px 20px;
}

.modal-preview-container {
  width: 100%;
  max-width: 480px;
  height: 100%;
  background-color: white;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
  border: 1px solid var(--border-color);
}

.modal-preview-header {
  padding: 15px 20px;
  background-color: var(--bg-primary);
  border-bottom: 1px solid rgba(197, 168, 128, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#modal-title-demo {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

.close-preview-btn {
  font-size: 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-light);
  line-height: 1;
}
.close-preview-btn:hover {
  color: var(--color-terracotta);
}

.modal-preview-body {
  flex: 1;
  position: relative;
  background-color: #faf6f5;
}

.modal-preview-body iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Animations */
@keyframes laserScan {
  0% { top: 10%; }
  50% { top: 90%; }
  100% { top: 10%; }
}

/* Responsive Styles */
@media (max-width: 991px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-text-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-stats-row {
    justify-content: center;
  }
  .difference-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .difference-text-content {
    max-width: 100%;
    text-align: center;
  }
  .difference-list {
    align-items: center;
  }
  .difference-list li {
    text-align: left;
    max-width: 500px;
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .navbar-container {
    padding: 12px 20px;
  }
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--bg-primary);
    flex-direction: column;
    padding: 40px 20px;
    gap: 30px;
    transition: left 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-top: 1px solid var(--border-color);
  }
  .nav-menu.active {
    left: 0;
  }
  .menu-toggle {
    display: flex;
  }
  
  /* Menu Hamburger Animation */
  .menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .hero-title {
    font-size: 2.6rem;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 35px;
    text-align: center;
  }
  .footer-brand-column .logo {
    margin: 0 auto 15px auto;
  }
  .footer-tagline {
    margin: 0 auto;
  }
  .calc-form .form-row {
    flex-direction: column;
    gap: 15px;
  }
  .calculator-container {
    padding: 25px;
  }
}
