:root {
    --primary-purple: #8a70f5;
    --bg-green: #e1f5e6;
    --bg-purple: #ede7ff;
    --bg-blue: #e3f2fd;
    --text-dark: #1a1a1a;
}

.fenizo-hero {
    font-family: 'Inter', sans-serif;
    padding: 60px 5%;
    background-color: #fcfcfc;
    color: var(--text-dark);
    overflow: hidden;
}

/* Header Styles */
.hero-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
    position: relative;
}

.hero-title {
    font-size: 80px;
    font-weight: 800;
    margin: 0;
    line-height: 1;
}

.hero-subtitle {
    font-size: 18px;
    color: #666;
    margin: 20px 0;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button.primary {
    background: var(--primary-purple);
    color: #fff;
    box-shadow: 0 15px 35px rgba(138, 112, 245, 0.3);
}

.cta-button.ghost {
    border: 1px solid rgba(0, 0, 0, 0.15);
    color: var(--text-dark);
}

.cta-button:hover {
    transform: translateY(-3px);
}

.card-cta {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.card-cta .cta-button {
    font-size: 0.85rem;
    padding: 12px 20px;
    box-shadow: none;
}

.card-cta .cta-button.ghost {
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

.cta-group {
    display: flex;
    align-items: center;
    gap: 30px;
}

.btn-primary {
    background: var(--primary-purple);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(138, 112, 245, 0.3);
}

.user-avatars {
    display: flex;
    align-items: center;
}

.user-avatars img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid white;
    margin-right: -10px;
}

.more-users {
    margin-left: 15px;
    font-weight: bold;
    font-size: 14px;
}

.rating {
    font-size: 12px;
    margin-top: 5px;
}

.stars { color: #ffb400; }

/* Grid Layout */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 20px;
    align-items: stretch;
}

.grid-card {
    border-radius: 40px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
}

.card-green { background-color: var(--bg-green); }
.card-purple { background-color: var(--bg-purple); }
.card-blue { background-color: var(--bg-blue); }

.grid-card h2 { font-size: 32px; margin-bottom: 15px; }
.grid-card p { color: #555; line-height: 1.5; font-size: 16px; max-width: 200px; }

/* Phone Mockup */
.phone-container {
    display: flex;
    justify-content: center;
    z-index: 2;
    position: absolute;
    right: 48px;
}

.phone-mockup {
    width: 280px;
    height: 560px;
    background: #111;
    border-radius: 45px;
    padding: 12px;
    box-shadow: 0 50px 100px rgba(0,0,0,0.1);
    border: 8px solid #333;
}

.phone-mockup img {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    object-fit: cover;
    border: 4px solid #080b11;
}

.phone-screen {
    background: white;
    height: 100%;
    border-radius: 35px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.stats-overlay {
    background: rgba(10, 10, 30, 0.9);
    color: white;
    padding: 15px;
    border-radius: 20px;
    margin: 20px;
    display: flex;
    justify-content: space-around;
    font-size: 10px;
    position: absolute;
    width: 80%;
    top: 60px;
    left: 0;
    z-index: 5;
}

.ad-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(45deg, #ff9a9e, #fad0c4);
    margin-top: 100px;
}

.btn-app {
    width: 80%;
    margin: 20px auto;
    display: block;
    background: var(--primary-purple);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 12px;
}

/* Right Stack */
.right-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.card-illustration {
    position: absolute;
    bottom: -10px;
    right: 10px;
    opacity: 0.85;
    display: flex;
    justify-content: flex-end;
}

.card-illustration img {
    width: 100%;
    max-width: 61%;
    border-radius: 25px;
}

@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 50px; }
    .phone-container { order: -1; margin-bottom: 30px; }
}


:root {
  --purple-primary: #4e12c1;
  --bg-light: #f5f7ff;
  --text-dark: #1a1a1a;
}

.app-showcase-section {
  padding: 80px 0;
  background-color: var(--bg-light);
  font-family: var(--font-sans);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
  padding: 0 20px;
}

.section-header .badge {
  color: var(--purple-primary);
  background: rgba(78, 18, 193, 0.12);
  padding: 6px 15px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
}

.section-header h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin: 15px 0;
  color: var(--text-dark);
}

.section-header p {
  color: rgba(26, 26, 26, 0.7);
}

.marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

.marquee-wrapper {
  display: flex;
  width: fit-content;
  animation: scrollAnimation 40s linear infinite;
}

.marquee-container:hover .marquee-wrapper {
  animation-play-state: paused;
}

.marquee-group {
  display: flex;
  gap: 30px;
  padding-right: 30px;
}

.screen-card {
  width: 240px;
  background: var(--cultfit-white);
  padding: 12px;
  border-radius: 28px;
  box-shadow: 0 20px 40px rgba(2, 6, 23, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.screen-card img {
  width: 100%;
  border-radius: 22px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.card-label {
  margin-top: 12px;
  font-weight: 600;
  color: #2f2f2f;
}

@keyframes scrollAnimation {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes bubbleFloat {
  0% { transform: scale(1) translateY(0); }
  50% { transform: scale(1.05) translateY(-15px); }
  100% { transform: scale(1) translateY(0); }
}

@media (max-width: 768px) {
  .screen-card { width: 180px; }
}

:root {
    --f-purple: #a855f7;
    --f-dark: #1a1a1a;
    --f-bg: #f8f8f8;
    --f-light-purple: #e9d5ff;
}

.fenizo-contact {
    position: relative;
    padding: 100px 8%;
    background-color: var(--f-bg);
    min-height: 80vh;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Background Vertical Lines */
.bg-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, rgba(0,0,0,0.05) 1px, transparent 1px);
    background-size: 10% 100%;
    pointer-events: none;
}

.sub-label {
    font-weight: 700;
    font-size: 14px;
    color: #999;
    letter-spacing: 2px;
}

.main-heading {
    font-size: clamp(60px, 10vw, 120px);
    font-weight: 800;
    line-height: 0.9;
    color: var(--f-dark);
    margin-top: 20px;
    position: relative;
}

.text-purple {
    color: var(--f-purple);
}

.stars {
    color: #888;
    font-size: 0.4em;
    vertical-align: middle;
}

.cta-mini {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--f-purple);
    margin-left: 20px;
}

/* Bottom 3D Grid Layout */
.glass-grid-container {
    position: relative;
    width: 100%;
    height: 400px;
    margin-top: 50px;
    border-radius: 40px;
    overflow: hidden;
}

.contact-info-overlay {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 10;
    color: white;
}

.info-title {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

.pill-btn {
    display: inline-block;
    padding: 12px 24px;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.1);
    font-weight: 600;
    transition: 0.3s;
}

.pill-btn:hover { background: white; color: var(--f-purple); }

/* The 3D Cube Pattern */
.cube-pattern {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 0;
    width: 120%;
    height: 100%;
    transform: rotate(-5deg) translate(-50px, 50px);
}

.cube {
    background: linear-gradient(135deg, var(--f-purple), #d8b4fe);
    box-shadow: inset -5px -5px 15px rgba(0,0,0,0.2), 
                inset 5px 5px 15px rgba(255,255,255,0.3);
    border-radius: 8px;
    transition: 0.5s;
    opacity: 0.9;
}

.cube:nth-child(even) {
    background: linear-gradient(135deg, #c084fc, var(--f-light-purple));
    filter: blur(2px);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .main-heading { font-size: 60px; }
    .cube-pattern { grid-template-columns: repeat(5, 1fr); }
}
