/* ==========================================================================
   GIGGLE — LIGHT COLOR PALETTE & STYLING
   ========================================================================== */

:root {
  --bg-main: #f8fafc;
  --bg-surface: #fff;
  --bg-card: #fff;

  --text-main: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;

  --purple-accent: #8b5cf6;
  --purple-light: #f3e8ff;
  --purple-weak: #a78bfa;

  --cyan-accent: #06b6d4;
  --cyan-light: #e0f2fe;
  --cyan-weak: #38bdf8;

  --border-color: #e2e8f0;
  --border-focus: #c084fc;

  --shadow-sm: 0 2px 8px rgba(139, 92, 246, .04);
  --shadow-md: 0 10px 25px -5px rgba(139, 92, 246, .08),
               0 8px 10px -6px rgba(0, 0, 0, .03);
  --shadow-lg: 0 20px 30px -10px rgba(139, 92, 246, .12);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --transition: all .3s cubic-bezier(.4, 0, .2, 1);
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

/* TYPOGRAPHY */
.section-header {
  max-width: 650px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.section-subtitle {
  display: inline-block;
  margin-bottom: .75rem;
  padding: .35rem 1rem;
  border-radius: var(--radius-full);
  background: var(--purple-light);
  color: var(--purple-accent);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.section-title {
  margin-bottom: .75rem;
  color: var(--text-main);
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -.02em;
}

.section-description {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.gradient-text {
  background: linear-gradient(135deg, var(--purple-accent), var(--cyan-accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1.75rem;
  border: 0;
  border-radius: var(--radius-full);
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--purple-accent), var(--purple-weak));
  color: #fff;
  box-shadow: 0 4px 15px rgba(139, 92, 246, .25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(139, 92, 246, .35);
}

.btn-secondary {
  background: var(--cyan-light);
  color: var(--cyan-accent);
  border: 1px solid rgba(6, 182, 212, .2);
}

.btn-secondary:hover {
  background: var(--cyan-accent);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--purple-accent);
  border: 1.5px solid var(--purple-weak);
}

.btn-outline:hover {
  background: var(--purple-light);
}

.btn-sm {
  padding: .5rem 1.25rem;
  font-size: .875rem;
}

.btn-block {
  width: 100%;
}

/* HEADER */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  padding: 1.25rem 0;
  background: rgba(248, 250, 252, .8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, .6);
  transition: var(--transition);
}

.navbar.scrolled {
  padding: .75rem 0;
  background: rgba(255, 255, 255, .95);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--text-main);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -.02em;
}

.logo-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  overflow: hidden;
  background: transparent;
}

.logo-badge img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 69px;
  max-height: 69px;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--text-muted);
  font-size: .925rem;
  font-weight: 600;
}

.nav-link:hover,
.nav-link.active {
  color: var(--purple-accent);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
  border: 0;
  background: none;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 2.5px;
  border-radius: 2px;
  background: var(--text-main);
  transition: var(--transition);
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  padding: 9rem 0 5rem;
  background: radial-gradient(
    circle at 10% 20%,
    rgba(243, 232, 255, .5) 0%,
    rgba(224, 242, 254, .3) 90%
  );
}

.hero-bg-shapes .shape {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .6;
}

.shape-1 {
  top: -100px;
  right: -50px;
  width: 350px;
  height: 350px;
  background: var(--purple-weak);
}

.shape-2 {
  bottom: -50px;
  left: -50px;
  width: 300px;
  height: 300px;
  background: var(--cyan-weak);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 3rem;
}

.pill-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.25rem;
  padding: .4rem 1rem;
  border: 1px solid var(--purple-light);
  border-radius: var(--radius-full);
  background: #fff;
  color: var(--purple-accent);
  font-size: .85rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.hero-title {
  margin-bottom: 1.25rem;
  font-size: 3.25rem;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -.03em;
}

.hero-description {
  max-width: 520px;
  margin-bottom: 2rem;
  color: var(--text-muted);
  font-size: 1.1rem;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* HERO CAROUSEL */
.hero-showcase {
  position: relative;
  width: 100%;
}

.revolving-stage {
  position: relative;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .7);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-lg);
}

