﻿/* ========================================
   MATGARY — Portfolio Web Design Agency
   style.css
======================================== */

/* ===== VARIABLES ===== */
:root {
  --bg:           #080808;
  --bg2:          #0f1117;
  --bg3:          #161b27;
  --border:       #1e2433;
  --text:         #ffffff;
  --muted:        #8892a4;
  --accent:       #00d4ff;
  --accent2:      #7c3aed;
  --accent-glow:  rgba(0,212,255,0.22);
  --accent-dark:  rgba(0,212,255,0.07);
  --radius:       18px;
  --radius-sm:    10px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Cairo', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
}
img { max-width: 100%; }
a { text-decoration: none; }
section { padding: 100px 0; }

/* ===== UTILITIES ===== */
.accent      { color: var(--accent); }
.muted       { color: var(--muted); }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dark);
  border: 1px solid rgba(0,212,255,.25);
  border-radius: 50px;
  padding: 5px 20px;
  margin-bottom: 18px;
}
.section-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
}
.section-sub {
  color: var(--muted);
  font-size: .95rem;
  max-width: 540px;
  margin: 14px auto 0;
  line-height: 1.85;
}

/* BUTTONS */
.btn-accent {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #000;
  font-weight: 800;
  font-size: .9rem;
  border: none;
  border-radius: 50px;
  padding: 13px 32px;
  transition: all .3s;
  font-family: 'Cairo', sans-serif;
  cursor: pointer;
}
.btn-accent:hover {
  background: #fff;
  color: #000;
  box-shadow: 0 0 30px var(--accent-glow);
  transform: translateY(-3px);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  font-weight: 800;
  font-size: .9rem;
  border-radius: 50px;
  padding: 13px 32px;
  transition: all .3s;
  font-family: 'Cairo', sans-serif;
  cursor: pointer;
}
.btn-outline:hover {
  background: var(--accent-dark);
  box-shadow: 0 0 28px var(--accent-glow);
  transform: translateY(-3px);
  color: var(--accent);
}

/* ========================================
   NAVBAR
======================================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all .4s;
}
#navbar.scrolled {
  background: rgba(8,8,8,.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,.5);
}
.nav-logo {
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -1px;
}
.nav-logo span { color: var(--accent); }
.navbar-nav .nav-link {
  color: rgba(255,255,255,.92) !important;
  font-weight: 700;
  font-size: .88rem;
  padding: 7px 15px !important;
  border-radius: 8px;
  transition: all .2s;
  text-shadow: 0 1px 6px rgba(0,0,0,.6);
}
.navbar-nav .nav-link:hover {
  color: var(--accent) !important;
  background: var(--accent-dark);
}
.menu-btn {
  background: none;
  border: 1.5px solid var(--border);
  color: var(--text);
  border-radius: var(--radius-sm);
  padding: 7px 12px;
  font-size: .9rem;
  cursor: pointer;
  transition: border-color .2s;
}
.menu-btn:hover { border-color: var(--accent); color: var(--accent); }

/* ========================================
   HERO
======================================== */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(0,212,255,.06) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(124,58,237,.05) 0%, transparent 60%),
    var(--bg);
}
/* grid lines */
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(0,212,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,.03) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(ellipse at 60% 40%, black 20%, transparent 75%);
}
/* glow orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: .5;
}
.orb1 { width: 400px; height: 400px; background: rgba(0,212,255,.12); top: -100px; right: -80px; }
.orb2 { width: 300px; height: 300px; background: rgba(124,58,237,.1); bottom: 0; left: -60px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-dark);
  border: 1px solid rgba(0,212,255,.3);
  border-radius: 50px;
  padding: 7px 20px;
  font-size: .78rem;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 28px;
  letter-spacing: .5px;
}
.hero-eyebrow .dot-pulse {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .4; transform: scale(.7); }
}

#hero h1 {
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 22px;
  letter-spacing: -1px;
}
#hero .hero-desc {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.9;
  margin-bottom: 36px;
}
/* Free Store Hero Badge */
.hero-free-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34,197,94,.08);
  border: 1px solid rgba(34,197,94,.35);
  border-radius: 50px;
  padding: 7px 18px;
  font-size: .8rem;
  color: #22c55e;
  font-weight: 700;
  margin-bottom: 22px;
  text-decoration: none;
  transition: background .25s, border-color .25s, transform .2s;
  letter-spacing: .3px;
}
.hero-free-badge:hover {
  background: rgba(34,197,94,.15);
  border-color: rgba(34,197,94,.6);
  color: #4ade80;
  transform: translateY(-2px);
}
.hero-free-badge strong { color: #fff; }
.hero-free-badge .fa-arrow-left { font-size: .7rem; opacity: .7; }
.hfb-dot {
  width: 7px; height: 7px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 1.8s infinite;
  flex-shrink: 0;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 52px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 0; margin-top: 8px; }
.h-stat {
  padding: 0 32px;
}
.h-stat + .h-stat {
  border-right: 2px solid var(--border);
}
.h-stat:first-child {
  padding-right: 0;
}
.h-stat:last-child {
  padding-left: 0;
}
.h-stat .num { font-size: 2rem; font-weight: 900; color: var(--accent); line-height: 1; }
.h-stat .lbl { font-size: .75rem; color: var(--muted); margin-top: 4px; line-height: 1.5; }

/* Hero Visual */
.mockup-wrap {
  position: relative;
  padding: 20px 0 40px;
  overflow: hidden;
}
.hero-shot {
  width: 120%;
  max-width: 720px;
  margin-left: -10%;
  display: block;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,.6));
  animation: heroFloat 6s ease-in-out infinite;
}
@media (max-width: 991px) {
  .hero-shot {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
  }
}
@keyframes heroFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

