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

body {
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #222;
  line-height: 1.5;
}

main {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

section {
  padding: 64px 0;
}

header, footer {
  width: 100%;
  padding: 32px 0;
  background: #fff;
} 

.site-header {
  width: 100%;
  background: transparent;
  box-shadow: none;
  padding: 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 1rem;
}
.logo {
  height: 36px;
  width: auto;
  margin-right: 1.5em;
}
.announcement {
  flex: 1;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  font-style: italic;
  color: #222;
  font-family: 'Inter', sans-serif;
}
.contact-btn {
  margin-left: 1.5em;
  font-size: 1.05rem;
  padding: 0.7em 2.7em;
  background: linear-gradient(90deg, #ffb199 0%, #ff0844 100%);
  color: #fff;
  font-weight: 700;
  border-radius: 2em;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(255, 8, 68, 0.08);
  transition: background 0.2s, box-shadow 0.2s;
  border: none;
  display: inline-block;
}
.contact-btn:hover {
  background: linear-gradient(90deg, #ff0844 0%, #ffb199 100%);
  box-shadow: 0 4px 16px rgba(255, 8, 68, 0.15);
} 

.header-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 999px; /* More pill-like */
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.10), 0 2px 8px rgba(255, 8, 68, 0.08);
  padding: 0.7em 2.5em;
  max-width: 1100px;
  margin: 40px auto 0 auto;
  width: 95%;
  position: relative;
} 

@media (max-width: 700px) {
  .header-pill {
    flex-direction: column;
    align-items: stretch;
    padding: 0.7em 1em;
    margin: 16px auto 0 auto;
    width: 98%;
    max-width: 98vw;
    gap: 0.5em;
  }
  .header-pill .logo {
    margin: 0 auto 0.5em auto;
    display: block;
  }
  .header-pill .announcement {
    text-align: center;
    font-size: 1rem;
    margin-bottom: 0.5em;
  }
  .header-pill .contact-btn {
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    padding: 0.7em 0;
  }
}

.hero-section {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 32px;
}
.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  pointer-events: none;
  border-bottom-left-radius: 48px;
  border-bottom-right-radius: 48px;
  overflow: hidden;
}
.hero-bg-img {
  width: 100%;
  max-width: 1600px;
  height: auto;
  object-fit: cover;
  opacity: 1;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 8px 16px 64px 16px;
}
.hero-title {
  font-size: 2.8rem;
  font-weight: 900;
  color: #222;
  margin-bottom: 24px;
  line-height: 1.1;
}
.hero-subtitle {
  font-size: 1.25rem;
  color: #444;
  margin-bottom: 36px;
  font-weight: 500;
}
.hero-cta {
  display: inline-block;
  background: #fff;
  color: #222;
  font-weight: 700;
  font-size: 1.15rem;
  padding: 1em 2.5em;
  border-radius: 2em;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.2s, box-shadow 0.2s;
  border: none;
  border: 2px solid #fff;
}
.hero-cta:hover {
  background: #f7f7f7;
  color: #ff0844;
  box-shadow: 0 4px 16px rgba(255, 8, 68, 0.10);
  border: 2px solid #ffb199;
} 

.cart-conversions-section {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  margin-top: -180px;
  margin-bottom: 64px;
}
.cart-card {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  border-radius: 40px;
  background: transparent;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10), 0 16px 40px 0 rgba(0,0,0,0.04);
  overflow: hidden;
  position: relative;
}
.cart-card::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 160px;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, #f5f5f5 90%, #f5f5f5 100%);
  z-index: 10;
  border-radius: 0 0 40px 40px;
}
.cart-card-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
}
.cart-card-fade {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 80px;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 100%);
  border-radius: 0 0 40px 40px;
} 

.monetization-section {
  width: 100%;
  background: #fff;
  padding: 96px 0 96px 0;
}
.monetization-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 96px;
  padding: 0 1rem;
}
.monetization-text {
  flex: 1 1 0;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.monetization-text .contact-btn {
  margin-left: 0;
}
.monetization-title {
  font-size: 2.1rem;
  font-weight: 900;
  color: #222;
  margin-bottom: 24px;
  line-height: 1.15;
}
.monetization-desc {
  font-size: 1.15rem;
  color: #444;
  margin-bottom: 32px;
  font-weight: 500;
}
.monetization-image {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-width: 0;
  min-height: 380px;
  background: transparent;
  box-shadow: none;
}
.monetization-bg-rect {
  position: absolute;
  left: 50%;
  top: 55%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 520px;
  background: transparent;
  box-shadow: none;
}
.monetization-mockup {
  position: relative;
  z-index: 1;
  width: 560px;
  max-width: 100%;
  height: auto;
  box-shadow: 0 12px 48px 0 rgba(0,0,0,0.10);
  border-radius: 18px;
  margin-bottom: 0;
  background: transparent;
  box-shadow: none;
}
@media (max-width: 1200px) {
  .monetization-bg-rect {
    width: 80vw;
    height: 44vw;
    min-width: 320px;
    min-height: 180px;
  }
  .monetization-mockup {
    width: 48vw;
    min-width: 220px;
  }
}
@media (max-width: 900px) {
  .monetization-section {
    padding: 64px 0 64px 0;
  }
  .monetization-content {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }
  .monetization-text, .monetization-image {
    max-width: 100%;
    align-items: center;
  }
  .monetization-text {
    align-items: center;
  }
  .monetization-text .contact-btn {
    margin-left: 0;
  }
  .monetization-mockup {
    max-width: 90vw;
    width: 100%;
  }
  .monetization-bg-rect {
    width: 90vw;
    height: 48vw;
    min-width: 220px;
    min-height: 120px;
  }
} 

.performance-section {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  min-height: 520px;
  padding: 96px 0 96px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
}
.performance-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100%;
  z-index: 0;
  background: url('Assets/submitbackground.png') center center/cover no-repeat;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}