.orbit-center {
  position: absolute;
  top: -15px;
  right: -15px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan-accent), var(--purple-accent));
  color: #fff;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(6, 182, 212, .3);
  animation: spinSlow 12s linear infinite;
}

@keyframes spinSlow {
  from { transform: rotate(0); }
  to { transform: rotate(360deg); }
}

.carousel-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #fff;
}

.carousel-track {
  display: flex;
  transition: transform .5s ease-in-out;
}

.carousel-slide {
  display: flex;
  flex-direction: column;
  min-width: 100%;
}

.carousel-img-wrapper {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: #f1f5f9;
}

.carousel-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.carousel-slide:hover .carousel-img-wrapper img {
  transform: scale(1.04);
}

.carousel-info {
  padding: 1.25rem;
  background: var(--bg-surface);
}

.carousel-info h3 {
  margin-bottom: .25rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.carousel-info p {
  display: -webkit-box;
  margin-bottom: 1rem;
  overflow: hidden;
  color: var(--text-muted);
  font-size: .875rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.carousel-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price-tag {
  color: var(--text-muted);
  font-size: .8rem;
  font-weight: 600;
}

.price-value {
  display: block;
  color: var(--purple-accent);
  font-size: 1.15rem;
  font-weight: 800;
}

.carousel-btn,
.demo-scroll-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.carousel-btn {
  position: absolute;
  top: 40%;
  z-index: 5;
  width: 38px;
  height: 38px;
  transform: translateY(-50%);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  color: var(--text-main);
  box-shadow: var(--shadow-sm);
}

.carousel-btn:hover {
  background: var(--purple-accent);
  color: #fff;
}

.prev-btn { left: 10px; }
.next-btn { right: 10px; }

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: .75rem 0;
  background: #fff;
}

.indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-color);
  cursor: pointer;
  transition: var(--transition);
}

.indicator.active {
  width: 22px;
  border-radius: 10px;
  background: var(--purple-accent);
}

/* SERVICE CARDS */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--purple-light);
  box-shadow: var(--shadow-md);
}

.service-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #f1f5f9;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.05);
}

.service-card-body {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  padding: 1.5rem;
}

.service-card-body h3 {
  margin-bottom: .5rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.service-card-body p {
  flex-grow: 1;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
  font-size: .9rem;
}

.service-price-block {
  margin-bottom: 1.25rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--border-color);
}

.service-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}

/* POPULAR */
.popular-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.popular-card {
  position: relative;
  overflow: hidden;
  border: 2px solid var(--purple-light);
  border-radius: var(--radius-md);
  background: var(--bg-surface);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.popular-card:hover {
  transform: translateY(-6px);
  border-color: var(--purple-weak);
}

.popular-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  padding: .25rem .75rem;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--purple-accent), var(--cyan-accent));
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
}

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  padding: 1.75rem 1.25rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.pricing-card:hover {
  border-color: var(--purple-accent);
  box-shadow: var(--shadow-md);
}

.pricing-card h3 {
  margin-bottom: .5rem;
  font-size: 1.15rem;
  font-weight: 700;
}

.pricing-card .price-box {
  margin: 1rem 0 1.25rem;
  padding: .75rem;
  border-radius: var(--radius-sm);
  background: var(--purple-light);
}

.pricing-features {
  flex-grow: 1;
  margin-bottom: 1.5rem;
  padding: 0;
  color: var(--text-muted);
  font-size: .85rem;
  text-align: left;
  list-style: none;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .5rem;
}

.pricing-features li i {
  color: var(--cyan-accent);
}

/* STEPS */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.step-card {
  position: relative;
  padding: 2rem 1.5rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  background: var(--bg-surface);
  box-shadow: var(--shadow-sm);
}

.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-bottom: 1.25rem;
  border-radius: 12px;
  background: var(--cyan-light);
  color: var(--cyan-accent);
  font-size: 2rem;
  font-weight: 800;
}

.step-card h3 {
  margin-bottom: .5rem;
  font-size: 1.15rem;
  font-weight: 700;
}

.step-card p {
  color: var(--text-muted);
  font-size: .9rem;
}

