/* ── Smooth Scroll ── */
html { scroll-behavior: smooth; }

/* ── Scroll To Top Button ── */
#scroll-top-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366F1, #8b5cf6);
  color: #fff;
  font-size: 1.3rem;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(99,102,241,0.5);
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
}

#scroll-top-btn.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

#scroll-top-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(99,102,241,0.6);
}

/* ── All Sections Below Hero ── */

/* ── Shared Section Styles ── */
section {
  position: relative;
  z-index: 5;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 30px;
  background: #1e1b4b;
  border: 1px solid #4338ca;
  color: #a5b4fc;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.section-title span {
  background: linear-gradient(135deg, #a5b4fc, #6366F1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-sub {
  font-size: 1.05rem;
  color: #fff;
  line-height: 1.75;
  max-width: 520px;
}

/* ── Stats Row ── */
.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: #1e1b4b;
  border-top: 1px solid #4338ca;
  border-bottom: 1px solid #4338ca;
  padding: 24px 6vw;
  position: relative;
  z-index: 10;
  flex-wrap: wrap;
}

.st-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 3vw;
}

.st-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.st-label {
  font-size: 12px;
  color: #a0a3c0;
  font-weight: 500;
}

.st-divider {
  width: 1px;
  height: 36px;
  background: #4338ca;
}

/* ── How It Works ── */
.how-it-works {
  padding: 80px 6vw;
}

.hiw-box {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: stretch;
  gap: 0;
  background: #6366F1;
  border-radius: 120px;
  overflow: hidden;
  border: none;
  box-shadow: 0 8px 60px rgba(0,0,0,0.5);
}


.hiw-box-blue .scan-imgs {
  background: linear-gradient(135deg, #0f172a, #1e3a8a, #1d4ed8);
  border-radius: 70px;
  margin: 28px;
}

.scan-imgs {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1.5rem 1rem 0;
  overflow: hidden;
}

.scan-phones-row {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.hiw-video {
  background: linear-gradient(160deg, #3B1F2F, #8C3172, #DE44B6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  margin: 28px;
  border-radius: 70px;
  
}

.hiw-video-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

/* Video: full → shrink to right */
.hiw-video-wrap video {
  animation: videoShrink 20s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

@keyframes videoShrink {
  0%    { transform: scale(1) translateX(0); }
  50%   { transform: scale(1) translateX(0); }
  57%   { transform: scale(0.9) translateX(35%); }
  88%   { transform: scale(0.9) translateX(35%); }
  95%   { transform: scale(1) translateX(0); }
  100%  { transform: scale(1) translateX(0); }
}

/* Widgets on left side */
.vid-widget {
  position: absolute;
  left: 8%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  min-width: 180px;
  background: #ffffff;
  border-radius: 40px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  border: none;
  margin-top: 20px;
}

.vid-widget::before {
  content: '';
  position: absolute;
  width: 55px;
  height: 55px;
  background: #ffffff;
  border-radius: 50%;
  top: -28px;
  left: 25px;
  box-shadow: 0 -3px 8px rgba(0,0,0,0.08);
  z-index: -1;
}

.vid-widget::after {
  content: '';
  position: absolute;
  width: 38px;
  height: 38px;
  background: #ffffff;
  border-radius: 50%;
  top: -18px;
  left: 65px;
  box-shadow: 0 -3px 8px rgba(0,0,0,0.06);
  z-index: -1;
}

.vw-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6366f1;
  flex-shrink: 0;
}

.vw-arrow {
  font-size: 0.85rem;
  color: #999;
  margin-left: auto;
}

.vid-widget-1 { top: 18%; animation: allWidgets 20s ease-in-out infinite; }
.vid-widget-2 { top: 36%; animation: allWidgets 20s ease-in-out infinite; }
.vid-widget-3 { top: 54%; animation: allWidgets 20s ease-in-out infinite; }
.vid-widget-4 { top: 72%; animation: allWidgets 20s ease-in-out infinite; }

@keyframes allWidgets {
  0%,57%  { opacity: 0; transform: translateX(-30px) scale(0.8); }
  63%     { opacity: 1; transform: translateX(0) scale(1); }
  85%     { opacity: 1; transform: translateX(0) scale(1); }
  90%     { opacity: 0; transform: translateX(-30px) scale(0.8); }
  100%    { opacity: 0; }
}

.vw-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #1a1a2e;
  letter-spacing: 0.3px;
  flex: 1;
}

.video-annotation {
  position: absolute;
  top: 8%;
  right: -10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  transform: translateX(100%);
}

.annot-text {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

.annot-arrow {
  width: 60px;
  height: 40px;
  transform: scaleX(-1);
  margin-left: 8px;
}

.hiw-video video {
  width: auto;
  height: 100%;
  max-height: 480px;
  border-radius: 16px;
  display: block;
}


.hiw-content {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border-radius: 0;
  overflow: hidden;
}

.hiw-heading {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.hiw-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
}

.hiw-steps {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.hiw-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.hiw-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366F1, #8b5cf6);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hiw-step h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.hiw-step p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.hiw-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  background: #fff;
  color: #0d0b1f;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 4px;
  text-decoration: none;
  width: fit-content;
  margin-top: 0.5rem;
  transition: opacity 0.2s;
}

.hiw-btn:hover { opacity: 0.88; }


/* ── Shared Box Section System ── */
.sec-wrap {
  padding: 50px 6vw;
}

.sec-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 0;
  background: #6366F1;
  border-radius: 120px;
  overflow: hidden;
  min-height: 250px;
  border: none;
  box-shadow: 0 8px 60px rgba(0,0,0,0.5);
}

.sec-left {
  padding: 1.5rem;
  border-radius: 0;
  overflow: hidden;
}

.sec-box-reverse {
  direction: rtl;
}

.sec-box-reverse > * {
  direction: ltr;
}

.sec-box-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
  padding: 3rem;
}

.sec-center-all {
  align-items: center;
  text-align: center;
}

.sec-left {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.sec-right {
  padding: 3rem;
  background: #312e81;
  height: 100%;
  display: flex;
  align-items: center;
}

.sec-heading {
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.sec-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
}

.sec-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  width: 100%;
}


/* Features Left List */
.sec-feat-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sec-feat-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
}

