/* ═══ ANDROID SIGNAGE PAGE SPECIFIC STYLES ═══ */

:root {
  --and-primary: #3ddc84;
  --and-dark: #0d2b1a;
  --and-mid: #1a5c38;
  --and-accent: #2bb873;
  --and-pale: #f0faf4;
  --and-text: #1a202c;
  --and-muted: #4a5568;
  --and-border: #e2e8f0;
}

/* ═══ HERO ═══ */
.and-hero {
  margin-top: 100px;
  min-height: 88vh;
  background: linear-gradient(135deg, #f0faf4 0%, #ffffff 50%, #e6f7ed 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 80px 5% 60px;
}

.and-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 80% 20%, rgba(61, 220, 132, 0.09) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(13, 43, 26, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.and-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.and-orb-1 {
  width: 420px;
  height: 420px;
  top: -120px;
  right: 3%;
  background: radial-gradient(circle, rgba(61, 220, 132, 0.15), transparent 70%);
  animation: andFloat1 8s ease-in-out infinite;
}

.and-orb-2 {
  width: 300px;
  height: 300px;
  bottom: -60px;
  left: 8%;
  background: radial-gradient(circle, rgba(13, 43, 26, 0.1), transparent 70%);
  animation: andFloat2 10s ease-in-out infinite;
}

.and-orb-3 {
  width: 200px;
  height: 200px;
  top: 35%;
  left: 42%;
  background: radial-gradient(circle, rgba(61, 220, 132, 0.08), transparent 70%);
  animation: andFloat3 6s ease-in-out infinite;
}

@keyframes andFloat1 {

  0%,
  100% {
    transform: translate(0, 0)scale(1)
  }

  33% {
    transform: translate(-30px, 40px)scale(1.1)
  }

  66% {
    transform: translate(20px, -20px)scale(0.95)
  }
}

@keyframes andFloat2 {

  0%,
  100% {
    transform: translate(0, 0)scale(1)
  }

  50% {
    transform: translate(40px, -50px)scale(1.15)
  }
}

@keyframes andFloat3 {

  0%,
  100% {
    transform: translate(0, 0)scale(1);
    opacity: .6
  }

  50% {
    transform: translate(-20px, 30px)scale(1.2);
    opacity: 1
  }
}

@keyframes andFadeUp {
  from {
    opacity: 0;
    transform: translateY(32px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.and-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.and-hero-text {
  animation: andFadeUp 0.8s ease both;
}

.and-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
  color: var(--and-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 24px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.and-hero-badge::before {
  content: '●';
  font-size: 0.6rem;
  color: var(--and-primary);
}

.and-hero-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.6rem, 4.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--and-dark);
  margin-bottom: 20px;
  letter-spacing: -0.05em;
}

.and-hero-title span {
  background: linear-gradient(120deg, #3ddc84, #2bb873);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.and-hero-desc {
  font-size: 1.15rem;
  color: var(--and-muted);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
  font-weight: 500;
}

.and-hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ═══ HERO VISUAL ═══ */
.and-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  perspective: 1200px;
  animation: andFadeUp 1s 0.2s ease both;
}

.and-phone-mockup {
  width: 290px;
  height: 520px;
  background: #111;
  border: 10px solid #222;
  border-radius: 44px;
  position: relative;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 0 15px rgba(61, 220, 132, 0.1);
  transform: rotateY(-18deg) rotateX(8deg);
  transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: andHeroFloat 6s ease-in-out infinite;
}

.and-phone-mockup:hover {
  transform: rotateY(0deg) rotateX(0deg) scale(1.05);
  box-shadow: 0 60px 120px rgba(0, 0, 0, 0.6), 0 0 40px rgba(61, 220, 132, 0.2);
}

@keyframes andHeroFloat {

  0%,
  100% {
    transform: rotateY(-18deg) rotateX(8deg) translateY(0);
  }

  50% {
    transform: rotateY(-18deg) rotateX(8deg) translateY(-25px);
  }
}

.and-phone-inner {
  height: 100%;
  background: #000;
  border-radius: 34px;
  overflow: hidden;
  padding: 24px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.and-phone-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(180deg, rgba(61, 220, 132, 0.08) 0%, transparent 100%);
  z-index: 0;
}

.and-app-top {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--and-primary);
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 1;
}

.and-app-top i {
  font-size: 1.2rem;
}

.and-app-top span {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.and-app-content {
  flex: 1;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.and-card-mini {
  height: 64px;
  background: linear-gradient(90deg, #181818, #252525);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.and-card-main {
  height: 160px;
  background: linear-gradient(135deg, var(--and-primary), var(--and-accent));
  border-radius: 20px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(61, 220, 132, 0.25);
}

.and-card-main::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -150%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: rotate(45deg);
  animation: andShimmer 3.5s linear infinite;
}

@keyframes andShimmer {
  0% {
    left: -150%;
  }

  100% {
    left: 150%;
  }
}

.and-bar {
  height: 12px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  margin-bottom: 12px;
}

.and-bar.short {
  width: 65%;
}

.and-app-bottom {
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 15px;
  position: relative;
  z-index: 1;
}

.and-circle {
  width: 34px;
  height: 34px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.and-phone-mockup:hover .and-circle {
  border-color: var(--and-primary);
  background: rgba(61, 220, 132, 0.1);
  box-shadow: 0 0 15px rgba(61, 220, 132, 0.3);
}

.and-floating-node {
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--and-primary);
  font-size: 1.2rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  animation: andNodeFloat 5s ease-in-out infinite;
  z-index: 2;
}

@keyframes andNodeFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

.node-1 {
  top: 8%;
  right: -35px;
  animation-delay: 0s;
}

.node-2 {
  bottom: 15%;
  left: -35px;
  animation-delay: 1.5s;
}

.node-3 {
  top: 45%;
  right: -60px;
  animation-delay: 0.8s;
}

/* Overview */
.and-overview {
  background: #ffffff;
  padding: 100px 5%;
  border-bottom: 1px solid var(--and-border);
}
.and-overview-img-box {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(13, 43, 26, 0.12);
  border: 1px solid var(--and-border);
}

.and-overview-img-box img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 1.2s cubic-bezier(0.33, 1, 0.68, 1);
}

.and-overview-img-box:hover img {
  transform: scale(1.06) rotate(-0.8deg);
}

.and-overview-text p {
  font-size: 1.15rem;
  color: var(--and-muted);
  line-height: 1.85;
  margin-bottom: 20px;
}

.and-check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.and-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.05rem;
  color: var(--and-text);
  font-weight: 500;
}

.and-check-list li i {
  color: var(--and-primary);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Features */
.and-features {
  background: linear-gradient(135deg, #f0faf4, #fff);
  padding: 100px 5%;
  border-bottom: 1px solid var(--and-border);
}

.and-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}

.and-feat-card {
  background: #ffffff;
  border: 1px solid var(--and-border);
  border-radius: 20px;
  padding: 36px 28px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 2px 16px rgba(13, 43, 26, 0.05);
}

.and-feat-card:hover {
  transform: translateY(-8px);
  border-color: var(--and-primary);
  box-shadow: 0 20px 48px rgba(13, 43, 26, 0.1);
}

.and-feat-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--and-pale);
  border: 1px solid rgba(61, 220, 132, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.and-feat-card:hover .and-feat-icon {
  transform: scale(1.15) rotate(-3deg);
}

.and-feat-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--and-dark);
  margin-bottom: 10px;
}

.and-feat-card p {
  font-size: 1rem;
  color: var(--and-muted);
  line-height: 1.7;
}

/* Flow */
.and-flow {
  background: #ffffff;
  padding: 100px 5%;
  border-bottom: 1px solid var(--and-border);
}

.and-flow-diagram {
  background: linear-gradient(135deg, var(--and-dark) 0%, #061408 100%);
  border-radius: 28px;
  padding: 60px 48px;
  box-shadow: 0 30px 80px rgba(13, 43, 26, 0.2);
  position: relative;
  overflow: hidden;
}

.and-flow-diagram::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(61, 220, 132, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.and-flow-title {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.and-flow-title h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.and-flow-title p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 1rem;
}

.and-flow-steps {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  position: relative;
  z-index: 1;
  flex-wrap: nowrap;
}

.and-flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 0;
  padding: 0 8px;
}

.and-flow-node {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: rgba(61, 220, 132, 0.12);
  border: 1.5px solid rgba(61, 220, 132, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: default;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.and-flow-node:hover {
  background: rgba(61, 220, 132, 0.3);
  border-color: var(--and-primary);
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 12px 30px rgba(61, 220, 132, 0.3);
}

.and-flow-node-num {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--and-primary);
  color: var(--and-dark);
  font-size: 0.7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.and-flow-step-label {
  margin-top: 14px;
}

.and-flow-step-label h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.3;
}

.and-flow-step-label p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
}

.and-flow-connector {
  display: flex;
  align-items: flex-start;
  padding-top: 34px;
  flex-shrink: 0;
}

.and-flow-connector-line {
  width: 36px;
  height: 2px;
  background: rgba(61, 220, 132, 0.2);
  position: relative;
  overflow: hidden;
}

.and-flow-connector-line::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--and-primary), transparent);
  animation: andLineFlow 2s linear infinite;
}

