/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background: #050c19;
  color: #ffffff;
}

/* ANIMATION KEYFRAMES */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes scaleInUp {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* ANIMATION STATES */
.animate-on-scroll {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

/* Scroll-triggered animations */
.scroll-animate {
  opacity: 0;
}

.scroll-animate.animate[data-animation="fade-left"] {
  animation: fadeInLeft 0.8s ease forwards;
}

.scroll-animate.animate[data-animation="fade-right"] {
  animation: fadeInRight 0.8s ease forwards;
}

.scroll-animate.animate[data-animation="fade-up"] {
  animation: fadeInUp 0.8s ease forwards;
}

.scroll-animate.animate[data-animation="fade-down"] {
  animation: fadeInDown 0.8s ease forwards;
}

/* Staggered items within scroll-animate containers */
.scroll-animate.animate .stagger-item {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.scroll-animate.animate .stagger-item:nth-child(1) {
  animation-delay: 0.05s;
}

.scroll-animate.animate .stagger-item:nth-child(2) {
  animation-delay: 0.15s;
}

.scroll-animate.animate .stagger-item:nth-child(3) {
  animation-delay: 0.25s;
}

.scroll-animate.animate .stagger-item:nth-child(4) {
  animation-delay: 0.35s;
}

/* ===== NAVBAR ===== */
.navbar {
  padding: 20px 60px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  animation: fadeInDown 0.6s ease;
  background: transparent;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 36px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: #b8ff3d;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  color: #d7efe7;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #b8ff3d;
}

.btn-outline {
  border: 1px solid #b8ff3d;
  padding: 10px 20px;
  border-radius: 24px;
  color: #b8ff3d !important;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #b8ff3d;
  color: #062f26 !important;
}

.esc-badge img {
  width: 40px;
  height: auto;
  transition: transform 0.3s ease;
}

.esc-badge:hover img {
  transform: scale(1.1);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  background: url("assets/hero_background.png") center center / cover no-repeat;
  background-attachment: scroll;
  color: #fff;
  overflow: hidden;
}

/* Gradient overlay from left for readability */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(5, 12, 25, 0.92) 0%,
      rgba(5, 12, 25, 0.75) 35%,
      rgba(5, 12, 25, 0.3) 60%,
      transparent 100%);
  z-index: 1;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4rem;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}

/* ===== LEFT CONTENT ===== */
.hero-left {
  flex: 0 0 45%;
  max-width: 520px;
  z-index: 3;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  /* 🔥 FIX */
}

.hero-left h4 {
  margin-top: auto;
  padding-top: 60px;
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
  font-style: italic;
  animation: fadeInLeft 0.6s ease 0.2s both;
}

.hero-left h4 span {
  color: #b8ff3d;
  font-weight: 700;
  font-style: normal;
}

.hero-left h1 {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.1;
  letter-spacing: -0.5px;
  animation: fadeInLeft 0.6s ease 0.35s both;
}

.hero-left p {
  font-size: 0.95rem;
  opacity: 0.85;
  margin-bottom: 1.8rem;
  line-height: 1.7;
  max-width: 420px;
  animation: fadeInLeft 0.6s ease 0.5s both;
}

/* CTA Button */
.btn-primary {
  display: inline-block;
  width: fit-content;
  padding: 0.7rem 1.8rem;
  border: 1px solid #b8ff3d;
  border-radius: 999px;
  color: #b8ff3d;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-bottom: 2.5rem;
  animation: fadeInLeft 0.6s ease 0.6s both;
}

.btn-primary:hover {
  background: #b8ff3d;
  color: #050c19;
}

/* ===== STATS — horizontal row at the bottom ===== */
.stats {
  display: flex;
  gap: 2.5rem;
  margin-top: auto;
  padding-bottom: 3rem;
  animation: fadeInUp 0.6s ease 0.8s both;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: flex-start;
}

.stat .icon {
  width: 40px;
  height: 40px;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(184, 255, 61, 0.12);
  border-radius: 50%;
  border: 1px solid rgba(184, 255, 61, 0.2);
}

.stat .icon img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}

.stat strong {
  font-size: 1.3rem;
  color: #fff;
  font-weight: 700;
}

.stat span {
  font-size: 0.8rem;
  opacity: 0.7;
  font-weight: 400;
}

/* ===== RIGHT CONTENT ===== */
.hero-right {
  flex: 1;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  height: 100%;
  padding-top: 90px;
  padding-right: 0;
}

/* Hero Title — top right */
.hero-title {
  text-align: right;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
  z-index: 4;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeInRight 0.6s ease 0.3s both;
}

