﻿@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

:root {
  --fenizo-orange: #ff9f43;
  --fenizo-purple: #6c5ce7;
  --fenizo-blue: #5d5fef;
}

.cs-hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-color: #ffffff;
  font-family: 'Poppins', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 80px 0 60px;
  overflow: hidden;
  color: #0f172a;
}

.cs-hero-container {
  z-index: 10;
  max-width: 1200px;
  width: 90%;
}

.cs-hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 50px;
  align-items: center;
}

.cs-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6d28d9;
  font-weight: 600;
}

.cs-hero-title {
  font-size: clamp(2.3rem, 4vw, 3.8rem);
  font-weight: 600;
  margin: 18px 0;
  line-height: 1.2;
}

.cs-hero-desc {
  font-size: 1rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 24px;
}

.cs-hero-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cs-hero-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.95rem;
  color: #1e293b;
}

.cs-hero-list li::before {
  content: '✔';
  color: #14b8a6;
  font-weight: 600;
  margin-top: 2px;
}

.cs-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 26px;
}

.cs-hero-btn {
  border-radius: 999px;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cs-hero-btn--primary {
  background: linear-gradient(135deg, #f97316, #facc15);
  color: #0f172a;
  box-shadow: 0 15px 40px rgba(249, 115, 22, 0.25);
}

.cs-hero-btn--whatsapp {
  background: #22c55e;
  color: #fff;
  box-shadow: 0 15px 40px rgba(34, 197, 94, 0.25);
}

.cs-hero-btn:hover {
  transform: translateY(-2px);
}

.cs-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.cs-hero-meta div {
  background: #fff;
  border-radius: 18px;
  padding: 12px 18px;
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
  min-width: 140px;
}

.cs-hero-meta strong {
  display: block;
  font-size: 1.4rem;
  color: #0f172a;
}

.cs-hero-meta span {
  font-size: 0.85rem;
  color: #475569;
}

.cs-hero-image-wrap {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
}

.cs-main-img {
  max-width: 43%;
  border-radius: 32px;
  display: block;
  box-shadow: 0 35px 90px rgba(15, 23, 42, 0.15);
}

.cs-hero-screen-stack {
  position: absolute;
  right: -20px;
  bottom: -40px;
  display: flex;
  gap: 16px;
}

.cs-hero-screen-stack img {
  width: 120px;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.25);
}

.cs-shape {
  position: absolute;
  bottom: 0;
  width: 60%;
  height: 60%;
  background: var(--fenizo-purple);
  z-index: 1;
}

.cs-shape-left {
  left: 0;
  clip-path: polygon(0 40%, 0% 100%, 100% 100%);
  opacity: 0.8;
}

.cs-shape-right {
  right: 0;
  clip-path: polygon(100% 40%, 0% 100%, 100% 100%);
  background: #5849d1;
}

@media (max-width: 768px) {
  .cs-hero-section { padding-top: 40px; }
  .cs-shape { height: 40%; }
  .cs-hero-screen-stack { position: relative; right: 0; bottom: 0; margin-top: 24px; }
}

.fnz-main-wrapper {
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  overflow: hidden;
  position: relative;
}

.fnz-services-container {
  max-width: 1200px;
  margin: 80px auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  padding: 0 20px;
}

@media (max-width: 1024px) {
  .fnz-services-container { grid-template-columns: 1fr; }
}

.fnz-section-title { font-size: 2.5rem; margin-bottom: 20px; color: #1a1a1a; }
.fnz-section-desc { color: #666; line-height: 1.7; margin-bottom: 30px; }
.fnz-eyebrow { text-transform: uppercase; font-size: 0.8rem; letter-spacing: 0.1em; color: #8b5cf6; margin-bottom: 10px; font-weight: 600; }

.fnz-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}

.fnz-pillar {
  background: #f8f4ff;
  border-radius: 18px;
  padding: 16px;
  border: 1px solid #e9ddff;
}

.fnz-pillar h3 { margin: 0 0 8px; font-size: 1rem; color: #4c1d95; }
.fnz-pillar p { margin: 0; font-size: 0.9rem; color: #4b5563; }

.fnz-btn-primary {
  background: var(--fenizo-orange);
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.fnz-feature-card {
  background: #fff;
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  margin-bottom: 20px;
  border: 1px solid #f1f5f9;
}

.fnz-card-text h3 { margin: 0 0 8px 0; font-size: 1.1rem; color: #111827; }
.fnz-card-text p { margin: 0; font-size: 0.95rem; color: #475569; }

.fnz-bottom-blue-area {
  background: var(--fenizo-blue);
  padding: 80px 0 120px 0;
  clip-path: polygon(0 15%, 100% 0, 100% 100%, 0% 100%);
  margin-top: -50px;
}

.fnz-bottom-header {
  max-width: 1200px;
  margin: 0 auto 50px auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  color: white;
  padding: 0 20px;
}

.fnz-slider-container {
  padding-left: calc((100vw - 1200px) / 2 + 20px);
  position: relative;
}

.fnz-slider-track {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 20px;
}

.fnz-slider-track::-webkit-scrollbar { display: none; }

.fnz-app-card {
  min-width: 320px;
  background: white;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 20px 45px rgba(15,23,42,0.25);
}

.fnz-app-img-wrap {
  width: 160px;
  height: 360px;
  border-radius: 26px;
  padding: 12px;
  background: linear-gradient(180deg,#f8fafc,#e2e8f0);
  box-shadow: inset 0 0 0 1px rgba(148,163,184,0.25);
  overflow: hidden;
  position: relative;
}

.fnz-app-img-wrap img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 15px 30px rgba(15,23,42,0.3);
  display: block;
  animation: phoneScroll 10s ease-in-out infinite alternate;
}

.fnz-app-card:nth-child(odd) .fnz-app-img-wrap img {
  animation-duration: 9s;
}

.fnz-app-card:nth-child(3n) .fnz-app-img-wrap img {
  animation-duration: 11s;
}

@keyframes phoneScroll {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-25px); }
  100% { transform: translateY(-45px); }
}

.fnz-app-info h3 { margin: 24px 0 8px; font-size: 1.1rem; color: #0f172a; }
.fnz-app-info p { margin: 0; font-size: 0.9rem; color: rgba(15,23,42,0.7); }

.fnz-next-btn {
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  cursor: pointer;
  font-size: 1.5rem;
}

@media (max-width: 768px) {
  .fnz-slider-container { padding-left: 20px; }
  .fnz-bottom-header { flex-direction: column; align-items: flex-start; gap: 20px; }
}

.fnz-faq-wrapper {
  padding: 80px 20px;
  background: #f8fafc;
}

.fnz-faq-container {
  max-width: 1100px;
  margin: 0 auto;
}

.fnz-faq-header h2 {
  margin: 10px 0;
  font-size: 2.1rem;
  color: #111827;
}

.fnz-faq-header p {
  color: #475569;
}

.fnz-faq-list {
  margin-top: 40px;
  display: grid;
  gap: 18px;
}

.fnz-faq-item {
  background: #fff;
  border-radius: 18px;
  padding: 20px 24px;
  box-shadow: 0 20px 45px rgba(15,23,42,0.08);
  border: 1px solid #e2e8f0;
}

.fnz-faq-item h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  color: #0f172a;
}

.fnz-faq-item p {
  margin: 0;
  color: #475569;
  line-height: 1.6;
}
