html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  background: #fff;
  color: #222;
  overflow-x: hidden;
}

/* CONTAINER */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

/* HERO */
.tech-intro {
  padding: 140px 8%;
  color: #fff;
  text-align: center;
  position: relative;
  margin-top: var(--navbar-height);
}

.tech-bg {
  background:
    radial-gradient(circle at 20% 30%, rgba(250, 94, 58, 0.25), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(250, 94, 58, 0.15), transparent 40%),
    linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)),
    url("../images/gStoreBanner.avif") center/cover no-repeat;

  background-attachment: fixed;
}

/* ==============================
   INTRO
============================== */
.image-overlay-text {
  position: relative;
  padding: 80px 0;
}

.image-overlay-text__wrap {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.row.flex-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.flex-opposite {
  flex-direction: row-reverse;
}

.image-overlay-text__half {
  flex: 1 1 50%;
  padding: 15px;
}

.image-overlay-text__img img.object-fit {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: transform 0.5s ease;
}

.image-overlay-text__img img.object-fit:hover {
  transform: scale(1.03);
}

.image-overlay-text__text h2 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--dark);
}

.image-overlay-text__text p {
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
}

.image-overlay__btn .btn-primary {
  background-color: var(--primary);
  color: #fff;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.image-overlay__btn .btn-primary:hover {
  background-color: #FA5E3A;
  box-shadow: 0 10px 25px rgba(250, 94, 58, 0.2);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .flex-opposite {
    flex-direction: column;
  }

  .image-overlay-text__half {
    flex: 1 1 100%;
  }

  .image-overlay-text__text h2 {
    font-size: 2rem;
  }

  .image-overlay-text__text p {
    font-size: 1rem;
  }
}

/* SOLUTIONS */
/* ==============================
   SOLUTIONS — APPLE SCROLL
============================== */
.apple-section {
  position: relative;
  height: calc(100vh + 450px);
  background: linear-gradient(to bottom, #fafafa, #ffffff);
  padding-top: 60px;
}

.solutions-header {
  text-align: center;
  margin-bottom: 40px;
}

.solutions-header .section-overline {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(239,130,32,0.08);
  padding: 6px 18px;
  border-radius: 20px;
}

.apple-sticky {
  position: sticky;
  top: var(--navbar-height);
  display: flex;
  flex-direction: column;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  height: calc(100vh - var(--navbar-height));
}

.solutions-header {
  text-align: center;
  margin-bottom: 30px;
  flex-shrink: 0;
  padding-top: 20px;
}

.solutions-header .section-overline {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(239,130,32,0.08);
  padding: 6px 18px;
  border-radius: 20px;
}

.apple-content-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  flex: 1;
  min-height: 0;
}

/* VISUAL */
.apple-visual {
  position: relative;
  width: 45%;
  min-width: 460px;
  height: 70vh;
  min-height: 400px;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(145deg, #f5f5f5, #ebebeb);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}

.apple-visual-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(239,130,32,0.06), transparent 70%);
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.6s ease;
}

.apple-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s ease, transform 0.8s ease;
}

.apple-img.active {
  opacity: 1;
  transform: scale(1);
}

/* TEXT COLUMN */
.apple-text {
  flex: 1;
  position: relative;
  min-height: 400px;
}

.apple-step {
  position: absolute;
  display: flex;
  gap: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.apple-step.active {
  opacity: 1;
  transform: translateY(0);
}

/* TIMELINE INDICATOR */
.step-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-top: 6px;
  flex-shrink: 0;
}

.step-num {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  color: #aaa;
  background: rgba(0, 0, 0, 0.04);
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  transition: all 0.5s ease;
  flex-shrink: 0;
}

.apple-step.active .step-num {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(239,130,32,0.3);
}

.step-line {
  width: 2px;
  flex: 1;
  min-height: 60px;
  background: rgba(0, 0, 0, 0.08);
  transition: background 0.6s ease;
}



.apple-step.active .step-line {
  background: var(--primary);
}

/* STEP BODY */
.step-body {
  flex: 1;
}

.apple-card {
  padding: 30px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.5s ease;
}