/* ===== RESPONSIVE — Tablet ===== */
@media (max-width: 1024px) {
  .navbar {
    padding: 16px 32px;
  }

  .hero-overlay {
    padding: 0 2rem;
  }

  .hero-left {
    max-width: 100%;
    flex: 0 0 50%;
  }

  .hero-left h1 {
    font-size: 2.5rem;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .stats {
    gap: 1.5rem;
  }
}

/* ===== RESPONSIVE — Mobile ===== */
@media (max-width: 768px) {
  .navbar {
    padding: 16px 24px;
  }

  .hamburger {
    display: flex;
    z-index: 101;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(5, 12, 25, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    overflow-y: auto;
    z-index: 100;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid rgba(184, 255, 61, 0.1);
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  .nav-links .esc-badge {
    margin-top: 12px;
    max-width: 40px;
    border-bottom: none;
  }

  .hero {
    height: auto;
    min-height: 100vh;
    background-position: center bottom;
  }

  .hero::before {
    background: linear-gradient(180deg,
        rgba(5, 12, 25, 0.95) 0%,
        rgba(5, 12, 25, 0.85) 50%,
        rgba(5, 12, 25, 0.6) 100%);
  }

  .hero-overlay {
    flex-direction: column;
    padding: 100px 2rem 60px;
    gap: 30px;
    justify-content: flex-start;
  }

  .hero-left {
    order: 2;
    text-align: center;
    max-width: 100%;
    flex: none;
    padding-top: 0;
  }

  .hero-left p {
    max-width: 100%;
  }

  .hero-left h1 {
    font-size: 2rem;
  }

  .hero-left p {
    font-size: 0.9rem;
  }

  .hero-right {
    order: 1;
    width: 100%;
    justify-content: center;
    align-items: flex-start;
    padding-top: 0;
    padding-right: 0;
    height: auto;
  }

  .hero-title {
    text-align: center;
    font-size: 1.3rem;
    max-width: 100%;
  }

  .stats {
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    padding-bottom: 2rem;
  }

  .stat {
    align-items: center;
    min-width: 100px;
  }
}

/* ===== RESPONSIVE — Small Mobile ===== */
@media (max-width: 480px) {
  .esc-badge img {
    width: 32px;
  }

  .hero-left h4 {
    font-size: 1rem;
  }

  .hero-left h1 {
    font-size: 1.6rem;
  }

  .hero-left p {
    font-size: 0.85rem;
  }

  .btn-primary {
    padding: 0.6rem 1.4rem;
    font-size: 0.9rem;
  }

  .stats {
    gap: 1rem;
  }

  .stat strong {
    font-size: 1rem;
  }

  .stat span {
    font-size: 0.75rem;
  }

  .stat .icon {
    width: 32px;
    height: 32px;
  }

  .hero-overlay {
    padding: 80px 1.5rem 40px;
  }

  .hero-title {
    font-size: 1.1rem;
  }
}

/* ===== FEATURES BAR SECTION ===== */
.features-section {
  background: #f5f6f8;
  padding: 50px 2rem 40px;
}

.features-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.features-subtitle {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 3px;
  color: #555;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.features-bar {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: #fff;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #333;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  cursor: default;
}

.feature-pill:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.feature-pill img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

/* ===== ABOUT / WHAT IS FRAMS SECTION ===== */
.about-section {
  background: #f8f9fa;
  padding: 120px 2rem;
}

.about-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 100px;
}

.about-left {
  flex: 1;
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-merged-image {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

.about-right {
  flex: 1.2;
}

.about-right h2 {
  font-family: "Inter", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  color: #374151;
  line-height: 1.3;
  margin-bottom: 2rem;
  max-width: 500px;
}

.about-right p {
  font-size: 1.15rem;
  color: #6b7280;
  line-height: 1.8;
  max-width: 560px;
}

/* RESPONSIVE — Features & About */
@media (max-width: 1024px) {
  .about-inner {
    flex-direction: column;
    text-align: center;
    gap: 60px;
  }

  .about-right h2,
  .about-right p {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .features-bar {
    gap: 12px;
  }

  .feature-pill {
    padding: 8px 14px;
    font-size: 0.78rem;
  }

  .about-inner {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .about-left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .phone-mockups {
    justify-content: center;
    min-height: 320px;
  }

  .phone-1,
  .phone-2 {
    width: 180px;
  }

  .about-right h2 {
    font-size: 1.8rem;
  }

  .about-right p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .features-section {
    padding: 30px 1rem;
  }

  .features-subtitle {
    font-size: 0.72rem;
    letter-spacing: 2px;
  }

  .feature-pill {
    padding: 6px 10px;
    font-size: 0.72rem;
    gap: 5px;
  }

  .feature-pill img {
    width: 14px;
    height: 14px;
  }

  .about-section {
    padding: 50px 1.5rem;
  }

  .phone-1,
  .phone-2 {
    width: 150px;
  }

  .about-right h2 {
    font-size: 1.5rem;
  }

  .about-right p {
    font-size: 0.88rem;
  }
}


/* ============================================
   CAPABILITIES SECTION
   ============================================ */

.capabilities-section {
  background-color: #f5f6f8;
  padding: 60px 40px;
}

.capabilities-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.capabilities-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 36px;
}

.badge {
  display: inline-block;
  padding: 6px 18px;
  background: #e8f540;
  color: #1a1a2e;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 999px;
}

.capabilities-title {
  font-family: "Inter", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #1a1a2e;
}

.capabilities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.capability-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px 8px 8px;
  border-radius: 9999px;
  border: 1px solid rgba(200, 200, 200, 0.4);
  background-color: #fff;
  transition: all 0.3s ease;
}

.capability-card:hover {
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

.capability-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  object-fit: contain;
}

.capability-card span {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  color: #444;
  line-height: 1.4;
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .capability-card span {
    white-space: normal;
  }
}

@media (max-width: 768px) {
  .capabilities-section {
    padding: 40px 24px;
  }

  .capabilities-title {
    font-size: 1.5rem;
  }

  .capability-card span {
    font-size: 0.78rem;
    white-space: normal;
  }

  .capability-icon {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 480px) {
  .capabilities-section {
    padding: 30px 16px;
  }

  .capabilities-title {
    font-size: 1.3rem;
  }

  .badge {
    font-size: 0.6rem;
    padding: 5px 14px;
  }

  .capabilities-grid {
    gap: 8px;
  }

  .capability-card {
    padding: 6px 12px 6px 6px;
    gap: 8px;
  }

  .capability-card span {
    font-size: 0.72rem;
  }

  .capability-icon {
    width: 22px;
    height: 22px;
  }
}


/* ===== PROBLEM SECTION ===== */
.problem-section {
  padding: 100px 0 80px;
  background: #ffffff;
}

.problem-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.problem-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.problem-section .section-tag {
  background: #d4e019;
  /* Yellow badge */
  color: #1f2937;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.problem-section h2 {
  font-family: "Inter", sans-serif;
  font-size: 34px;
  font-weight: 400;
  color: #374151;
  margin-bottom: 16px;
}

.problem-section h2 .highlight {
  color: #1791a5;
  /* Teal text */
}

.problem-section .lead {
  font-size: 15px;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.problem-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  border: 1px solid #f3f4f6;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.problem-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: white;
  margin-bottom: 20px;
}

.problem-icon.red-bg {
  background: #ef4444;
  /* Solid red */
}

.problem-icon.orange-bg {
  background: #f59e0b;
  /* Solid orange */
}

.problem-icon.yellow-bg {
  background: #eab308;
  /* Solid yellow */
}

.problem-icon.purple-bg {
  background: #4f46e5;
  /* Solid purple */
}

.problem-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1f2937;
}

.problem-card p {
  color: #6b7280;
  font-size: 12px;
  margin-bottom: 30px;
  line-height: 1.6;
  flex: 1;
  /* Pushes stat to bottom */
}

.problem-stat {
  padding-top: 20px;
  border-top: 1px solid #f3f4f6;
}

.stat-bad {
  font-size: 24px;
  font-weight: 700;
  color: #ef4444;
  /* Red numbers */
}

.problem-stat small {
  display: block;
  color: #9ca3af;
  font-size: 10px;
  margin-top: 4px;
}

/* Solution Arrow */
.solution-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 50px;
}

.arrow-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(23, 145, 165, 0.5), transparent);
  max-width: 200px;
}

.arrow-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: #1791a5;
  /* Teal */
  font-size: 13px;
  font-weight: 600;
}