.float-chip {
  position: absolute;
  display: flex; align-items: center; gap: 8px;
  background: var(--bg2);
  border: 1px solid var(--accent);
  border-radius: 50px;
  padding: 9px 18px;
  font-size: .78rem; font-weight: 700; color: var(--accent);
  box-shadow: 0 0 24px var(--accent-glow);
  white-space: nowrap;
}
.chip-top    { top: 5px; right: 0; }
.chip-bottom { bottom: 5px; left: 0; }
.chip-dot { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; }

/* ========================================
   THEMES SHOWCASE SECTION
======================================== */
#themes { background: linear-gradient(180deg, var(--bg2) 0%, var(--bg) 100%); }

.themes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Theme card wrapper */
.theme-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .35s;
}
.theme-card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 48px var(--accent-glow);
  transform: translateY(-8px);
}
.theme-card.hidden {
  opacity: 0;
  transform: scale(.9);
  pointer-events: none;
  display: none;
}

/* Browser chrome bar */
.theme-preview-wrap {
  position: relative;
  overflow: hidden;
}
.theme-browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #1a1a2e;
  padding: 7px 12px;
  border-bottom: 1px solid #2a2a42;
}
.bb-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  display: inline-block;
}
.bb-dot.r { background: #ff5f57; }
.bb-dot.y { background: #febc2e; }
.bb-dot.g { background: #28c840; }
.bb-url {
  margin-right: auto;
  font-size: .58rem;
  color: #666;
  font-family: monospace;
}

/* The preview screen */
.theme-screen {
  height: 220px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
}

/* Themed screens */
.theme-neon-dark       { background: #080808; }
.theme-pure-white      { background: #ffffff; }
.theme-sunset          { background: linear-gradient(135deg,#1a0533 0%,#5b1a6c 40%,#c0392b 100%); }
.theme-minimal-ink     { background: #fafafa; }
.theme-forest          { background: linear-gradient(160deg,#0a1a0f 0%,#0d2d15 60%,#0f3d1a 100%); }
.theme-luxury-gold     { background: linear-gradient(160deg,#0a0800 0%,#1a1500 60%,#0d0b00 100%); }
.theme-lens-focus      { background: radial-gradient(ellipse 80% 60% at 50% 30%,#2a1500 0%,#0d0b08 70%); }
.theme-clean-cv        { background: #f8fafc; }
.theme-creative-agency { background: linear-gradient(135deg,#0a0010 0%,#1a003a 50%,#0d0020 100%); }

/* Miniature UI elements inside screen */
.ts-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.ts-logo {
  font-size: .6rem;
  font-weight: 900;
  color: #00d4ff;
  letter-spacing: -0.3px;
}
.ts-logo span { color: var(--accent); }
.ts-nav { display: flex; gap: 5px; }
.ts-nav span {
  width: 24px; height: 4px;
  background: rgba(255,255,255,.25);
  border-radius: 2px;
}

.ts-hero {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}
.ts-eyebrow {
  width: 80px; height: 9px;
  background: rgba(0,212,255,.18);
  border: 1px solid rgba(0,212,255,.35);
  border-radius: 20px;
  margin-bottom: 4px;
}
.ts-h1 {
  width: 85%; height: 10px;
  background: rgba(255,255,255,.85);
  border-radius: 4px;
}
.ts-h1-sm { width: 55%; height: 10px; background: #00d4ff; margin-top: -2px; }
.ts-sub { width: 70%; height: 6px; background: rgba(255,255,255,.25); border-radius: 3px; }
.ts-btns { display: flex; gap: 8px; margin-top: 4px; }
.ts-btn {
  height: 18px; width: 58px;
  border-radius: 20px;
}
.ts-btn-acc { background: #00d4ff; }
.ts-btn-out {
  background: transparent;
  border: 1px solid #00d4ff;
}

.ts-cards-row {
  display: flex;
  gap: 6px;
  margin-top: 10px;
}
.ts-card {
  flex: 1;
  height: 42px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 6px;
}
.ts-divider {
  width: 100%;
  height: 1px;
  background: #e5e5e5;
  margin: 6px 0;
}

/* Hover overlay on preview */
.theme-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s;
}
.theme-card:hover .theme-hover-overlay {
  opacity: 1;
}
.theme-hover-overlay {
  flex-direction: column;
  gap: 10px;
}

.theme-preview-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #000;
  font-weight: 800;
  font-size: .82rem;
  padding: 10px 24px;
  border-radius: 50px;
  transition: all .25s;
  font-family: 'Cairo', sans-serif;
}
.theme-preview-btn:hover {
  background: #fff;
  transform: scale(1.05);
}
.theme-order-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.7);
  font-weight: 800;
  font-size: .82rem;
  padding: 9px 22px;
  border-radius: 50px;
  font-family: 'Cairo', sans-serif;
  transition: all .25s;
}
.theme-order-btn:hover {
  background: rgba(255,255,255,.12);
  transform: scale(1.05);
}

/* Badge */
.theme-badge {
  position: absolute;
  top: 40px; left: 12px;
  background: var(--accent);
  color: #000;
  font-size: .62rem;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: 20px;
  letter-spacing: .5px;
}

/* Card info bottom */
.theme-info {
  padding: 18px 20px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.theme-palette {
  display: flex;
  gap: 6px;
  align-items: center;
}
.tp-dot {
  width: 18px; height: 18px;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 2px 6px rgba(0,0,0,.3);
}
.theme-meta h6 { font-weight: 800; font-size: .95rem; margin: 0 0 2px; }
.theme-meta p  { font-size: .78rem; color: var(--muted); margin: 0; line-height: 1.5; }
.theme-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.theme-tags span {
  font-size: .65rem;
  font-weight: 700;
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: .3px;
}

/* Themes responsive */
@media (max-width: 1199px) {
  .themes-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .themes-grid { grid-template-columns: 1fr; }
  .theme-screen { height: 180px; }
}

/* ========================================
   PORTFOLIO SECTION
======================================== */
#portfolio { background: var(--bg); }

.filter-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 50px;
}
.f-btn {
  background: var(--bg2);
  border: 1px solid var(--border);
  color: var(--muted);
  border-radius: 50px;
  padding: 9px 24px;
  font-size: .84rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .25s;
  font-family: 'Cairo', sans-serif;
}
.f-btn:hover, .f-btn.active {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
  box-shadow: 0 0 18px var(--accent-glow);
}

/* Portfolio Grid */
#port-grid { position: relative; }
.port-item {
  transition: opacity .35s, transform .35s;
}
.port-item.hidden {
  opacity: 0 !important;
  transform: scale(.9) !important;
  pointer-events: none;
  position: absolute;
}
.port-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .35s;
  cursor: pointer;
}
.port-card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 50px var(--accent-glow);
  transform: translateY(-8px);
}
.port-img-wrap { position: relative; overflow: hidden; }
.port-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform .45s;
}
.port-card:hover .port-img { transform: scale(1.07); }

/* Category pill */
.port-cat {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0,212,255,.5);
  color: var(--accent);
  border-radius: 50px;
  padding: 4px 14px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .5px;
}
/* Hover overlay */
.port-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,212,255,.1) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity .35s;
}
.port-card:hover .port-overlay { opacity: 1; }
.port-overlay h6 { font-weight: 800; font-size: 1rem; margin-bottom: 6px; }
.port-overlay p  { font-size: .8rem; color: var(--muted); margin-bottom: 14px; line-height: 1.6; }
.port-link {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--accent);
  color: #000;
  font-weight: 800;
  font-size: .78rem;
  border-radius: 50px;
  padding: 7px 20px;
  transition: all .25s;
  width: fit-content;
}
.port-link:hover { background: #fff; }

/* Card info bar */
.port-info {
  padding: 18px 20px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.port-info-text h6 { font-weight: 800; font-size: .9rem; margin-bottom: 2px; }
.port-info-text p  { font-size: .75rem; color: var(--muted); margin: 0; }
.port-arrow {
  width: 36px; height: 36px;
  background: var(--accent-dark);
  border: 1px solid rgba(0,212,255,.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: .8rem;
  transition: all .25s;
  flex-shrink: 0;
}
.port-card:hover .port-arrow {
  background: var(--accent);
  color: #000;
  box-shadow: 0 0 14px var(--accent-glow);
}

/* ========================================
   PROCESS / HOW WE WORK
======================================== */
#process { background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 50%, var(--bg) 100%); }

.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.process-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  transition: all .35s;
  overflow: hidden;
}
.process-card::before {
  content: attr(data-step);
  position: absolute;
  bottom: -10px; left: -6px;
  font-size: 6rem;
  font-weight: 900;
  color: var(--border);
  line-height: 1;
  transition: color .35s;
  user-select: none;
}
.process-card:hover { border-color: var(--accent); box-shadow: 0 0 40px var(--accent-glow); transform: translateY(-6px); }
.process-card:hover::before { color: rgba(0,212,255,.06); }
.process-icon {
  width: 56px; height: 56px;
  background: var(--accent-dark);
  border: 1px solid rgba(0,212,255,.3);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 18px;
  position: relative; z-index: 1;
}
.process-card h5 { font-weight: 800; font-size: 1.05rem; margin-bottom: 10px; position: relative; z-index: 1; }
.process-card p  { color: var(--muted); font-size: .87rem; line-height: 1.8; position: relative; z-index: 1; margin: 0; }

/* ========================================
   STATS BAR
======================================== */
#stats {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat-card {
  text-align: center;
  padding: 28px 20px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all .3s;
}
.stat-card:hover { border-color: var(--accent); box-shadow: 0 0 28px var(--accent-glow); }
.stat-num {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.stat-lbl { font-size: .82rem; color: var(--muted); margin-top: 8px; line-height: 1.5; }

/* ========================================
   ABOUT / WHY US
======================================== */
/* FREE STORE HERO */
.free-store-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #020d05 0%, #051a0a 50%, #020d05 100%);
  border: 1px solid rgba(34,197,94,.25);
  border-radius: 24px;
  padding: 64px 52px;
  margin-top: 16px;
}
.fsh-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(34,197,94,.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(34,197,94,.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
.fsh-orb {
  position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none;
}
.fsh-orb1 { width: 400px; height: 400px; background: rgba(34,197,94,.08); top: -120px; left: -80px; }
.fsh-orb2 { width: 300px; height: 300px; background: rgba(0,212,255,.05); bottom: -100px; right: -60px; }

.fsh-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.35);
  border-radius: 50px; padding: 6px 18px;
  font-size: .7rem; font-weight: 800; color: #22c55e;
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 20px;
}
.fsh-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #22c55e;
  box-shadow: 0 0 8px #22c55e; animation: pulse 1.5s ease-in-out infinite;
  display: inline-block;
}
.fsh-title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 900; line-height: 1.15;
  color: #fff; margin-bottom: 16px; letter-spacing: -1px;
}
.fsh-acc { color: #22c55e; }
.fsh-desc {
  font-size: .95rem; color: var(--muted);
  max-width: 500px; line-height: 2; margin-bottom: 28px;
}
.fsh-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px;
  margin-bottom: 32px;
}
.fsh-feat {
  display: flex; align-items: center; gap: 9px;
  font-size: .83rem; color: rgba(255,255,255,.75);
}
.fsh-feat i { color: #22c55e; font-size: .9rem; flex-shrink: 0; }
.fsh-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.fsh-btn-main {
  display: inline-flex; align-items: center; gap: 9px;
  background: #22c55e; color: #000;
  font-weight: 900; font-size: .95rem;
  padding: 14px 32px; border-radius: 50px;
  font-family: 'Cairo', sans-serif;
  transition: all .3s; text-decoration: none;
  box-shadow: 0 0 28px rgba(34,197,94,.35);
}
.fsh-btn-main:hover { background: #16a34a; transform: translateY(-3px); box-shadow: 0 0 40px rgba(34,197,94,.5); color: #000; }
.fsh-btn-out {
  display: inline-flex; align-items: center; gap: 9px;
  background: transparent; color: #22c55e;
  border: 1.5px solid rgba(34,197,94,.5);
  font-weight: 700; font-size: .92rem;
  padding: 14px 28px; border-radius: 50px;
  font-family: 'Cairo', sans-serif;
  transition: all .3s; text-decoration: none;
}
.fsh-btn-out:hover { background: rgba(34,197,94,.08); transform: translateY(-3px); color: #22c55e; }

/* Mockup */
.fsh-mockup { position: relative; display: inline-block; }
.fsh-browser {
  background: #0a1a0f; border: 1px solid rgba(34,197,94,.2);
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.7);
  animation: float 5s ease-in-out infinite;
}
.fsh-bb {
  background: rgba(34,197,94,.06); border-bottom: 1px solid rgba(34,197,94,.12);
  padding: 10px 14px; display: flex; align-items: center; gap: 7px;
}
.fsh-dot-r { width: 9px; height: 9px; border-radius: 50%; background: #f85149; }
.fsh-dot-y { width: 9px; height: 9px; border-radius: 50%; background: #f0b429; }
.fsh-dot-g { width: 9px; height: 9px; border-radius: 50%; background: #22c55e; }
.fsh-url {
  flex: 1; background: rgba(0,0,0,.3); border-radius: 6px;
  padding: 3px 10px; font-size: .6rem; color: rgba(255,255,255,.4);
  text-align: center; font-family: monospace;
}
.fsh-screen { padding: 18px; }
.fsh-s-nav {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.fsh-s-logo span {
  display: block; width: 70px; height: 10px;
  background: #22c55e; border-radius: 5px; opacity: .7;
}
.fsh-s-links { display: flex; gap: 8px; }
.fsh-s-links span {
  display: block; width: 35px; height: 7px;
  background: rgba(255,255,255,.12); border-radius: 4px;
}
.fsh-s-hero { margin-bottom: 18px; }
.fsh-s-h1 { width: 80%; height: 12px; background: rgba(255,255,255,.15); border-radius: 6px; margin-bottom: 7px; }
.fsh-s-h2 { width: 55%; height: 8px; background: rgba(34,197,94,.3); border-radius: 4px; margin-bottom: 12px; }
.fsh-s-btn { width: 100px; height: 26px; background: #22c55e; border-radius: 20px; opacity: .85; }
.fsh-s-products { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.fsh-s-card {
  background: rgba(34,197,94,.05); border: 1px solid rgba(34,197,94,.12);
  border-radius: 8px; overflow: hidden;
}
.fsh-s-img { width: 100%; height: 54px; background: rgba(34,197,94,.1); }
.fsh-s-info { padding: 6px 7px; }
.fsh-s-name { width: 75%; height: 6px; background: rgba(255,255,255,.15); border-radius: 3px; margin-bottom: 5px; }
.fsh-s-price { width: 45%; height: 6px; background: rgba(34,197,94,.4); border-radius: 3px; }

.fsh-float-chip {
  position: absolute; top: -16px; right: -18px;
  background: #22c55e; color: #000;
  font-size: .72rem; font-weight: 900;
  padding: 8px 16px; border-radius: 30px;
  display: flex; align-items: center; gap: 7px;
  box-shadow: 0 0 20px rgba(34,197,94,.5);
}
.fsh-float-stat {
  position: absolute; bottom: -14px; left: -20px;
  background: var(--bg2); border: 1px solid rgba(34,197,94,.3);
  border-radius: 14px; padding: 10px 18px; text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.5);
}
.fsh-fs-n { font-size: 1.3rem; font-weight: 900; color: #22c55e; line-height: 1; }
.fsh-fs-l { font-size: .65rem; color: var(--muted); margin-top: 2px; }

@media(max-width:991px){
  .free-store-hero { padding: 40px 24px; }
  .fsh-features { grid-template-columns: 1fr; }
  .fsh-mockup { margin-top: 24px; }
}

/* ---- */
#about { background: var(--bg); }
.about-img-col { position: relative; }
.about-img {
  width: 100%; height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: block;
}
.about-chip {
  position: absolute;
  bottom: 24px; right: -16px;
  background: var(--accent);
  color: #000;
  font-weight: 900;
  border-radius: var(--radius);
  padding: 18px 24px;
  text-align: center;
  box-shadow: 0 0 32px var(--accent-glow);
  font-size: .88rem;
}
.about-chip .big { font-size: 2.2rem; font-weight: 900; display: block; line-height: 1; }

.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 28px 0; }
.why-item {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px;
  transition: all .3s;
}
.why-item:hover { border-color: var(--accent); }
.why-icon {
  width: 40px; height: 40px;
  background: var(--accent-dark);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  font-size: .95rem;
  flex-shrink: 0;
}
.why-item h6 { font-weight: 800; font-size: .88rem; margin-bottom: 4px; }
.why-item p  { font-size: .78rem; color: var(--muted); margin: 0; line-height: 1.6; }

/* Tech stack bar */
.tech-bar {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 28px;
}
.tech-pill {
  display: flex; align-items: center; gap: 7px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: .78rem;
  color: var(--muted);
  transition: all .2s;
}
.tech-pill i { color: var(--accent); font-size: .75rem; }
.tech-pill:hover { border-color: var(--accent); color: var(--text); }

/* ========================================
   TESTIMONIALS
======================================== */
#testimonials { background: var(--bg2); }

.testi-carousel-track { overflow: hidden; }
.testi-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }

.testi-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all .35s;
  height: 100%;
}
.testi-card:hover { border-color: var(--accent); box-shadow: 0 0 30px var(--accent-glow); }
.testi-stars { color: var(--accent); font-size: .85rem; margin-bottom: 14px; }
.testi-quote {
  font-size: 2.8rem;
  color: var(--accent);
  opacity: .35;
  line-height: .8;
  margin-bottom: 10px;
}
.testi-text { font-size: .9rem; color: var(--muted); line-height: 1.9; margin-bottom: 22px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
}
.testi-name { font-weight: 800; font-size: .9rem; }
.testi-role { font-size: .75rem; color: var(--muted); }

.carousel-nav { display: flex; justify-content: center; gap: 10px; margin-top: 36px; }
.c-btn {
  width: 44px; height: 44px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: .9rem;
  cursor: pointer;
  transition: all .25s;
}
.c-btn:hover { background: var(--accent-dark); border-color: var(--accent); color: var(--accent); }

/* ========================================
   CONTACT
======================================== */
#contact {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
#contact::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,212,255,.05) 0%, transparent 70%);
  pointer-events: none;
}
.contact-form-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px 44px;
  position: relative;
}
.form-field { margin-bottom: 20px; }
.form-field label { display: block; font-size: .8rem; color: var(--muted); margin-bottom: 8px; font-weight: 600; }
.form-input {
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-family: 'Cairo', sans-serif;
  font-size: .9rem;
  transition: border-color .25s, box-shadow .25s;
  outline: none;
}
.form-input::placeholder { color: #444c5e; }
.form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dark);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact-side { display: flex; flex-direction: column; gap: 14px; }
.contact-card {
  display: flex; align-items: center; gap: 16px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  transition: all .3s;
}
.contact-card:hover { border-color: var(--accent); box-shadow: 0 0 20px var(--accent-glow); }
.cc-icon {
  width: 46px; height: 46px;
  background: var(--accent-dark);
  border: 1px solid rgba(0,212,255,.3);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 1rem;
  flex-shrink: 0;
}
.cc-label { font-size: .73rem; color: var(--muted); }
.cc-val   { font-weight: 700; font-size: .88rem; }

.avail-box {
  background: var(--accent-dark);
  border: 1px solid rgba(0,212,255,.3);
  border-radius: var(--radius-sm);
  padding: 22px;
  text-align: center;
}
.avail-dot {
  width: 12px; height: 12px;
  background: #22c55e;
  border-radius: 50%;
  display: inline-block;
  margin-left: 8px;
  animation: pulse 1.8s infinite;
}

/* ========================================
   FOOTER
======================================== */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 64px 0 28px;
}
.footer-logo { font-size: 1.7rem; font-weight: 900; color: var(--text); }
.footer-logo span { color: var(--accent); }
.footer-desc { font-size: .87rem; color: var(--muted); line-height: 1.85; margin-top: 12px; max-width: 280px; }
.footer-heading { font-weight: 800; font-size: .88rem; margin-bottom: 16px; color: var(--text); }
.footer-links a {
  display: block;
  color: var(--muted);
  font-size: .85rem;
  margin-bottom: 10px;
  transition: color .2s;
}
.footer-links a:hover { color: var(--accent); }
.social-links { display: flex; gap: 10px; margin-top: 16px; }
.s-btn {
  width: 40px; height: 40px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: .88rem;
  transition: all .25s;
}
.s-btn:hover { background: var(--accent-dark); border-color: var(--accent); color: var(--accent); }
.footer-divider { border-color: var(--border); margin: 36px 0 20px; }
.footer-copy { color: var(--muted); font-size: .8rem; }

/* ========================================
   SCROLL-TO-TOP
======================================== */
#scrollTop {
  position: fixed;
  bottom: 28px; left: 28px;
  width: 46px; height: 46px;
  background: var(--accent);
  color: #000;
  border: none; border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  opacity: 0; pointer-events: none;
  transition: all .35s;
  z-index: 999;
  box-shadow: 0 0 24px var(--accent-glow);
}
#scrollTop.show { opacity: 1; pointer-events: all; }
#scrollTop:hover { transform: translateY(-4px); background: #fff; }

/* WhatsApp Floating Button */
#waFloat {
  position: fixed;
  bottom: 90px; left: 28px;
  width: 52px; height: 52px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.55rem;
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform .3s, box-shadow .3s;
  animation: waPulse 2.5s infinite;
}
#waFloat:hover { transform: scale(1.12); box-shadow: 0 6px 28px rgba(37,211,102,.65); animation: none; }

@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.45); }
  50%      { box-shadow: 0 4px 32px rgba(37,211,102,.75), 0 0 0 8px rgba(37,211,102,.12); }
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1199px) {
  .testi-row { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 991px) {
  section { padding: 80px 0; }
  .about-chip { right: 8px; }
  .contact-form-card { padding: 32px 26px; }
  .form-row { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767px) {
  section { padding: 70px 0; }
  #hero h1 { letter-spacing: -.5px; }
  .testi-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .h-stat { margin-left: 16px; padding-right: 16px; }
  .about-img { height: 260px; }
  .about-chip { position: static; margin-top: 14px; display: inline-block; }
  .mock-cards-grid { grid-template-columns: 1fr 1fr; }
}