.apple-step.active .apple-card {
  border-color: rgba(239,130,32,0.15);
  box-shadow: 0 12px 40px rgba(239,130,32,0.06);
}

.apple-card h2 {
  font-size: 2.2rem;
  line-height: 1.1;
  margin-bottom: 15px;
  letter-spacing: -0.3px;
  color: #111;
}

.apple-step:not(.active) .apple-card h2 {
  color: #bbb;
}

.apple-card p {
  font-size: 1.05rem;
  color: #666;
  line-height: 1.7;
}

.apple-step:not(.active) .apple-card p {
  color: #ccc;
}

.apple-card-img {
  display: none;
}

/* ==============================
   CHECKLIST SECTION
============================= */


/* ==============================
   CHECKLIST SECTION
============================== */
.checklist-section {
  padding: 100px 0;
  background: linear-gradient(to bottom, #ffffff, #f7f7f7);
  font-family: 'Inter', sans-serif;
  color: var(--dark);
}

/* HEADER */
.checklist-header {
  text-align: center;
  margin-bottom: 70px;
}

.checklist-header .section-overline {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(239,130,32,0.08);
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.checklist-header h2 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}

.checklist-header h4 {
  font-size: 1.25rem;
  color: var(--gray);
  max-width: 750px;
  margin: 15px auto 0;
  line-height: 1.7;
}

/* GRID */
.checklist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* ITEM */
.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 25px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
  min-width: 0;
  transition: all 0.4s ease;
}

.checklist-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 220%;
  height: 100%;
  background: linear-gradient(120deg, rgba(239, 130, 32, 0.08), rgba(250, 94, 58, 0.03));
  transform: skewX(-25deg);
  transition: all 0.5s ease;
  pointer-events: none;
}

.checklist-item:hover::before {
  left: 0;
}

.checklist-item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 25px 60px rgba(250, 94, 58, 0.12);
}

/* ICON WRAP */
.check-icon-wrap {
  position: relative;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(239,130,32,0.12), rgba(239,130,32,0.04));
  border-radius: 14px;
  transition: all 0.35s ease;
}