/* ORDER FORM */
.order-section {
  background: linear-gradient(180deg, var(--bg-main) 0%, var(--purple-light) 100%);
}

.order-card {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 2.5rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  background: var(--bg-surface);
  box-shadow: var(--shadow-lg);
}

.order-header {
  margin-bottom: 2.5rem;
  text-align: center;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.full-width {
  grid-column: span 2;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: var(--text-main);
  font-size: .875rem;
  font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: .85rem 1rem;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  background: var(--bg-main);
  color: var(--text-main);
  font-size: .95rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--purple-accent);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(139, 92, 246, .1);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-hint {
  color: var(--text-muted);
  font-size: .775rem;
}

.price-badge-box {
  padding: 1rem;
  border: 1px solid rgba(139, 92, 246, .2);
  border-radius: var(--radius-sm);
  background: var(--purple-light);
}

.selected-price-display {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
}

.selected-price-display span {
  color: var(--text-muted);
  font-size: .9rem;
}

.selected-price-display strong {
  color: var(--purple-accent);
  font-size: 1.2rem;
}

.form-actions {
  margin-top: 2rem;
}

.form-disclaimer {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: .8rem;
  text-align: center;
}

/* FILE UPLOAD */
.hidden-file-input {
  display: none !important;
}

.file-upload-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .5rem;
}

.file-preview-list {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-top: .5rem;
}

.file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .5rem .85rem;
  border: 1px solid var(--border-focus);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--text-main);
  font-size: .85rem;
}

.file-item span {
  display: flex;
  align-items: center;
  gap: .5rem;
  max-width: 90%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.remove-file-btn {
  padding: .2rem;
  border: 0;
  background: none;
  color: #ef4444;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
}

.remove-file-btn:hover {
  transform: scale(1.1);
  color: #b91c1c;
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1.5rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  background: var(--bg-surface);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: var(--cyan-accent);
  box-shadow: var(--shadow-md);
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--cyan-light);
  color: var(--cyan-accent);
  font-size: 1.25rem;
}

.contact-card h3 {
  margin-bottom: .25rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.contact-card p {
  margin-bottom: 1.25rem;
  color: var(--text-muted);
  font-size: .9rem;
}

.contact-action {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: var(--purple-accent);
  font-size: .85rem;
  font-weight: 700;
}

/* FOOTER */
.footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border-color);
  background: #fff;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-brand p {
  margin-top: .4rem;
  color: var(--text-muted);
  font-size: .875rem;
}

.copyright {
  color: var(--text-light);
  font-size: .85rem;
}

/* MODAL */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  transition: var(--transition);
}

.modal.active {
  visibility: visible;
  opacity: 1;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, .4);
  backdrop-filter: blur(4px);
}

.modal-container {
  position: relative;
  z-index: 10;
  width: 95%;
  max-width: 950px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-lg);
  transform: scale(.95);
  transition: var(--transition);
}

.modal.active .modal-container {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: var(--bg-main);
  color: var(--text-muted);
  cursor: pointer;
}

.modal-close:hover {
  background: var(--purple-light);
  color: var(--purple-accent);
}

.modal-header-info {
  margin-bottom: 1.5rem;
  text-align: center;
}

.modal-title {
  margin-bottom: .25rem;
  font-size: 1.75rem;
  font-weight: 800;
}

.modal-subtitle {
  color: var(--text-muted);
  font-size: .95rem;
}