.arrow-text i {
  font-size: 18px;
  animation: float 2s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(4px);
  }

  100% {
    transform: translateY(0);
  }
}

/* Solution Grid */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.solution-card {
  background: linear-gradient(135deg, #18606c, #11424a);
  /* Dark teal gradient */
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  color: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(17, 66, 74, 0.3);
}

.solution-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: 0 auto 16px;
  color: #fff;
}

.solution-card h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #fff;
}

.solution-card p {
  font-size: 12px;
  color: #b2d8d8;
  /* Light teal text */
  line-height: 1.5;
  margin: 0;
}

/* Responsive problem-solution section */
@media (max-width: 1024px) {

  .problem-grid,
  .solution-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .problem-section {
    padding: 60px 0;
  }

  .problem-section .container {
    padding: 0 24px;
  }

  .problem-section h2 {
    font-size: 26px;
  }

  .problem-grid,
  .solution-grid {
    grid-template-columns: 1fr;
  }
}



/* ===== HOW IT WORKS ===== */
.how-section {
  position: relative;
  background-color: #000000;
  padding: 120px 0;
  color: #fff;
  overflow: hidden;
}

.how-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at center, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 24px 24px;
  z-index: 0;
}

.how-container {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}

.how-header {
  text-align: center;
  margin-bottom: 80px;
}

.how-header h2 {
  font-family: "Inter", sans-serif;
  font-size: 34px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 16px;
}

.how-header h2 .highlight {
  font-weight: 500;
  color: #1791a5;
  /* Teal text */
}

.how-header .lead {
  font-size: 15px;
  color: #9ca3af;
}

/* Timeline */
.process-timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  margin-bottom: 80px;
  padding: 0 40px;
}