.performance-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 72px;
  width: 100%;
  padding: 0 1rem;
}
.performance-text {
  flex: 1 1 0;
  max-width: 520px;
  color: #222;
}
.performance-title {
  font-size: 2.3rem;
  font-weight: 900;
  margin-bottom: 32px;
  line-height: 1.1;
  color: #222;
}
.performance-list {
  font-size: 1.15rem;
  font-weight: 500;
  color: #444;
  list-style: disc inside;
  margin-left: 0;
  margin-bottom: 0;
  padding-left: 0;
}
.performance-list li {
  margin-bottom: 18px;
  line-height: 1.6;
}
.performance-image {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.performance-mockup {
  width: 600px;
  max-width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  border: none;
  box-shadow: none;
  background: transparent;
}
@media (max-width: 900px) {
  .performance-section {
    padding: 64px 0 64px 0;
  }
  .performance-content {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }
  .performance-text, .performance-image {
    max-width: 100%;
    align-items: center;
  }
  .performance-mockup {
    max-width: 90vw;
    width: 100%;
  }
} 

.shoppable-section {
  width: 100%;
  background: #fff;
  padding: 96px 0 96px 0;
}
.shoppable-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 72px;
  padding: 0 1rem;
}
.shoppable-text {
  flex: 1 1 0;
  max-width: 520px;
}
.shoppable-title {
  font-size: 2.3rem;
  font-weight: 900;
  color: #222;
  margin-bottom: 32px;
  line-height: 1.1;
}
.shoppable-desc {
  font-size: 1.15rem;
  color: #444;
  margin-bottom: 24px;
  font-weight: 500;
}
.shoppable-image {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: transparent;
  box-shadow: none;
  min-height: 380px;
}
.shoppable-bg-rect {
  position: absolute;
  left: 50%;
  top: 55%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 520px;
  background: transparent;
  box-shadow: none;
}
.shoppable-mockup {
  position: relative;
  z-index: 1;
  width: 520px;
  max-width: 100%;
  height: auto;
  box-shadow: 0 12px 48px 0 rgba(0,0,0,0.10);
  border-radius: 18px;
  margin-bottom: 0;
  background: transparent;
  box-shadow: none;
}
@media (max-width: 1200px) {
  .shoppable-bg-rect {
    width: 80vw;
    height: 44vw;
    min-width: 320px;
    min-height: 180px;
  }
  .shoppable-mockup {
    width: 48vw;
    min-width: 220px;
  }
}
@media (max-width: 900px) {
  .shoppable-section {
    padding: 64px 0 64px 0;
  }
  .shoppable-content {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }
  .shoppable-text, .shoppable-image {
    max-width: 100%;
    align-items: center;
  }
  .shoppable-mockup {
    max-width: 90vw;
    width: 100%;
  }
} 

.why-section {
  width: 100%;
  background: linear-gradient(180deg, #fff 0%, #ffe5e0 100%);
  border-radius: 32px;
  margin: 0 auto 64px auto;
  padding: 72px 0 56px 0;
  display: flex;
  justify-content: center;
}
.why-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding: 0 1.5rem;
}
.why-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
}
.why-subheading {
  color: #ff6f4d;
  font-weight: 700;
  letter-spacing: 1.5px;
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.why-title {
  font-size: 2.2rem;
  font-weight: 900;
  color: #222;
  margin-bottom: 48px;
}
.why-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 32px;
  margin: 0 auto;
  max-width: 1000px;
}
.why-feature {
  background: none;
  border-radius: 18px;
  padding: 0 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.why-feature-icon {
  background: transparent;
  box-shadow: none;
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 50%;
  padding: 0;
  display: block;
}
.why-feature-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}
.why-feature-desc {
  font-size: 1rem;
  color: #444;
  font-weight: 500;
}
@media (max-width: 900px) {
  .why-features {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 500px;
  }
  .why-section {
    padding: 48px 0 32px 0;
  }
} 

.getstarted-section {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  min-height: 520px;
  padding: 96px 0 24px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
}
.getstarted-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100%;
  z-index: 0;
  background: url('Assets/submitbackground.png') center center/cover no-repeat;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}