/* DEMO CAROUSEL */
.demo-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.demo-carousel-track {
  display: flex;
  gap: 1.5rem;
  width: 100%;
  padding: 1rem 0 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.demo-carousel-track::-webkit-scrollbar {
  display: none;
}

.demo-card {
  display: flex;
  flex: 0 0 45%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  background: var(--bg-main);
  box-shadow: var(--shadow-sm);
  scroll-snap-align: start;
}

.demo-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.demo-card-content {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  padding: 1.25rem;
}

.demo-card-title {
  margin-bottom: .5rem;
  font-size: 1.15rem;
  font-weight: 700;
}

.demo-card-desc {
  flex-grow: 1;
  margin-bottom: 1.25rem;
  color: var(--text-muted);
  font-size: .85rem;
}

.demo-scroll-btn {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 40px;
  height: 40px;
  transform: translateY(-50%);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  background: #fff;
  color: var(--text-main);
  box-shadow: var(--shadow-md);
}

.demo-scroll-btn:hover {
  background: var(--purple-accent);
  color: #fff;
}

.demo-scroll-btn.prev {
  left: -15px;
}

.demo-scroll-btn.next {
  right: -15px;
}

/* TABLET */
@media (max-width: 920px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-description {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .popular-grid {
    grid-template-columns: 1fr;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .container {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .navbar {
    padding: .75rem 0;
  }

  .nav-container {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 0 1rem;
  }

  .logo {
    flex-shrink: 0;
    gap: .45rem;
    font-size: 1.15rem;
  }

  .logo-badge {
    width: 32px;
    height: 32px;
  }

  .nav-actions {
    margin-left: auto;
    flex-shrink: 0;
  }

  .nav-actions > .btn {
    display: none;
  }

  .hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    gap: 4px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: rgba(255, 255, 255, .95);
    box-shadow: var(--shadow-sm);
  }

  .hamburger span {
    width: 19px;
    height: 2px;
    border-radius: 999px;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 1rem;
    width: 250px;
    max-width: calc(100vw - 2rem);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 3px;
    padding: .6rem;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    background: rgba(255, 255, 255, .98);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 18px 45px rgba(15, 23, 42, .14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(.98);
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
    z-index: 1100;
  }

  .nav-menu.active {
    right: 1rem;
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .nav-link {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 42px;
    padding: .65rem .8rem;
    border-radius: 10px;
    color: var(--text-main);
    font-size: .9rem;
    font-weight: 600;
  }

  .nav-link:hover,
  .nav-link.active {
    background: var(--purple-light);
    color: var(--purple-accent);
  }

  .hero {
    width: 100%;
    max-width: 100%;
    padding: 7.5rem 0 3.5rem;
  }

  .hero-grid {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    grid-template-columns: minmax(0, 1fr);
    gap: 2.5rem;
    text-align: center;
  }

  .hero-content,
  .hero-showcase {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .pill-tag {
    display: inline-flex;
    max-width: 100%;
    margin-bottom: 1rem;
    padding: .4rem .75rem;
    font-size: .72rem;
    line-height: 1.4;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .hero-title {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin-bottom: 1rem;
    font-size: clamp(2rem, 9vw, 2.5rem);
    line-height: 1.15;
    letter-spacing: -.025em;
    overflow-wrap: break-word;
  }

  .hero-description {
    width: 100%;
    max-width: 520px;
    min-width: 0;
    margin: 0 auto 1.5rem;
    font-size: .95rem;
    line-height: 1.65;
    overflow-wrap: break-word;
  }

  .hero-cta-group {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    flex-direction: column;
    align-items: stretch;
    gap: .75rem;
  }

  .hero-cta-group .btn {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    white-space: normal;
  }

  .revolving-stage {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: .75rem;
    border-radius: 18px;
  }

  .carousel-container,
  .carousel-track {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .carousel-slide {
    max-width: 100%;
  }

  .carousel-img-wrapper {
    height: 210px;
  }

  .orbit-center {
    top: -10px;
    right: -8px;
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  .section-header {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin-bottom: 2.5rem;
    padding: 0 .25rem;
  }

  .section-title {
    font-size: clamp(1.7rem, 7vw, 2.1rem);
    line-height: 1.2;
    overflow-wrap: break-word;
  }

  .section-description {
    font-size: .92rem;
    overflow-wrap: break-word;
  }

  .services-grid,
  .popular-grid,
  .pricing-grid,
  .steps-grid,
  .contact-grid {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.25rem;
  }

  .form-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .full-width {
    grid-column: span 1;
  }

  .order-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 2rem 1.15rem;
    border-radius: 20px;
  }

  .service-card-actions {
    grid-template-columns: minmax(0, 1fr);
  }

  .demo-card {
    flex: 0 0 85%;
  }

  .demo-scroll-btn {
    display: none;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .copyright {
    font-size: .75rem;
  }
}

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}