.process-line {
  position: absolute;
  top: 30px;
  /* Align with center of nodes */
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, #1791a5, transparent);
  z-index: 0;
  opacity: 0.6;
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-node {
  width: 60px;
  height: 60px;
  background: radial-gradient(circle at top left, #1791a5, #65a30d);
  /* Teal to olive-green */
  border-radius: 50%;
  padding: 2px;
  /* For border effect */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  box-shadow: 0 0 20px rgba(23, 145, 165, 0.4);
  /* Glow */
}

.step-number {
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.step-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 220px;
}

.step-icon {
  font-size: 18px;
  color: #eab308;
  /* Yellow icons */
  margin-bottom: 16px;
}

.step-content h3 {
  font-size: 15px;
  font-weight: 600;
  color: #f3f4f6;
  margin-bottom: 10px;
}

.step-content p {
  font-size: 12px;
  color: #9ca3af;
  line-height: 1.6;
}

/* Process Demo Box */
.process-demo-box {
  background: rgba(17, 40, 45, 0.4);
  border: 1px solid rgba(23, 145, 165, 0.3);
  border-radius: 20px;
  padding: 40px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.demo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 30px 40px;
  border-radius: 12px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.demo-item.center-item {
  border: 1px solid rgba(23, 145, 165, 0.4);
}

.demo-icon {
  font-size: 28px;
  color: #1791a5;
}

.demo-item span {
  font-size: 13px;
  color: #9ca3af;
}

.demo-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}

.demo-dots .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1791a5;
  opacity: 0.3;
}

.demo-dots .dot:nth-child(2) {
  opacity: 0.6;
}

.demo-dots .dot:nth-child(3) {
  opacity: 1;
}

@media (max-width: 1024px) {
  .process-demo-box {
    flex-wrap: wrap;
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .process-timeline {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 0;
  }

  .process-line {
    display: none;
  }

  .process-demo-box {
    flex-direction: column;
    padding: 30px;
  }

  .demo-dots {
    flex-direction: column;
    margin: 10px 0;
  }
}


/* ===== PLATFORMS / ADMIN DASHBOARD SECTION ===== */
.platforms-section {
  background: #fff;
  padding: 80px 2rem;
}

.platforms-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.platforms-header {
  text-align: center;
  margin-bottom: 50px;
}

.platforms-header .badge {
  margin-bottom: 16px;
}

.platforms-header h2 {
  font-family: "Inter", sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 12px;
  font-style: italic;
}

.platforms-highlight {
  color: #1a9a8a;
  font-style: italic;
}

.platforms-header p {
  font-size: 1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* Two Column Grid */
.platforms-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.platforms-left h3 {
  font-family: "Inter", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 14px;
}

.platforms-desc {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 28px;
}

/* Feature List */
.platforms-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.platforms-features li {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
}

.platforms-features li i {
  width: 22px;
  height: 22px;
  background: rgba(16, 185, 129, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10b981;
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 3px;
}

.platforms-features li strong {
  display: block;
  font-size: 0.95rem;
  color: #1a1a2e;
  margin-bottom: 3px;
}

.platforms-features li span {
  font-size: 0.85rem;
  color: #888;
  line-height: 1.5;
}

/* Demo Button */
.btn-demo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #0f2b3c;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-demo:hover {
  background: #1a9a8a;
  transform: translateY(-1px);
}

/* Desktop Mockup */
.platforms-right {
  position: relative;
}

.desktop-mockup-wrapper {
  position: relative;
  padding: 30px 0;
}

/* Monitor */
.monitor-frame {
  position: relative;
  z-index: 1;
}

.monitor-bezel {
  background: #222;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.monitor-screen {
  border-radius: 6px;
  overflow: hidden;
  background: #f0f0f0;
  position: relative;
}

.monitor-screen .dash-slide {
  width: 100%;
  height: auto;
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.monitor-screen .dash-slide.active {
  display: block;
  opacity: 1;
}

.monitor-stand-neck {
  width: 60px;
  height: 36px;
  background: linear-gradient(180deg, #333 0%, #555 100%);
  margin: 0 auto;
}

.monitor-stand-base {
  width: 120px;
  height: 10px;
  background: linear-gradient(180deg, #444 0%, #666 100%);
  border-radius: 0 0 8px 8px;
  margin: 0 auto;
}

/* Floating Badges */
.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px 10px 10px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  font-size: 0.82rem;
  font-weight: 600;
  color: #1a1a2e;
  z-index: 5;
  white-space: nowrap;
}

.fb-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e0f7f1 0%, #d0ece6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fb-icon i {
  font-size: 13px;
  color: #1a9a8a;
}

/* Navigation Dots */
.dash-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.dash-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d0d0d0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dash-dot.active {
  background: #1a9a8a;
  transform: scale(1.15);
}

.fb-employees {
  top: 10px;
  left: -20px;
}

.fb-attendance {
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
}

.fb-monitoring {
  bottom: 60px;
  left: -10px;
}

/* Responsive */
@media (max-width: 900px) {
  .platforms-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .platforms-header h2 {
    font-size: 1.8rem;
  }

  .floating-badge {
    display: none;
  }
}

@media (max-width: 480px) {
  .platforms-section {
    padding: 50px 1.5rem;
  }

  .platforms-header h2 {
    font-size: 1.5rem;
  }

  .platforms-left h3 {
    font-size: 1.3rem;
  }
}



/* ===== MOBILE APP SECTION ===== */
.mobile-section {
  background: #f5f6f8;
  padding: 80px 2rem;
}

.mobile-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.mobile-header {
  text-align: center;
  margin-bottom: 50px;
}

.mobile-header .badge {
  margin-bottom: 16px;
}

.mobile-header h2 {
  font-family: "Inter", sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 12px;
  font-style: italic;
}

.mobile-highlight {
  color: #1a9a8a;
  font-style: italic;
}

.mobile-header p {
  font-size: 1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* Two Column Grid */
.mobile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Phone Mockup */
.mobile-left {
  display: flex;
  justify-content: center;
}

.phone-mockup-wrapper {
  position: relative;
  padding: 30px 40px;
}

.phone-frame {
  position: relative;
  z-index: 1;
}

.phone-bezel {
  background: #1a1a2e;
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  width: 260px;
  position: relative;
  overflow: hidden;
}

.phone-notch {
  width: 90px;
  height: 22px;
  background: #1a1a2e;
  border-radius: 0 0 14px 14px;
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.phone-screen {
  border-radius: 26px;
  overflow: hidden;
  background: #fff;
  position: relative;
}

.phone-screen .mobile-slide {
  width: 100%;
  height: auto;
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.phone-screen .mobile-slide.active {
  display: block;
  opacity: 1;
}

/* Mobile Floating Badges */
.mb-alerts {
  top: 30px;
  left: -30px;
}

.mb-checkin {
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
}

.mb-hours {
  bottom: 60px;
  left: -20px;
}

/* Mobile Navigation Dots */
.mobile-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.mobile-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d0d0d0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-dot.active {
  background: #1a9a8a;
  transform: scale(1.15);
}

/* Feature Cards */
.mobile-right {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.mobile-feature-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.mf-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #e0f7f1 0%, #d0ece6 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mf-icon i {
  font-size: 18px;
  color: #1a9a8a;
}

.mf-text strong {
  display: block;
  font-size: 0.95rem;
  color: #1a1a2e;
  margin-bottom: 4px;
}

.mf-text span {
  font-size: 0.85rem;
  color: #888;
  line-height: 1.5;
}

/* App Note */
.app-note {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: #e8f7f3;
  border: 1px solid #c3ece1;
  border-radius: 12px;
  margin-top: 8px;
}

.app-note i {
  color: #1a9a8a;
  font-size: 16px;
  flex-shrink: 0;
}

.app-note span {
  font-size: 0.85rem;
  color: #1a9a8a;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 900px) {
  .mobile-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mobile-header h2 {
    font-size: 1.8rem;
  }

  .mb-alerts,
  .mb-checkin,
  .mb-hours {
    display: none;
  }
}

@media (max-width: 480px) {
  .mobile-section {
    padding: 50px 1.5rem;
  }

  .mobile-header h2 {
    font-size: 1.5rem;
  }

  .phone-bezel {
    width: 220px;
    border-radius: 30px;
    padding: 10px;
  }

  .phone-screen {
    border-radius: 22px;
  }
}


.mobile-phones {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: -30px;
  padding: 40px 0;
}

.phone-mockup {
  width: 260px;
  background: #1f2937;
  border-radius: 40px;
  padding: 12px;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.phone-mockup.phone-1 {
  transform: translateY(20px) rotate(-5deg);
  z-index: 1;
}

.phone-mockup.phone-2 {
  transform: scale(1.1);
  z-index: 2;
  margin: 0 -30px;
}

.phone-mockup.phone-3 {
  transform: translateY(20px) rotate(5deg);
  z-index: 1;
}

.phone-notch {
  width: 100px;
  height: 24px;
  background: #1f2937;
  border-radius: 0 0 16px 16px;
  margin: 0 auto;
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.phone-screen {
  background: #111827;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  height: 500px;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.app-overlay {
  position: absolute;
  inset: 0;
  padding: 50px 20px 20px;
  display: flex;
  flex-direction: column;
}

.app-header {
  margin-bottom: 20px;
}

.app-greeting {
  display: block;
  color: white;
  font-size: 18px;
  font-weight: 700;
}

.app-date {
  color: #94a3b8;
  font-size: 13px;
}

.app-status {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(16, 185, 129, 0.2);
  padding: 16px;
  border-radius: var(--radius);
  margin-bottom: 20px;
}

.app-status.checked-in {
  color: var(--success);
}

.app-status i {
  font-size: 20px;
}

.app-stats-row {
  display: flex;
  gap: 16px;
}

.app-stat {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  padding: 16px;
  border-radius: var(--radius);
  text-align: center;
}

.app-stat strong {
  display: block;
  color: white;
  font-size: 24px;
  font-weight: 700;
}

.app-stat small {
  color: #94a3b8;
  font-size: 11px;
}

/* History View */
.history-view .app-nav {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.app-nav span {
  color: #64748b;
  font-size: 14px;
  cursor: pointer;
}

.app-nav span.active {
  color: white;
  font-weight: 600;
}

.history-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.history-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 14px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 12px;
}

.history-date {
  color: white;
  font-weight: 600;
  font-size: 13px;
  min-width: 50px;
}

.history-times {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.history-times span {
  color: #94a3b8;
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.history-status {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 4px;
}

.history-status.present {
  background: rgba(16, 185, 129, 0.2);
  color: var(--success);
}

.history-status.late {
  background: rgba(245, 158, 11, 0.2);
  color: var(--warning);
}

/* Reports View */
.reports-view .report-header {
  color: white;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.report-chart {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 150px;
  padding: 20px 0;
  margin-bottom: 20px;
}

.chart-bar {
  width: 36px;
  background: var(--gradient);
  border-radius: 8px 8px 0 0;
  position: relative;
  transition: var(--transition);
}

.chart-bar span {
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  color: #64748b;
  font-size: 11px;
}

.report-summary {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.05);
  padding: 12px;
  border-radius: 8px;
}

.summary-label {
  color: #94a3b8;
  font-size: 13px;
}

.summary-value {
  color: white;
  font-weight: 600;
  font-size: 13px;
}

/* Mobile Features */
.mobile-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.mf-icon {
  width: 48px;
  height: 48px;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 20px;
  flex-shrink: 0;
}

.mf-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.mf-content p {
  color: var(--text-light);
  font-size: 14px;
}

.app-download {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--text);
  color: white;
  padding: 12px 20px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: var(--transition);
}

.store-btn:hover {
  background: var(--bg-dark);
  transform: translateY(-2px);
}

.store-btn i {
  font-size: 28px;
}

.store-btn small {
  font-size: 10px;
  opacity: 0.8;
}

.store-btn strong {
  font-size: 16px;
}

/* ===== SECURITY SECTION ===== */
.security-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}

.security-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.security-shield {
  width: 250px;
  height: 250px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shield-ring {
  position: absolute;
  border: 2px solid var(--primary);
  border-radius: 50%;
  opacity: 0.3;
}

.shield-ring.ring-1 {
  width: 100%;
  height: 100%;
  animation: rotate 20s linear infinite;
}

.shield-ring.ring-2 {
  width: 80%;
  height: 80%;
  animation: rotate 15s linear infinite reverse;
}

.shield-ring.ring-3 {
  width: 60%;
  height: 60%;
  animation: rotate 10s linear infinite;
}

.shield-center {
  width: 100px;
  height: 100px;
  background: var(--gradient);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: white;
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.3);
}

.security-badges {
  display: flex;
  gap: 16px;
}

.security-badges .badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  padding: 12px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.security-badges .badge i {
  color: var(--success);
}

.security-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}


/* ===== MOBILE APP SECTION ===== */
.mobile-section {
  background: #f5f6f8;
  padding: 80px 2rem;
}

.mobile-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.mobile-header {
  text-align: center;
  margin-bottom: 50px;
}

.mobile-header .badge {
  margin-bottom: 16px;
}

.mobile-header h2 {
  font-family: "Inter", sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 12px;
  font-style: italic;
}

.mobile-highlight {
  color: #1a9a8a;
  font-style: italic;
}

.mobile-header p {
  font-size: 1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.mobile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.mobile-left {
  display: flex;
  justify-content: center;
}

.phone-mockup-wrapper {
  position: relative;
  padding: 30px 50px;
}

/* iPhone-style phone frame */
.phone-frame {
  position: relative;
  z-index: 1;
  width: 260px;
}

.phone-bezel {
  background: #1a1a2e;
  border-radius: 44px;
  padding: 4px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.05);
  position: relative;
}

.phone-notch {
  width: 100px;
  height: 26px;
  background: #1a1a2e;
  border-radius: 0 0 18px 18px;
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.phone-screen {
  border-radius: 40px;
  overflow: hidden;
  background: #fff;
  position: relative;
}

.phone-screen .mobile-slide {
  width: 100%;
  display: block;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.5s ease;
}

.phone-screen .mobile-slide.active {
  opacity: 1;
  position: relative;
}

/* Mobile Floating Badges */
.mb-alerts {
  top: 20px;
  left: -40px;
}

.mb-checkin {
  top: 50%;
  right: -50px;
  transform: translateY(-50%);
}

.mb-hours {
  bottom: 60px;
  left: -30px;
}

/* Mobile Navigation Dots */
.mobile-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.mobile-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d0d0d0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-dot.active {
  background: #1a9a8a;
  transform: scale(1.15);
}

/* Feature Cards */
.mobile-right {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.mobile-feature-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.mf-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #e0f7f1 0%, #d0ece6 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mf-icon i {
  font-size: 18px;
  color: #1a9a8a;
}

.mf-text strong {
  display: block;
  font-size: 0.95rem;
  color: #1a1a2e;
  margin-bottom: 4px;
}

.mf-text span {
  font-size: 0.85rem;
  color: #888;
  line-height: 1.5;
}

/* App Note */
.app-note {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: #e8f7f3;
  border: 1px solid #c3ece1;
  border-radius: 12px;
  margin-top: 8px;
}

.app-note i {
  color: #1a9a8a;
  font-size: 16px;
  flex-shrink: 0;
}

.app-note span {
  font-size: 0.85rem;
  color: #1a9a8a;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 900px) {
  .mobile-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mobile-header h2 {
    font-size: 1.8rem;
  }

  .mb-alerts,
  .mb-checkin,
  .mb-hours {
    display: none;
  }
}

@media (max-width: 480px) {
  .mobile-section {
    padding: 50px 1.5rem;
  }

  .mobile-header h2 {
    font-size: 1.5rem;
  }

  .phone-bezel {
    border-radius: 36px;
  }

  .phone-screen {
    border-radius: 34px;
  }

  .phone-frame {
    width: 220px;
  }
}

/* ===== USE CASES SECTION ===== */
.usecases-section {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.usecases-header {
  background: #1a1a1a;
  padding: 60px 20px;
  text-align: center;
}

.usecases-header h2 {
  font-family: "Inter", sans-serif;
  font-size: 36px;
  font-weight: 500;
  color: #fff;
  margin: 0;
}

.usecases-gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: 100%;
  height: 500px;
}

.usecase-item {
  position: relative;
  overflow: hidden;
  height: 100%;
  cursor: pointer;
}

.usecase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.85);
}

.usecase-item:hover img {
  transform: scale(1.08);
  filter: brightness(1.1);
}

/* Base overlay style with subtle gradient for text legibility */
.usecase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.1) 100%);
  display: flex;
  align-items: flex-end;
  padding: 30px;
  transition: all 0.4s ease;
}

.usecase-item:hover .usecase-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
}

.usecase-overlay h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
  transition: transform 0.4s ease, font-weight 0.4s ease;
  transform: translateY(10px);
}

.usecase-item:hover .usecase-overlay h3 {
  font-weight: 600;
  transform: translateY(0);
}

/* Responsive Use Cases */
@media (max-width: 1024px) {
  .usecases-gallery {
    grid-template-columns: repeat(3, 1fr);
    height: auto;
  }

  .usecase-item {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .usecases-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .usecase-item {
    height: 350px;
  }

  .usecases-header h2 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .usecases-gallery {
    grid-template-columns: 1fr;
  }

  .usecase-item {
    height: 300px;
  }
}

/* TESTIMONIALS */
.testimonials {
  background: #090e17;
  /* Dark navy background */
  background-image: radial-gradient(circle at center, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  padding: 100px 0;
  color: #fff;
}

.testimonials-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 40px;
  text-align: center;
}

.testimonials-title {
  font-family: "Inter", sans-serif;
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 60px;
  line-height: 1.3;
  color: #fff;
}

/* GRID */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: center;
}

/* CARD */
.testimonial-card {
  background: #2a303c;
  /* Dark grayish-blue card background */
  border-radius: 12px;
  padding: 32px 24px;
  text-align: left;
  opacity: 0.6;
  transform: scale(0.9);
  transition: all 0.4s ease;
  cursor: pointer;
}

.testimonial-card.active {
  opacity: 1;
  transform: scale(1.05);
  background: #2f3643;
  /* Slightly lighter for active card */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  z-index: 2;
  position: relative;
}

/* HEADER */
.testimonial-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.testimonial-header img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-header h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.testimonial-header span {
  font-size: 13px;
  color: #9ba4b5;
}

.stars {
  margin-left: auto;
  color: #f5a623;
  font-size: 14px;
  letter-spacing: 2px;
}

/* CONTENT */
.testimonial-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #fff;
}

.testimonial-card p {
  font-size: 13px;
  line-height: 1.6;
  color: #d1d5db;
}

/* NAVIGATION: ARROWS + DOTS */
.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 60px;
}