.sec-feat-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
}

/* Features Visual Right Side */
.feat-visual {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  height: 100%;
}

.feat-vis-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 0.2s;
}

.feat-vis-card:last-child {
  border-bottom: none;
}

.feat-vis-card:hover {
  background: rgba(255,255,255,0.04);
}

.feat-vis-card > span {
  font-size: 1.8rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: #312e81;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feat-vis-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.feat-vis-card p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
}

/* ── Features ── */
.features {
  padding: 100px 6vw;
}

.features-header {
  margin-bottom: 3.5rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feat-card {
  padding: 2rem;
  background: #0f172a;
  border: 1px solid #312e81;
  border-radius: 20px;
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
  cursor: default;
}

.feat-card:hover {
  border-color: #6366F1;
  background: #1a1a3a;
  transform: translateY(-4px);
}

.feat-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #1e1b4b;
  border: 1px solid #4338ca;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}

.feat-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.6rem;
}

.feat-card p {
  font-size: 0.875rem;
  color: #fff;
  line-height: 1.7;
}

.feat-badge {
  display: inline-block;
  margin-top: 0.8rem;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  background: #1e1b4b;
  border: 1px solid #6366F1;
  color: #a5b4fc;
}



/* ── Blog ── */
.blog-section {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.blog-header { text-align: center; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
}

.blog-card {
  background: #6366F1;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  border: none;
  box-shadow: 0 8px 60px rgba(0,0,0,0.5);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 70px rgba(0,0,0,0.6);
}

.blog-img {
  height: 180px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.blog-cuisine {
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.2);
}

.blog-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
  background: rgba(0,0,0,0.2);
}

.blog-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
}

.blog-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.blog-meta {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-top: auto;
}

/* ── Download CTA ── */
.download-cta {
  padding: 100px 6vw;
  text-align: center;
  position: relative;
  z-index: 5;
}

.cta-inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
}

.cta-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: 30px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.cta-heading {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.cta-heading span {
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
}

.cta-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  max-width: 480px;
}

.cta-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}

.cta-btn-store {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  background: #ffffff;
  color: #0d0b1f;
  border-radius: 14px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.cta-btn-store:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.cta-btn-store svg {
  fill: #0d0b1f;
  flex-shrink: 0;
}

.store-label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  color: rgba(13,11,31,0.6);
  line-height: 1;
}

.store-name {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: #0d0b1f;
  line-height: 1.3;
}

/* ── Contact Us ── */
.contact-section {
  position: relative;
  z-index: 5;
  padding: 60px 6vw;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  align-items: start;
  gap: 0;
  background: #6366F1;
  border-radius: 100px;
  overflow: hidden;
  box-shadow: 0 8px 60px rgba(0,0,0,0.5);
}

