:root {
--primary-green: #2ecc71;
--primary-green-dark: #27ae60;
--text-dark: #1a1a1a;
--text-muted: #666666;
--bg-white: #ffffff;
--blob-purple: #f3e8ff;
--blob-green: #e1fdf0;
--blob-blue: #e0f2fe;
--transition-smooth: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero {
position: relative;
width: 100%;
min-height: 90vh;
display: flex;
align-items: center;
overflow: hidden;
background-color: var(--bg-white);
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.hero__container {
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding: 0 40px;
display: grid;
grid-template-columns: 1.1fr 0.9fr;
align-items: center;
gap: 40px;
z-index: 2;
}

/* Background Blobs */
.hero__bg-shapes {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1;
}

.hero__blob {
position: absolute;
border-radius: 50%;
filter: blur(80px);
opacity: 0.6;
animation: blob-pulse 10s infinite alternate ease-in-out;
}

.hero__blob--purple {
width: 500px;
height: 500px;
background: var(--blob-purple);
top: -100px;
right: -50px;
}

.hero__blob--green {
width: 400px;
height: 400px;
background: var(--blob-green);
bottom: -50px;
left: -50px;
animation-delay: -2s;
}

.hero__blob--blue {
width: 350px;
height: 350px;
background: var(--blob-blue);
top: 40%;
right: 20%;
animation-delay: -5s;
}

/* Left Content */
.hero__badge {
display: inline-flex;
padding: 8px 16px;
background: linear-gradient(135deg, var(--bg-white), #f9fafb);
border: 1px solid rgba(0,0,0,0.05);
border-radius: 100px;
box-shadow: 0 4px 12px rgba(0,0,0,0.03);
margin-bottom: 24px;
}

.hero__badge span {
font-size: 14px;
font-weight: 600;
color: var(--text-muted);
letter-spacing: 0.5px;
}

.hero__headline {
font-size: 64px;
line-height: 1.1;
font-weight: 800;
color: #000;
margin-bottom: 24px;
}

.hero__headline-accent {
color: var(--text-dark);
position: relative;
display: inline-block;
}

.hero__headline-accent::after {
content: '';
position: absolute;
bottom: 8px;
left: 0;
width: 100%;
height: 8px;
background: var(--primary-green);
opacity: 0.2;
z-index: -1;
}

.hero__description {
font-size: 18px;
line-height: 1.6;
color: var(--text-muted);
max-width: 480px;
margin-bottom: 40px;
}

.hero__btn {
background-color: var(--primary-green);
color: white;
border: none;
padding: 18px 42px;
font-size: 16px;
font-weight: 600;
border-radius: 100px;
cursor: pointer;
transition: transform 0.2s, box-shadow 0.2s;
box-shadow: 0 10px 20px rgba(46, 204, 113, 0.2);
}

.hero__btn:hover {
transform: translateY(-2px);
box-shadow: 0 15px 25px rgba(46, 204, 113, 0.3);
background-color: var(--primary-green-dark);
}

.hero__metrics {
display: flex;
gap: 32px;
margin-top: 60px;
}

.hero__metric-item {
display: flex;
align-items: center;
gap: 12px;
}

.hero__metric-icon {
width: 10px;
height: 10px;
border-radius: 50%;
}

.hero__metric-icon--green { background: #2ecc71; }
.hero__metric-icon--purple { background: #a855f7; }
.hero__metric-icon--blue { background: #3b82f6; }

.hero__metric-text strong {
display: block;
font-size: 18px;
color: var(--text-dark);
}

.hero__metric-text span {
font-size: 13px;
color: var(--text-muted);
}

/* Right Content - Phone Mockup */
.hero__visual {
display: flex;
justify-content: center;
perspective: 1000px;
}

.hero__phone-canvas {
position: relative;
width: 100%;
max-width: 400px;
}

.hero__phone-wrapper {
width: 100%;
position: relative;
height: 540px;
transform: none;
transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero__phone-frame {
position: relative;
width: 100%;
height: 100%;
}

.hero__phone-img {
position: absolute;
width: 210px;
max-width: 70%;
height: auto;
border-radius: 34px;
box-shadow: -8px 20px 50px rgba(15, 23, 42, 0.25);
background: #000;
}

.phone--center {
    right: -150px;
    top: 0%;
    /* transform: translateY(-50%) rotate(-6deg); */
    width: 260px;
    z-index: 3;
}

.phone--left {
    left: 8px;
    top: -226px;
    /* transform: rotate(-2deg); */
    width: 233px;
    z-index: 2;
}

.phone--top {
left: 12px;
bottom: -268px;
/* transform: rotate(8deg); */
width: 233px;
z-index: 1;
}

/* Animations */
.reveal {
opacity: 0;
transform: translateY(30px);
transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal--active {
opacity: 1;
transform: translateY(0);
}

@keyframes blob-pulse {
from { transform: translate(0, 0) scale(1); }
to { transform: translate(30px, -20px) scale(1.1); }
}

@keyframes phone-float {
0% { transform: translateY(0); }
100% { transform: translateY(-20px); }
}

.hero--animate-phone .hero__phone-wrapper {
animation: phone-float 4s infinite alternate ease-in-out;
}

/* Responsive */
@media (max-width: 1024px) {
.hero__headline { font-size: 48px; }
.hero__container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
.hero { padding: 80px 0; height: auto; }
.hero__container {
grid-template-columns: 1fr;
text-align: center;
}
.hero__content { order: 1; display: flex; flex-direction: column; align-items: center; }
.hero__visual { order: 2; margin-top: 60px; }
.hero__description { margin-left: auto; margin-right: auto; }
.hero__metrics { justify-content: center; }
.hero__phone-wrapper { height: 420px; margin: 0 auto; }
@keyframes phone-float {
0% { transform: translateY(0); }
100% { transform: translateY(-15px); }
}
}

  :root{
    --fz-bg:#ffffff;
    --fz-soft:#f6f7fb;
    --fz-text:#0f172a;
    --fz-muted:#475569;
    --fz-green:#7ad11f;        /* change to your brand */
    --fz-green-2:#b7ff4b;
    --fz-border:rgba(2,6,23,.08);
    --fz-shadow:0 18px 50px rgba(2,6,23,.08);
    --fz-radius:18px;
  }

  .fz-container{
    width:min(1120px, calc(100% - 40px));
    margin-inline:auto;
  }

  /* Impact (stats + headline) */
  .fz-impact{
    padding: 56px 0 30px;
    background: var(--fz-bg);
  }
  .fz-stats{
    display:grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    border: 2px solid rgba(122, 209, 31, .35);
    border-radius: 14px;
    padding: 18px 16px;
    background: linear-gradient(180deg, rgba(122,209,31,.08), rgba(122,209,31,.03));
  }
  .fz-stat{
    text-align:center;
  }
  .fz-stat__num{
    font-size: 28px;
    font-weight: 800;
    color: var(--fz-green);
    line-height: 1.1;
  }
  .fz-stat__label{
    margin-top: 4px;
    font-size: 13px;
    font-weight: 600;
    color: var(--fz-text);
  }

  .fz-impact__title{
    margin: 22px auto 10px;
    text-align:center;
    font-size: clamp(22px, 3.2vw, 34px);
    font-weight: 900;
    letter-spacing: -.02em;
    color: var(--fz-text);
    line-height: 1.15;
    max-width: 900px;
  }
  .fz-impact__title span{
    color: var(--fz-green);
    font-weight: 900;
  }
  .fz-impact__sub{
    text-align:center;
    margin: 0 auto;
    max-width: 820px;
    color: var(--fz-muted);
    font-size: 15px;
    line-height: 1.7;
  }

  /* Feature sections */
  .fz-feature{
    padding: 52px 0;
    background: var(--fz-soft);
  }
  .fz-feature--alt{
    background: #ffffff;
  }
  .fz-feature__grid{
    display:grid;
    grid-template-columns: 1.1fr .9fr;
    align-items:center;
    gap: 34px;
  }

  .fz-chip{
    display:inline-flex;
    align-items:center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(122,209,31,.14);
    color: #2b5a08;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: .02em;
  }

  .fz-feature__title{
    margin: 12px 0 10px;
    font-size: clamp(20px, 2.4vw, 30px);
    font-weight: 900;
    color: var(--fz-text);
    line-height: 1.15;
  }
  .fz-feature__desc{
    margin: 0 0 14px;
    color: var(--fz-muted);
    line-height: 1.75;
    font-size: 15px;
    max-width: 520px;
  }

  .fz-bullets{
    margin: 0;
    padding: 0;
    list-style: none;
    display:grid;
    gap: 10px;
  }
  .fz-bullets li{
    position: relative;
    padding-left: 26px;
    color: var(--fz-text);
    font-weight: 600;
    font-size: 14px;
  }
  .fz-bullets li::before{
    content:"";
    position:absolute;
    left:0;
    top: 7px;
    width: 14px;
    height: 14px;
    border-radius: 4px;
    background: linear-gradient(135deg, var(--fz-green), var(--fz-green-2));
    box-shadow: 0 8px 18px rgba(122,209,31,.25);
  }

  .fz-actions{
    margin-top: 18px;
    display:flex;
    gap: 12px;
    flex-wrap: wrap;
  }
  .fz-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 14px;
    text-decoration:none;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
    border: 1px solid transparent;
    user-select:none;
  }
  .fz-btn span{ font-weight: 900; }
  .fz-btn--primary{
    background: linear-gradient(135deg, var(--fz-green), var(--fz-green-2));
    color: #0b2a00;
    box-shadow: 0 18px 40px rgba(122,209,31,.25);
  }
  .fz-btn--ghost{
    background: rgba(255,255,255,.75);
    color: var(--fz-text);
    border-color: var(--fz-border);
  }
  .fz-btn:hover{
    transform: translateY(-1px);
    box-shadow: var(--fz-shadow);
  }

  .fz-ill{
    width: 100%;
    max-width: 460px;
    margin-left:auto;
    display:block;
    filter: drop-shadow(0 24px 60px rgba(2,6,23,.14));
  }

  /* Services Cards */
  .fz-services{
    padding: 52px 0 60px;
    background: #ffffff;
  }
  .fz-services__title{
    text-align:center;
    font-size: clamp(20px, 2.7vw, 32px);
    font-weight: 900;
    color: var(--fz-text);
    margin: 0 0 10px;
    line-height: 1.15;
  }
  .fz-services__title span{
    color: var(--fz-green);
  }
  .fz-services__sub{
    text-align:center;
    margin: 0 auto 26px;
    max-width: 820px;
    color: var(--fz-muted);
    line-height: 1.7;
    font-size: 15px;
  }

  .fz-cards{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .fz-card{
    border: 1px solid var(--fz-border);
    border-radius: var(--fz-radius);
    padding: 18px 18px 16px;
    background: linear-gradient(180deg, rgba(122,209,31,.06), rgba(255,255,255,1));
    box-shadow: 0 18px 40px rgba(2,6,23,.06);
  }
  .fz-card__icon{
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display:grid;
    place-items:center;
    background: rgba(122,209,31,.18);
    font-size: 22px;
  }
  .fz-card__title{
    margin: 12px 0 6px;
    font-weight: 900;
    color: var(--fz-text);
  }
  .fz-card__desc{
    margin: 0 0 12px;
    color: var(--fz-muted);
    line-height: 1.6;
    font-size: 14px;
  }
  .fz-btn--mini{
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(122,209,31,.18);
    color: #1b3b03;
    border-color: rgba(122,209,31,.22);
  }

  /* Responsive */
  @media (max-width: 980px){
    .fz-stats{ grid-template-columns: repeat(2, 1fr); }
    .fz-feature__grid{ grid-template-columns: 1fr; }
    .fz-ill{ max-width: 520px; margin: 10px auto 0; }
    .fz-cards{ grid-template-columns: 1fr; }
    .fz-feature__right{ order: 2; }
  }

  
:root {
  --showcase-bg: #f8faff;
  --showcase-accent: #5e60ce;
  --showcase-text: #1a1a1a;
  --card-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.ui-showcase {
  position: relative;
  background-color: var(--showcase-bg);
  padding: 100px 0;
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.ui-showcase__bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(94, 96, 206, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

.ui-showcase__container {
  max-width: 1440px;
  margin: 0 auto;
  text-align: center;
}

.ui-showcase__header {
  margin-bottom: 60px;
  padding: 0 20px;
}

.ui-showcase__label {
  display: inline-block;
  color: var(--showcase-accent);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.ui-showcase__title {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 800;
  color: var(--showcase-text);
  line-height: 1.2;
}

/* Collage & Perspective */
.ui-showcase__perspective-box {
  width: 110%;
  margin-left: -5%;
  perspective: 1500px;
  transform: rotate(-6deg) skew(-2deg, 0deg);
  will-change: transform;
}

.ui-showcase__collage-strip {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 40px 0;
}

.ui-showcase__row {
  display: flex;
  gap: 30px;
  white-space: nowrap;
}

.ui-card {
  flex: 0 0 240px;
  height: 480px;
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
}

.ui-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.ui-card.card-lg {
  flex: 0 0 280px;
  height: 560px;
  margin-top: -40px; /* Create staggered depth */
}

/* Responsive Rules */
@media (max-width: 1024px) {
  .ui-showcase__perspective-box {
    transform: rotate(-3deg) skew(-1deg, 0deg);
    width: 100%;
    margin-left: 0;
  }
  .ui-card { flex: 0 0 200px; height: 400px; }
  .ui-card.card-lg { flex: 0 0 220px; height: 440px; margin-top: -20px; }
}

@media (max-width: 768px) {
    .phone--left{
    display: none;
    }
  .ui-showcase { padding: 60px 0; }
  .ui-showcase__perspective-box { 
    transform: none; /* Flatten for mobile scroll feel */
  }
  .ui-showcase__collage-strip {
    overflow-x: auto;
    flex-direction: row; /* Single line for mobile row */
    padding: 20px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }
  .ui-showcase__row { gap: 15px; }
  .ui-card { scroll-snap-align: center; }
  .row-left, .row-right { animation: none !important; } /* Stop auto-move on mobile */
}