@keyframes andLineFlow {
  0% {
    left: -100%
  }

  100% {
    left: 100%
  }
}

.and-flow-connector-line::after {
  content: '';
  position: absolute;
  right: -4px;
  top: -4px;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--and-primary);
  border-right: 2px solid var(--and-primary);
  transform: rotate(45deg);
}

.and-flow-row2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
  gap: 0;
  position: relative;
  z-index: 1;
}

.and-flow-vert-arrow {
  width: 2px;
  height: 28px;
  background: linear-gradient(180deg, rgba(61, 220, 132, 0.4), rgba(61, 220, 132, 0.1));
  margin: 0 auto;
  position: relative;
}

.and-flow-vert-arrow::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: -4px;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid rgba(61, 220, 132, 0.5);
  border-right: 2px solid rgba(61, 220, 132, 0.5);
  transform: rotate(45deg);
}

.and-flow-sub-steps {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 28px 0 0;
}

.and-flow-sub-step {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 20px 24px;
  text-align: center;
  min-width: 150px;
  transition: all 0.3s ease;
}

.and-flow-sub-step:hover {
  background: rgba(61, 220, 132, 0.08);
  border-color: rgba(61, 220, 132, 0.25);
  transform: translateY(-4px);
}

.and-flow-sub-step .and-sub-icon {
  font-size: 1.5rem;
  margin-bottom: 10px;
  display: block;
}