.contact-left {
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 30px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  width: fit-content;
}

.contact-heading {
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.contact-sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 0.5rem;
}

.contact-info-item {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}

.contact-right {
  background: rgba(0,0,0,0.2);
  padding: 3.5rem;
  height: 100%;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-field label {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  padding: 12px 16px;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  color: #fff;
  font-size: 0.9rem;
  font-family: 'Segoe UI', sans-serif;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}

/* ── Custom Select Dropdown ── */
.custom-select {
  position: relative;
  width: 100%;
  user-select: none;
}

.custom-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.custom-select.open .custom-select-trigger {
  border-color: #6366F1;
  background: rgba(99,102,241,0.12);
  box-shadow: 0 0 0 3px rgba(99,102,241,0.15);
  border-radius: 12px 12px 0 0;
}

.custom-select-value {
  font-size: 0.9rem;
  font-family: 'Segoe UI', sans-serif;
  color: rgba(255,255,255,0.4);
}

.custom-select.selected .custom-select-value {
  color: #fff;
}

.custom-select-arrow {
  color: rgba(255,255,255,0.5);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.custom-select.open .custom-select-arrow {
  transform: rotate(180deg);
  color: #a5b4fc;
}

.custom-select-dropdown {
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: #1e1b4b;
  border: 1.5px solid #6366F1;
  border-top: none;
  border-radius: 0 0 12px 12px;
  overflow: hidden;
  z-index: 100;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.25s ease, opacity 0.2s ease;
  pointer-events: none;
}

.custom-select.open .custom-select-dropdown {
  max-height: 220px;
  opacity: 1;
  pointer-events: all;
}

.custom-select-option {
  padding: 11px 16px;
  font-size: 0.9rem;
  font-family: 'Segoe UI', sans-serif;
  color: rgba(255,255,255,0.75);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.custom-select-option:last-child {
  border-bottom: none;
}

.custom-select-option:hover {
  background: rgba(99,102,241,0.25);
  color: #fff;
}

.custom-select-option.active {
  background: rgba(99,102,241,0.35);
  color: #a5b4fc;
  font-weight: 600;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(255,255,255,0.3);
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.12);
}

.contact-field textarea {
  resize: none;
}

.contact-btn {
  padding: 14px 32px;
  background: #fff;
  color: #0d0b1f;
  font-size: 0.95rem;
  font-weight: 800;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-family: 'Segoe UI', sans-serif;
  transition: opacity 0.2s, transform 0.2s;
  width: 100%;
  margin-top: 0.3rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.contact-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .contact-inner { grid-template-columns: 1fr; border-radius: 40px; }
  .contact-row   { grid-template-columns: 1fr; }
  .contact-left, .contact-right { padding: 2rem; }
}

/* ── Newsletter ── */
.newsletter-section {
  position: relative;
  z-index: 5;
  padding: 60px 6vw;
}

.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  background: #6366F1;
  border: none;
  border-radius: 100px;
  padding: 3rem 3.5rem;
  box-shadow: 0 8px 60px rgba(0,0,0,0.5);
}

.newsletter-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 30px;
  background: rgba(99,102,241,0.15);
  border: 1px solid rgba(99,102,241,0.3);
  color: #a5b4fc;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
  width: fit-content;
}

.newsletter-heading {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  letter-spacing: -0.5px;
}

.newsletter-sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.newsletter-input {
  flex: 1;
  padding: 14px 18px;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  color: #fff;
  font-size: 0.9rem;
  font-family: 'Segoe UI', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}

.newsletter-input::placeholder {
  color: rgba(255,255,255,0.35);
}

.newsletter-input:focus {
  border-color: #6366F1;
}

.newsletter-btn {
  padding: 14px 26px;
  background: #ffffff;
  color: #0d0b1f;
  font-size: 0.9rem;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-family: 'Segoe UI', sans-serif;
  transition: opacity 0.2s, transform 0.2s;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.newsletter-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.newsletter-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

@media (max-width: 768px) {
  .newsletter-inner {
    grid-template-columns: 1fr;
    padding: 2rem;
  }
  .newsletter-form { flex-direction: column; }
}

/* ── Wave Divider ── */
.wave-divider {
  position: relative;
  z-index: 5;
  line-height: 0;
  overflow: visible;
}

.wave-boat {
  position: absolute;
  width: 220px;
  left: 50%;
  transform: translateX(-50%);
  bottom: -15px;
  z-index: 10;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.4));
  animation: boatFloat 4s ease-in-out infinite;
}