.getstarted-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 72px;
  width: 100%;
  padding: 0 1rem;
}
.getstarted-text {
  flex: 1 1 0;
  max-width: 520px;
  color: #222;
}
.getstarted-title {
  font-size: 2.3rem;
  font-weight: 900;
  margin-bottom: 32px;
  line-height: 1.1;
  color: #222;
}
.getstarted-desc {
  font-size: 1.15rem;
  font-weight: 500;
  color: #444;
  margin-bottom: 24px;
}
.getstarted-btn {
  display: inline-block;
  background: #fff;
  color: #222;
  font-weight: 700;
  font-size: 1.15rem;
  padding: 1em 2.5em;
  border-radius: 2em;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.2s, box-shadow 0.2s;
  border: none;
  border: 2px solid #fff;
  margin-top: 32px;
}
.getstarted-btn:hover {
  background: #f7f7f7;
  color: #ff0844;
  box-shadow: 0 4px 16px rgba(255, 8, 68, 0.10);
  border: 2px solid #ffb199;
}
.getstarted-image {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.getstarted-mockup {
  width: 600px;
  max-width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  border: none;
  box-shadow: none;
  background: transparent;
}
@media (max-width: 900px) {
  .getstarted-section {
    padding: 64px 0 64px 0;
  }
  .getstarted-content {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }
  .getstarted-text, .getstarted-image {
    max-width: 100%;
    align-items: center;
  }
  .getstarted-mockup {
    max-width: 90vw;
    width: 100%;
  }
} 

.site-footer {
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: url('Assets/footerbackground.png') center center/cover no-repeat;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: #fff;
  padding: 56px 0 0 0;
  position: relative;
}
.footer-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  gap: 48px;
}
.footer-left {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-logo {
  width: 120px;
  height: auto;
  margin-bottom: 18px;
}
.footer-address {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 0;
}
.footer-links {
  display: flex;
  gap: 64px;
}
.footer-link-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-link-title {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.footer-link {
  color: #fff;
  text-decoration: none;
  font-size: 1.08rem;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-link:hover {
  color: #ffe5e0;
  text-decoration: underline;
}
.footer-bottom {
  margin-top: 40px;
  text-align: center;
}
.footer-divider {
  border: none;
  border-top: 1px solid #fff;
  opacity: 0.3;
  margin-bottom: 18px;
}
.footer-copyright {
  font-size: 1.08rem;
  color: #fff;
  margin-bottom: 18px;
}
@media (max-width: 900px) {
  .footer-main {
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
  }
  .footer-left, .footer-links, .footer-link-col {
    align-items: center;
  }
  .footer-links {
    flex-direction: column;
    gap: 24px;
  }
} 

.contact-body {
  min-height: 100vh;
  font-family: 'Inter', sans-serif;
  position: relative;
  background: none;
}
.contact-bg {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  background: url('Assets/submitbackground.png') center center/cover no-repeat;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}
.contact-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 48px auto;
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  padding: 48px 32px 32px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-title {
  font-size: 2.3rem;
  font-weight: 900;
  color: #ff5e3a;
  text-align: center;
  margin-bottom: 12px;
}
.contact-subtitle {
  font-size: 1.15rem;
  color: #444;
  text-align: center;
  margin-bottom: 32px;
  font-weight: 600;
  text-shadow: none;
}
.contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-row {
  display: flex;
  gap: 24px;
  width: 100%;
}
.contact-field {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-field-full {
  flex: 2 1 0;
}
.contact-form label {
  font-weight: 700;
  color: #222;
  font-size: 1.05rem;
}
.contact-form input,
.contact-form textarea {
  font-family: 'Inter', sans-serif;
  font-size: 1.08rem;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  background: #fafafa;
  color: #222;
  outline: none;
  transition: border 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border: 2px solid #ffb199;
}
.contact-form textarea {
  min-height: 64px;
  resize: vertical;
}
.contact-url-field {
  display: flex;
  align-items: center;
  background: #fafafa;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 0 0 0 8px;
}
.contact-url-prefix {
  color: #888;
  font-size: 1.08rem;
  margin-right: 2px;
}
.contact-url-field input {
  border: none;
  background: transparent;
  padding-left: 0;
  width: 100%;
}
.contact-submit {
  margin: 32px auto 0 auto;
  display: block;
  width: 60%;
  max-width: 340px;
  background: linear-gradient(90deg, #ffb199 0%, #ff0844 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1.15rem;
  padding: 0.9em 0;
  border-radius: 2em;
  text-align: center;
  border: none;
  box-shadow: 0 2px 8px rgba(255, 8, 68, 0.08);
  transition: background 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.contact-submit:hover {
  background: linear-gradient(90deg, #ff0844 0%, #ffb199 100%);
  box-shadow: 0 4px 16px rgba(255, 8, 68, 0.15);
}
@media (max-width: 700px) {
  .contact-container {
    padding: 32px 8px 24px 8px;
    border-radius: 18px;
  }
  .contact-row {
    flex-direction: column;
    gap: 0;
  }
  .contact-submit {
    width: 100%;
    max-width: 100%;
  }
} 

.cart-card,
.cart-card-img,
.cart-card * {
  background: transparent !important;
} 