.checklist-item:hover .check-icon-wrap {
  background: linear-gradient(135deg, var(--primary), #d66b15);
  transform: scale(1.08);
}

.check-icon-wrap i {
  font-size: 1.3rem;
  color: var(--primary);
  transition: all 0.35s ease;
}

.checklist-item:hover .check-icon-wrap i {
  color: #fff;
}

.check-number {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: #fff;
  background: var(--primary);
  border-radius: 50%;
  transition: all 0.35s ease;
}

.checklist-item:hover .check-number {
  background: #fff;
  color: var(--primary);
}

/* TEXT */
.checklist-item p {
  margin: 0;
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.7;
}

.checklist-item p span {
  font-weight: 600;
  color: var(--dark);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .checklist-header h2 {
    font-size: 2rem;
  }

  .checklist-header h4 {
    font-size: 1rem;
    max-width: 90%;
  }

  .checklist-grid {
    grid-template-columns: 1fr;
  }

  .checklist-item {
    flex-direction: row;
  }
}

@media (max-width: 480px) {
  .checklist-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .checklist-item p {
    margin-top: 12px;
  }

  .check-icon-wrap {
    align-self: flex-start;
  }
}

/* ==============================
   OMNICHANNEL
============================== */
.image-text.image-text--video {
  padding: 100px 0;
  background: #fff;
}

.image-text__half {
  flex: 1 1 50%;
  padding: 15px;
  position: relative;
}

/* VIDEO IMAGE & EMBED */
.image-text__video {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

.image-text__video img.object-fit {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.image-text__video:hover img.object-fit {
  transform: scale(1.03);
}

/* PLAY ICON */
.image-video-text__link {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(250,94,58,0.9);
  color: #fff;
  font-size: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 0 25px rgba(250,94,58,0.6);
  transition: transform 0.3s ease;
}

.image-video-text__link:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

/* VIDEO EMBED */
.image-text__embed {
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* TEXT */
.image-text__text h2 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text);
}

.image-text__text h2 .accent {
  color: var(--primary);
}

.image-text__text p {
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
}

.image-text__text p a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.image-text__text p a:hover {
  text-decoration: underline;
}

/* CTA BUTTON */
.image-text__text .btn-primary {
  display: inline-block;
  margin-top: 10px;
  background-color: var(--primary);
  color: #fff;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.image-text__text .btn-primary:hover {
  background-color: #FA5E3A;
  box-shadow: 0 10px 25px rgba(250, 94, 58, 0.2);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .image-text--video .row.flex-opposite {
    flex-direction: column;
  }

  .image-text__half {
    flex: 1 1 100%;
  }

  .image-text__text h2 {
    font-size: 2rem;
  }

  .image-text__text p {
    font-size: 1rem;
  }
}

/* CTA */
.cta {
  padding: 140px 0;
  text-align: center;
  background: #111;
  color: white;
}

.cta h2 {
  font-size: 2.5rem;
}

.cta p {
  color: #bbb;
}

/* ANIMATIONS */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .hero h1 {
    font-size: 2.2rem;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .solution {
    flex-direction: column;
  }
}

@media (max-width: 768px) {

  .apple-visual {
    display: none;
  }

  .apple-card-img {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 0 auto 20px;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .mobile-card:hover .apple-card-img {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(250, 94, 58, 0.15);
  }

  .solutions-header {
    margin-bottom: 20px;
  }

  .apple-sticky {
    position: relative;
    top: auto;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    height: auto;
    padding: 0 20px;
  }

  .apple-content-row {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .apple-section {
    height: auto;
    padding: 40px 0;
  }

  .apple-text {
    width: 100%;
    height: auto;
    min-height: auto;
  }

  .apple-step {
    position: relative;
    opacity: 1 !important;
    transform: translateY(0) !important;
    margin-bottom: 24px;
    gap: 0;
    flex-direction: column;
  }

  .step-indicator {
    display: none;
  }

  .step-body {
    width: 100%;
  }

  .apple-card {
    text-align: center;
    padding: 24px 20px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 15px;
    box-shadow: none;
  }

  .apple-step:not(.active) .apple-card {
    opacity: 1;
  }

  .apple-step:not(.active) .apple-card h2 {
    color: #111;
  }

  .apple-step:not(.active) .apple-card p {
    color: #555;
  }

  .apple-card h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    text-align: center;
  }

  .apple-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    text-align: justify;
  }
}

@media (max-width: 900px) {
  /* HERO */
  .tech-intro {
    padding: 60px 5%;
  }

  .tech-title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .tech-subtitle {
    font-size: 1rem;
    max-width: 90%;
  }

  .tech-bg {
    background-attachment: scroll;
  }

  /* APPLE SECTION */
  .apple-section {
    height: auto !important;
    padding: 20px 0;
  }

  .solutions-header {
    margin-bottom: 16px;
  }

  .apple-sticky {
    position: relative !important;
    top: auto !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    height: auto !important;
  }

  .apple-content-row {
    flex-direction: column !important;
    gap: 0 !important;
    width: 100% !important;
  }

  .apple-visual {
    display: none !important;
  }

  .apple-card-img {
    display: block !important;
    width: 100%;
    max-width: 300px;
    margin: 0 auto 20px;
    height: auto;
  }

  .apple-text {
    min-height: auto !important;
  }

  .apple-step {
    position: relative !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
    flex-direction: column !important;
    gap: 0 !important;
    margin-bottom: 20px;
  }

  .step-indicator {
    display: none !important;
  }

  .step-body {
    width: 100% !important;
  }

  .apple-step:not(.active) .apple-card h2 {
    color: #111 !important;
  }

  .apple-step:not(.active) .apple-card p {
    color: #555 !important;
  }

  .fade-in {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .image-overlay-text__half,
  .image-overlay-text__text,
  .image-overlay-text__img {
    flex: 1 1 100% !important;
  }

  .row.flex-row,
  .flex-opposite {
    flex-direction: column !important;
  }

  .image-overlay-text__text h2 {
    font-size: 1.8rem !important;
  }

  .image-overlay-text__text p {
    font-size: 1rem !important;
  }
}