@keyframes boatFloat {
  0%   { transform: translateX(calc(-50% - 40px)) rotate(-1.5deg); }
  50%  { transform: translateX(calc(-50% + 40px)) rotate(1.5deg); }
  100% { transform: translateX(calc(-50% - 40px)) rotate(-1.5deg); }
}

.wave-divider svg {
  width: 100%;
  height: 80px;
  display: block;
}

.wave-path-1 {
  fill: #000000;
  opacity: 0.7;
  animation: waveMove1 6s ease-in-out infinite;
  transform-origin: center;
}

.wave-path-2 {
  fill: #000000;
  opacity: 0.4;
  animation: waveMove2 8s ease-in-out infinite;
  transform-origin: center;
}

@keyframes waveMove1 {
  0%, 100% { d: path("M0,40 C240,80 480,0 720,40 C960,80 1200,0 1440,40 L1440,80 L0,80 Z"); }
  50%       { d: path("M0,20 C240,60 480,20 720,50 C960,20 1200,60 1440,20 L1440,80 L0,80 Z"); }
}

@keyframes waveMove2 {
  0%, 100% { d: path("M0,55 C200,20 440,70 720,50 C1000,30 1240,65 1440,45 L1440,80 L0,80 Z"); }
  50%       { d: path("M0,35 C200,65 440,30 720,55 C1000,70 1240,25 1440,60 L1440,80 L0,80 Z"); }
}

/* ── Footer ── */
.footer {
  padding: 60px 6vw 0;
  border-top: none;
  background: #6366F1;
  position: relative;
  z-index: 5;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  width: fit-content;
}

.footer-logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.footer-logo .brand-name {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: all 0.2s;
}

.social-link:hover {
  background: rgba(99,102,241,0.25);
  border-color: rgba(99,102,241,0.5);
  color: #fff;
}

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 500;
}

.footer-col ul li a:hover {
  color: #fff;
}

.footer-info-item {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}

/* Big Discord-style watermark */
.footer-wordmark {
  font-size: clamp(80px, 18vw, 200px);
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  letter-spacing: 2.5vw;
  text-align: left;
  width: 100%;
  user-select: none;
  pointer-events: none;
  margin-top: 1rem;
}