.testimonial-arrow {
  background: transparent;
  border: none;
  color: #6b7280;
  font-size: 20px;
  cursor: pointer;
  transition: color 0.3s ease;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-arrow:hover {
  color: #fff;
}

.testimonial-dots {
  display: flex;
  gap: 12px;
  align-items: center;
}

.testimonial-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #4b5563;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dots span.active {
  background: #fde047;
  /* Yellow dot for active state */
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
    gap: 30px;
  }

  .testimonial-card {
    transform: scale(1);
    opacity: 1;
  }

  .testimonial-card.active {
    transform: scale(1);
  }

  .testimonials-title {
    font-size: 32px;
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .testimonials {
    padding: 80px 0;
  }

  .testimonials-container {
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .testimonials-title {
    font-size: 24px;
  }

  .testimonial-card {
    padding: 24px 20px;
  }

  .testimonial-header img {
    width: 40px;
    height: 40px;
  }

  .testimonial-card h3 {
    font-size: 16px;
  }

  .testimonial-card p {
    font-size: 12px;
  }
}


/* ===== CONTACT CTA ===== */
.contact-cta {
  background: #1e1e1e;
  /* Dark charcoal background */
  padding: 120px 0;
  color: #fff;
}

.contact-cta-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 100px;
  align-items: center;
}