.and-flow-sub-step h5 {
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.and-flow-sub-step p {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
}

/* Specs */
.and-specs {
  background: var(--and-pale);
  padding: 100px 5%;
  border-bottom: 1px solid var(--and-border);
}

.and-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 60px;
  align-items: start;
}

.and-specs-card {
  background: #fff;
  border: 1px solid var(--and-border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(13, 43, 26, 0.05);
}

.and-specs-card-header {
  background: linear-gradient(135deg, var(--and-dark), var(--and-mid));
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.and-specs-card-header i {
  color: var(--and-primary);
  font-size: 1.4rem;
}

.and-specs-card-header h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}

.and-specs-table {
  width: 100%;
  border-collapse: collapse;
}

.and-specs-table tr {
  border-bottom: 1px solid var(--and-border);
}

.and-specs-table tr:last-child {
  border-bottom: none;
}

.and-specs-table td {
  padding: 14px 20px;
  font-size: 0.92rem;
}

.and-specs-table td:first-child {
  color: var(--and-muted);
  font-weight: 600;
  width: 45%;
  background: rgba(240, 250, 244, 0.5);
}

.and-specs-table td:last-child {
  color: var(--and-text);
  font-weight: 500;
}

/* Use cases */
.and-usecases {
  background: #fff;
  padding: 100px 5%;
  border-bottom: 1px solid var(--and-border);
}

.and-usecases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.and-usecase-item {
  background: var(--and-pale);
  border: 1px solid var(--and-border);
  border-radius: 16px;
  padding: 32px 22px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.and-usecase-item:hover {
  transform: translateY(-8px);
  background: #fff;
  border-color: var(--and-primary);
  box-shadow: 0 16px 40px rgba(13, 43, 26, 0.1);
}

.and-usecase-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

.and-usecase-item h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--and-dark);
  margin-bottom: 10px;
}

.and-usecase-item p {
  font-size: 0.9rem;
  color: var(--and-muted);
  line-height: 1.65;
}

/* Stats */
.and-stats {
  background: var(--and-dark);
  padding: 100px 5%;
  position: relative;
  overflow: hidden;
}

.and-stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(61, 220, 132, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.and-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 10;
}

.and-stat-item {
  padding: 48px 28px;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  transition: background 0.3s;
}

.and-stat-item:hover {
  background: rgba(255, 255, 255, 0.09);
}

.and-stat-item h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 10px;
  display: inline-block;
}

.and-stat-item h2 span {
  color: var(--and-primary);
}

.and-stat-item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* CTA */
.and-cta {
  background: linear-gradient(135deg, #f0faf4, #e6f7ed);
  padding: 100px 5%;
  border-bottom: 1px solid var(--and-border);
  text-align: center;
}

.and-cta h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--and-dark);
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.and-cta p {
  font-size: 1.2rem;
  color: var(--and-muted);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.75;
}

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

.btn-primary-android {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #3ddc84, #2bb873);
  color: #0d2b1a;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(61, 220, 132, 0.3);
  border: none;
  cursor: pointer;
}

.btn-primary-android:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(61, 220, 132, 0.4);
}

/* Section labels */
.and-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--and-accent);
  margin-bottom: 14px;
}

.and-section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--and-dark);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.and-section-title span {
  background: linear-gradient(120deg, #3ddc84, #2bb873);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Responsive */
@media (max-width: 1024px) {
  .and-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .and-usecases-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .and-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {

  .and-hero-grid,
  .and-overview-grid,
  .and-specs-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .and-hero-visual {
    order: -1;
  }

  .and-flow-steps {
    flex-wrap: wrap;
    gap: 16px;
  }

  .and-flow-connector {
    display: none;
  }

  .and-overview-img-box img {
    height: auto !important;
    object-fit: contain !important;
  }

  .and-hero-visual {
    order: -1;
  }

  .and-phone-mockup {
    transform: none !important;
    animation: none !important;
    width: 200px;
    height: 360px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {

  .and-features-grid,
  .and-usecases-grid {
    grid-template-columns: 1fr;
  }

  .and-stats-grid {
    grid-template-columns: 1fr;
  }
}