.footer-bottom {
  padding: 20px 0 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* ── Features Images ── */
.hiw-video.features-imgs {
  align-items: flex-end;
  padding: 1.5rem 1rem 0;
  overflow: hidden;
  border-radius: 70px;
  margin: 28px;
  background: linear-gradient(160deg, #064e3b, #059669, #34d399);
}

.sec-box-lifestyle .features-imgs {
  background: linear-gradient(160deg, #3B1F2F, #8C3172, #DE44B6);
}

.feat-phones-row {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.feat-phone {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(29,17,72,0.25);
  border: none;
  transition: transform 0.4s ease;
  flex-shrink: 0;
}

.feat-phone img {
  width: 100%;
  display: block;
}

.feat-phone-side {
  width: 150px;
  animation: phone1Intro 10s ease-in-out infinite;
}

.feat-phone-center {
  width: 190px;
  border: none;
  box-shadow: 0 28px 60px rgba(29,17,72,0.35);
  animation: phone2Intro 10s ease-in-out infinite;
}

.feat-phone-last {
  width: 150px;
  animation: phone3Intro 10s ease-in-out infinite;
}

@keyframes phone1Intro {
  0%    { opacity: 0; transform: rotate(-4deg) translateY(20px); }
  12%   { opacity: 1; transform: rotate(-4deg) translateY(10px); }
  65%   { opacity: 1; transform: rotate(-4deg) translateY(10px); }
  75%   { opacity: 0; transform: rotate(-4deg) translateY(-10px); }
  100%  { opacity: 0; transform: rotate(-4deg) translateY(20px); }
}

@keyframes phone2Intro {
  0%,15%  { opacity: 0; transform: translateY(20px); }
  27%     { opacity: 1; transform: translateY(0); }
  65%     { opacity: 1; transform: translateY(0); }
  75%     { opacity: 0; transform: translateY(-10px); }
  100%    { opacity: 0; transform: translateY(20px); }
}

@keyframes phone3Intro {
  0%,30%  { opacity: 0; transform: rotate(4deg) translateY(20px); }
  42%     { opacity: 1; transform: rotate(4deg) translateY(10px); }
  65%     { opacity: 1; transform: rotate(4deg) translateY(10px); }
  75%     { opacity: 0; transform: rotate(4deg) translateY(-10px); }
  100%    { opacity: 0; transform: rotate(4deg) translateY(20px); }
}


/* ── Scroll Reveal Animation ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ══════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════ */

/* Tablet — 900px */
@media (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .feat-phone-side { width: 120px; }
  .feat-phone-center { width: 150px; }
  .scan-phones-row, .feat-phones-row { gap: 6px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-wordmark { font-size: clamp(60px, 14vw, 160px); letter-spacing: 1.5vw; }
  .cta-heading { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
}

/* Mobile — 768px */
@media (max-width: 768px) {

  .hiw-box, .hiw-box-blue {
    grid-template-columns: 1fr;
    border-radius: 40px;
    overflow: hidden;
  }
  .hiw-video { min-height: 240px; padding: 1.2rem; }
  .hiw-video-wrap { min-height: 240px; }
  .hiw-content { padding: 1.8rem; }

  .sec-box {
    grid-template-columns: 1fr;
    border-radius: 40px;
    overflow: hidden;
  }
  .sec-left { padding: 1.8rem; }
  .hiw-video.features-imgs { margin: 0; min-height: 220px; padding: 1.2rem 1rem 0; }
  .hiw-box-blue .scan-imgs { min-height: 220px; }

  /* Contact */
  .contact-inner {
    grid-template-columns: 1fr;
    border-radius: 40px;
    overflow: hidden;
  }
  .contact-left { padding: 2rem 2rem 1rem; }
  .contact-right { padding: 1rem 2rem 2rem; }
  .contact-row { grid-template-columns: 1fr 1fr; }

  /* Newsletter */
  .newsletter-inner {
    grid-template-columns: 1fr;
    border-radius: 40px;
    padding: 2rem;
    gap: 1.5rem;
  }
  .newsletter-form { flex-direction: column; }
  .newsletter-btn { width: 100%; }

  /* Blog */
  .blog-grid { grid-template-columns: 1fr; }

  /* Sections padding */
  .how-it-works, .sec-wrap, .contact-section,
  .newsletter-section, .download-cta { padding: 36px 5vw; }

  /* Typography */
  .hiw-heading { font-size: clamp(1.5rem, 5vw, 2rem); }
  .sec-heading { font-size: clamp(1.4rem, 4.5vw, 2rem); }

  /* CTA */
  .cta-heading { font-size: clamp(1.5rem, 4vw, 2.2rem); }
  .cta-btns { flex-direction: column; align-items: center; gap: 0.75rem; }
  .cta-btn-store { width: 100%; max-width: 260px; justify-content: center; }

  /* Footer */
  .footer { padding: 40px 5vw 0; }
  .footer-top { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-wordmark { font-size: clamp(48px, 12vw, 120px); letter-spacing: 1vw; text-align: center; }

  /* Wave */
  .wave-boat { width: 140px; }
  .wave-divider svg { height: 60px; }
}

/* Small phone — 480px */
@media (max-width: 480px) {

  .hiw-box, .hiw-box-blue { border-radius: 28px; }
  .sec-box { border-radius: 28px; }
  .hiw-video { min-height: 180px; padding: 1rem; }
  .hiw-video-wrap { min-height: 180px; }
  .hiw-content { padding: 1.5rem; }
  .sec-left { padding: 1.5rem; }
  .hiw-video.features-imgs { min-height: 170px; }
  .hiw-box-blue .scan-imgs { min-height: 170px; }

  .contact-inner { border-radius: 28px; }
  .contact-left, .contact-right { padding: 1.3rem; }
  .contact-row { grid-template-columns: 1fr; }
  .newsletter-inner { border-radius: 28px; padding: 1.3rem; }
  .newsletter-form { flex-direction: column; }

  .hiw-step h4 { font-size: 0.875rem; }
  .hiw-step p { font-size: 0.78rem; }
  .feat-phone-side { width: 85px; }
  .feat-phone-center { width: 108px; }

  .blog-img { height: 140px; }
  .how-it-works, .sec-wrap, .contact-section,
  .newsletter-section, .download-cta { padding: 28px 4vw; }

  .footer { padding: 30px 4vw 0; }
  .footer-top { gap: 1.2rem; }
  .footer-wordmark { font-size: clamp(32px, 9vw, 70px); }

  .wave-boat { width: 100px; }
  .wave-divider svg { height: 50px; }
}