/* LEFT CONTENT */
.contact-content h2 {
  font-family: "Inter", sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 40px;
  color: #fff;
  letter-spacing: 0.5px;
}

.contact-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #d1d5db;
  margin-bottom: 40px;
  max-width: 500px;
}

.contact-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #e5e7eb;
}

.contact-features i {
  color: #e8bc2a;
  /* Yellow checkmark */
  font-size: 16px;
}

/* FORM */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.form-group input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #e8bc2a;
  /* Yellow bottom border */
  padding: 8px 0;
  color: #fff;
  font-size: 14px;
  font-style: italic;
  transition: border-color 0.3s ease;
}

.form-group input::placeholder {
  color: #1791a5;
  /* Teal placeholder text */
  font-style: italic;
  opacity: 1;
}

.form-group input:focus {
  outline: none;
  border-bottom-color: #1fc1d1;
}

/* CAPTCHA */
.captcha-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  color: #333;
  padding: 12px 16px;
  border-radius: 6px;
  border: 1px solid #ccc;
  margin-top: 10px;
}

.captcha-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.captcha-left input {
  width: 24px;
  height: 24px;
  cursor: pointer;
  border: 2px solid #999;
  border-radius: 3px;
}

.captcha-left label {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

.captcha-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.captcha-right img {
  width: 32px;
}

.captcha-right span {
  font-size: 10px;
  color: #666;
  text-align: center;
  line-height: 1.2;
}

/* BUTTON */
.submit-btn {
  margin-top: 10px;
  background: #1791a5;
  /* Teal button */
  border: none;
  color: #e8bc2a;
  /* Yellow text */
  padding: 18px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.submit-btn:hover {
  background: #137788;
  transform: translateY(-2px);
}

.submit-btn:active {
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .contact-cta-container {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 0 40px;
  }

  .contact-content h2 {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .contact-cta {
    padding: 80px 0;
  }

  .contact-cta-container {
    gap: 40px;
    padding: 0 24px;
  }

  .contact-content h2 {
    font-size: 26px;
    margin-bottom: 24px;
  }

  .contact-content p {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .contact-form {
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .contact-cta {
    padding: 60px 0;
  }

  .contact-cta-container {
    padding: 0 16px;
    gap: 30px;
  }

  .contact-content h2 {
    font-size: 26px;
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .contact-content p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 12px;
  }

  .contact-form {
    gap: 16px;
  }

  .form-group label {
    font-size: 12px;
    margin-bottom: 4px;
  }

  .form-group input {
    font-size: 13px;
    padding: 8px 0;
  }

  .captcha-box {
    padding: 12px;
    max-width: 100%;
    font-size: 12px;
  }

  .submit-btn {
    margin-top: 16px;
    padding: 12px 16px;
    font-size: 13px;
    width: 100%;
    text-align: center;
  }
}

/* ===== FAQ SECTION ===== */
.faq-section {
  background: #fff;
  padding: 100px 0;
  color: #333;
}

.faq-container {
  max-width: 900px;
  margin: auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.faq-badge {
  background: #d4e019;
  /* Yellow badge */
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.faq-title {
  font-family: "Inter", sans-serif;
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 60px;
  color: #2a3342;
  text-align: center;
}

.faq-title span {
  color: #1791a5;
  /* Teal text */
  font-weight: 500;
}

.faq-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  cursor: pointer;
  background: #fff;
  user-select: none;
}

.faq-question h4 {
  font-size: 16px;
  font-weight: 500;
  color: #1f2937;
  margin: 0;
}

.faq-question i {
  color: #9ca3af;
  font-size: 14px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: #1791a5;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background: #fdfdfd;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  /* Arbitrary large height to allow CSS transition */
  padding: 0 24px 24px 24px;
  border-top: 1px solid #f3f4f6;
}

.faq-answer p {
  font-size: 15px;
  line-height: 1.6;
  color: #4b5563;
  margin: 0;
  padding-top: 16px;
}

/* Responsive FAQ */
@media (max-width: 768px) {
  .faq-section {
    padding: 80px 0;
  }

  .faq-container {
    padding: 0 24px;
  }

  .faq-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .faq-question {
    padding: 20px;
  }

  .faq-question h4 {
    font-size: 15px;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 20px 20px;
  }
}

@media (max-width: 480px) {
  .faq-section {
    padding: 60px 0;
  }

  .faq-container {
    padding: 0 16px;
  }

  .faq-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .faq-question {
    padding: 16px;
  }

  .faq-question h4 {
    font-size: 14px;
  }

  .faq-answer p {
    font-size: 13px;
    padding-top: 12px;
  }

  .faq-item.active .faq-answer {
    padding: 0 16px 16px 16px;
  }
}

/* ===== FOOTER ===== */
.site-footer {
  background: #000;
  color: #fff;
  padding: 80px 20px 40px;
  text-align: center;
}

.footer-inner {
  max-width: 1200px;
  margin: auto;
}

.footer-logo img {
  max-width: 220px;
  margin-bottom: 30px;
  height: auto;
}

.footer-badges {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.footer-badges img {
  max-height: 65px;
  width: auto;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.footer-nav a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-address {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 40px;
  opacity: 0.85;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.footer-social img {
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease;
}

.footer-social a:hover img {
  transform: scale(1.15);
}

.footer-copy {
  font-size: 14px;
  opacity: 0.6;
}

@media (max-width: 768px) {
  .site-footer {
    padding: 60px 16px 30px;
  }

  .footer-logo img {
    max-width: 180px;
    margin-bottom: 24px;
  }

  .footer-badges {
    gap: 24px;
    margin-bottom: 30px;
  }

  .footer-badges img {
    max-height: 55px;
  }

  .footer-nav {
    gap: 20px;
    margin-bottom: 30px;
    font-size: 14px;
  }

  .footer-address {
    font-size: 13px;
    margin-bottom: 30px;
  }

  .footer-social {
    gap: 16px;
    margin-bottom: 30px;
  }

  .footer-social img {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding: 40px 12px 20px;
  }

  .footer-logo img {
    max-width: 150px;
    margin-bottom: 20px;
  }

  .footer-badges {
    gap: 16px;
    margin-bottom: 20px;
  }

  .footer-badges img {
    max-height: 45px;
  }

  .footer-nav {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 13px;
  }

  .footer-address {
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .footer-social {
    gap: 12px;
    margin-bottom: 20px;
  }

  .footer-social img {
    width: 22px;
    height: 22px;
  }

  .footer-copy {
    font-size: 12px;
  }
}