/* ═══════════════════════════════════════════════════════════════════════
   Aicha Creation Studio — style.css
   Theme: Soft Premium Creative Portfolio
   Palette: Cream · Pink · Purple · Gold · Mint
═══════════════════════════════════════════════════════════════════════ */

/* ── 1. CSS Custom Properties ─────────────────────────────────────────── */
:root {
  /* Colors */
  --bg:           #FFF8F3;
  --cream:        #FFEEDB;
  --pink:         #FF8FB3;
  --pink-lt:      #FFD1E3;
  --pink-dk:      #E0608A;
  --purple:       #8B5CF6;
  --purple-lt:    #C4B5FD;
  --purple-dk:    #6D28D9;
  --gold:         #F4B942;
  --gold-lt:      #FAD98A;
  --mint:         #8FE3C2;
  --mint-lt:      #C4F2E3;
  --white:        #FFFFFF;
  --text:         #241A1A;
  --text-mid:     #4A3535;
  --text-soft:    #7A6A65;
  --text-hint:    #B09898;
  --border:       rgba(36,26,26,0.12);

  /* Typography */
  --font-head: 'Poppins', Arial, sans-serif;
  --font-body: 'Inter', Arial, sans-serif;

  /* Spacing */
  --section-py:  96px;
  --card-radius: 20px;
  --btn-radius:  50px;

  /* Shadows */
  --shadow-sm: 0 2px 12px rgba(36,26,26,0.07);
  --shadow-md: 0 8px 32px rgba(36,26,26,0.11);
  --shadow-lg: 0 20px 60px rgba(36,26,26,0.14);
  --shadow-pink: 0 8px 28px rgba(255,143,179,0.30);
}

/* ── 2. Reset & Base ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
button { cursor: pointer; background: none; border: none; font: inherit; }

/* ── 3. Container ─────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── 4. Typography Utilities ──────────────────────────────────────────── */
.text-gradient {
  background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 55%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── 5. Buttons ───────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--btn-radius);
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 600;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff;
  box-shadow: var(--shadow-pink);
}
.btn--primary:hover {
  box-shadow: 0 12px 36px rgba(255,143,179,0.45);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}
.btn--outline:hover {
  border-color: var(--pink);
  color: var(--pink);
}

.btn--outline-light {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
}
.btn--outline-light:hover {
  background: rgba(255,255,255,0.25);
}

.btn--small {
  padding: 9px 20px;
  font-size: 0.82rem;
  background: transparent;
  color: var(--purple);
  border: 1.5px solid var(--purple-lt);
  border-radius: var(--btn-radius);
  font-family: var(--font-head);
  font-weight: 600;
  transition: all 0.22s ease;
}
.btn--small:hover {
  background: var(--purple);
  color: #fff;
  border-color: var(--purple);
  transform: translateY(-1px);
}

.btn--full { width: 100%; }

/* ── 6. Section Shared ────────────────────────────────────────────────── */
.section     { padding: var(--section-py) 0; }
.section--cream { background: var(--cream); }

.section-head {
  text-align: center;
  margin-bottom: 56px;
}
.section-tag {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 50px;
  background: rgba(139,92,246,0.10);
  color: var(--purple);
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-soft);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── 7. Fade-in Animation ─────────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── 8. Floating Animations ───────────────────────────────────────────── */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}
@keyframes floatSlow {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50%       { transform: translateY(-10px) rotate(3deg); }
}
@keyframes floatAlt {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50%       { transform: translateY(-8px) rotate(-2deg); }
}
@keyframes sparkle {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.3); }
}
@keyframes blobDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(25px, -20px) scale(1.06); }
  66%       { transform: translate(-15px, 15px) scale(0.96); }
}

.floating     { animation: float 4s ease-in-out infinite; }
.floating-slow { animation: floatSlow 5s ease-in-out infinite; }
.floating-alt  { animation: floatAlt 4.5s ease-in-out infinite; }

/* ── 9. HEADER / NAVBAR ───────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 900;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s;
}
.header.scrolled {
  background: rgba(255,248,243,0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 2px 20px rgba(36,26,26,0.08);
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 72px;
}

/* Logo */
.logo {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
  flex-shrink: 0;
  letter-spacing: -0.01em;
}
.logo-accent { color: var(--pink); }

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}
.nav-link {
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-soft);
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover,
.nav-link.active {
  color: var(--purple);
  background: rgba(139,92,246,0.08);
}

.nav-cta { flex-shrink: 0; padding: 10px 22px; font-size: 0.85rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  position: absolute;
  top: 72px; left: 0; right: 0;
  background: rgba(255,248,243,0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 16px 24px 24px;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(36,26,26,0.07);
}
.mobile-nav.open  { display: flex; }
.mobile-nav .nav-link { padding: 12px 16px; font-size: 1rem; }
.mobile-nav .nav-cta  { margin-top: 8px; text-align: center; }

/* ── 10. HERO SECTION ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  overflow: hidden;
  background: linear-gradient(160deg, #FFF8F3 0%, #FFEEDB 50%, #FFF0F8 100%);
}

/* Background animated blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.40;
  pointer-events: none;
  animation: blobDrift 12s ease-in-out infinite;
}
.hero-blob--pink   { width: 500px; height: 500px; background: var(--pink-lt);   top: -120px; left: -160px; animation-delay: 0s; }
.hero-blob--purple { width: 400px; height: 400px; background: var(--purple-lt); top: 10%;   right: -80px; animation-delay: -4s; }
.hero-blob--mint   { width: 300px; height: 300px; background: var(--mint-lt);   bottom: 0;  left: 25%;   animation-delay: -8s; }
.hero-blob--gold   { width: 250px; height: 250px; background: var(--gold-lt);   bottom: 10%; left: 5%;  animation-delay: -2s; }

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Hero text */
.hero-badge {
  display: inline-block;
  padding: 7px 18px;
  border-radius: 50px;
  background: rgba(255,143,179,0.12);
  border: 1px solid rgba(255,143,179,0.28);
  color: var(--pink-dk);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 1rem;
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 460px;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hero-trust {
  font-size: 0.83rem;
  color: var(--text-hint);
  font-style: italic;
}

/* ── Hero Visual Mockup ───────────────────────────────────────────────── */
.hero-visual {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background soft bubbles */
.cv-bg-bubble {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.cv-bg-b1 { width: 260px; height: 260px; background: rgba(255,143,179,0.15); top: 10%;  left: 50%; transform: translateX(-50%); filter: blur(40px); }
.cv-bg-b2 { width: 180px; height: 180px; background: rgba(139,92,246,0.15); bottom: 15%; right: 5%; filter: blur(30px); }
.cv-bg-b3 { width: 140px; height: 140px; background: rgba(143,227,194,0.18); top: 5%;  left: 5%;  filter: blur(25px); }

/* CSS Sparkles */
.sparkle {
  position: absolute;
  font-size: 1rem;
  animation: sparkle 2.5s ease-in-out infinite;
  pointer-events: none;
}
.sp-1 { top: 8%;  left: 8%;  color: var(--pink);   animation-delay: 0s; }
.sp-2 { top: 12%; right: 10%; color: var(--purple); animation-delay: 0.8s; font-size: 0.7rem; }
.sp-3 { bottom: 20%; left: 5%; color: var(--gold);  animation-delay: 1.6s; }
.sp-4 { bottom: 15%; right: 8%; color: var(--mint); animation-delay: 0.4s; font-size: 0.7rem; }

/* Main creative card */
.cv-main {
  position: absolute;
  width: 220px;
  background: var(--white);
  border-radius: 20px;
  padding: 0 0 16px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,143,179,0.12);
  overflow: hidden;
  top: 50%; left: 50%;
  transform: translate(-42%, -50%);
  z-index: 3;
}

/* CSS creative preview inside main card */
.cv-preview--main {
  height: 140px;
  background: linear-gradient(135deg, var(--pink-lt) 0%, var(--purple-lt) 60%, var(--mint-lt) 100%);
  position: relative;
  overflow: hidden;
  margin-bottom: 12px;
}
.cv-preview-lines {
  position: absolute;
  bottom: 16px; left: 16px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.cv-line {
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.65);
}
.cv-line--w80 { width: 80px; }
.cv-line--w60 { width: 60px; }
.cv-line--w70 { width: 70px; }
.cv-line--w50 { width: 50px; }

.cv-preview-shape {
  position: absolute;
  top: 16px; right: 16px;
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(255,255,255,0.45);
}
.cv-preview-shape::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(255,143,179,0.60);
}

.cv-card-info { padding: 0 16px; }
.cv-card-tag {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--pink);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.cv-card-title {
  display: block;
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.cv-card-stars { font-size: 0.7rem; color: var(--gold); }

/* Mini floating cards */
.cv-mini {
  position: absolute;
  background: var(--white);
  border-radius: 14px;
  padding: 10px;
  box-shadow: var(--shadow-md);
  width: 100px;
  z-index: 4;
  text-align: center;
}
.cv-mini--wall  { top: 8%;  right: 4%; }
.cv-mini--icon  { bottom: 22%; left: 2%; }
.cv-mini--canva { bottom: 6%; right: 8%; }

.cv-mini-preview {
  height: 56px;
  border-radius: 10px;
  margin-bottom: 6px;
  overflow: hidden;
}
.cv-mini-preview--wall {
  background: linear-gradient(160deg, var(--purple) 0%, var(--mint) 100%);
}
.cv-mini-preview--icon {
  background: linear-gradient(160deg, var(--pink-lt) 0%, var(--gold-lt) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cv-mini-preview--canva {
  background: linear-gradient(160deg, var(--mint-lt) 0%, var(--purple-lt) 100%);
}
.cv-icon-dots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 8px;
}
.cv-icon-dots span {
  display: block;
  width: 18px; height: 18px;
  border-radius: 6px;
  background: rgba(255,143,179,0.65);
}
.cv-icon-dots span:nth-child(2) { background: rgba(139,92,246,0.55); }
.cv-icon-dots span:nth-child(3) { background: rgba(244,185,66,0.65); }
.cv-icon-dots span:nth-child(4) { background: rgba(143,227,194,0.65); }

.cv-mini-label {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-soft);
}

/* Store badge */
.cv-store-badge {
  position: absolute;
  top: 3%;
  left: 2%;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 6px 14px;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text);
  box-shadow: var(--shadow-sm);
  z-index: 5;
  white-space: nowrap;
}

/* ── 11. PRODUCT CATEGORIES ───────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--white);
  border-radius: var(--card-radius);
  padding: 32px 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.pc-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.pc-icon svg { width: 22px; height: 22px; }
.pc-icon--pink   { background: rgba(255,143,179,0.12); color: var(--pink-dk); }
.pc-icon--purple { background: rgba(139,92,246,0.10); color: var(--purple); }
.pc-icon--gold   { background: rgba(244,185,66,0.12); color: #C49020; }
.pc-icon--mint   { background: rgba(143,227,194,0.15); color: #2E8B6A; }

.pc-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.pc-desc {
  font-size: 0.875rem;
  color: var(--text-soft);
  line-height: 1.65;
}

/* ── 12. PORTFOLIO GRID ───────────────────────────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.pf-card {
  background: var(--white);
  border-radius: var(--card-radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pf-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* CSS gradient preview containers */
.pf-preview {
  height: 160px;
  position: relative;
  overflow: hidden;
}
.pf-preview--1 { background: linear-gradient(145deg, #FFD1E3 0%, #FFEEDB 60%, #FAD98A 100%); }
.pf-preview--2 { background: linear-gradient(145deg, #8B5CF6 0%, #8FE3C2 100%); }
.pf-preview--3 { background: linear-gradient(145deg, #241A1A 0%, #8B5CF6 70%, #FF8FB3 100%); }
.pf-preview--4 { background: linear-gradient(145deg, #FFD1E3 0%, #C4F2E3 60%, #FAD98A 100%); }
.pf-preview--5 { background: linear-gradient(145deg, #F4B942 0%, #FF8FB3 60%, #C4B5FD 100%); }
.pf-preview--6 { background: linear-gradient(145deg, #C4B5FD 0%, #FAD98A 60%, #8B5CF6 100%); }
.pf-preview--7 { background: linear-gradient(145deg, #8FE3C2 0%, #C4B5FD 60%, #FF8FB3 100%); }
.pf-preview--8 { background: linear-gradient(145deg, #FFD1E3 0%, #C4B5FD 60%, #8FE3C2 100%); }

.pf-preview-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CSS preview decorations */
.pf-shape--circle {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
}
.pf-lines {
  position: absolute;
  bottom: 14px; left: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pf-lines span {
  display: block;
  height: 5px;
  border-radius: 3px;
  background: rgba(255,255,255,0.55);
}
.pf-lines span:nth-child(1) { width: 60px; }
.pf-lines span:nth-child(2) { width: 45px; }
.pf-lines span:nth-child(3) { width: 50px; }

.pf-shape--wave {
  width: 80px; height: 80px;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  background: rgba(255,255,255,0.30);
}
.pf-shape--phone {
  width: 36px; height: 60px;
  border-radius: 8px;
  background: rgba(255,255,255,0.35);
  border: 2px solid rgba(255,255,255,0.50);
}
.pf-icon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 16px;
}
.pf-icon-grid span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.40);
  border-radius: 10px;
  font-size: 1rem;
}
.pf-shape--rect {
  width: 70px; height: 52px;
  border-radius: 8px;
  background: rgba(255,255,255,0.35);
  transform: rotate(-6deg);
}
.pf-shape--rect-sm {
  width: 50px; height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.25);
  transform: rotate(8deg) translate(10px, 8px);
}
.pf-brand-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}
.pf-brand-dots span {
  border-radius: 50%;
  display: block;
}
.bd-1 { width: 32px; height: 32px; background: rgba(255,255,255,0.55); }
.bd-2 { width: 24px; height: 24px; background: rgba(255,255,255,0.40); }
.bd-3 { width: 18px; height: 18px; background: rgba(255,255,255,0.30); }

.pf-ui-bars {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  width: 100%;
}
.pf-ui-bars span {
  display: block;
  height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.40);
}
.pf-ui-bars span:nth-child(1) { width: 80%; }
.pf-ui-bars span:nth-child(2) { width: 60%; }
.pf-ui-bars span:nth-child(3) { width: 75%; }
.pf-ui-bars span:nth-child(4) { width: 50%; }

.pf-shape--mockup {
  width: 64px; height: 48px;
  border-radius: 10px;
  background: rgba(255,255,255,0.40);
  box-shadow: 4px 4px 0 rgba(255,255,255,0.20);
}

.pf-info { padding: 18px 16px 20px; }
.pf-category {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 8px;
}
.pf-title {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.3;
}
.pf-desc {
  font-size: 0.8rem;
  color: var(--text-soft);
  line-height: 1.55;
  margin-bottom: 14px;
}

/* ── 13. DIGITAL STORES SECTION ───────────────────────────────────────── */
.stores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.store-card {
  background: var(--white);
  border-radius: var(--card-radius);
  padding: 28px 22px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.store-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.st-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 14px;
}
.st-icon--kofi    { background: rgba(255,143,179,0.12); }
.st-icon--gumroad { background: rgba(255,143,179,0.12); }
.st-icon--tpt     { background: rgba(139,92,246,0.10); }
.st-icon--behance { background: rgba(139,92,246,0.10); }
.st-icon--samsung { background: rgba(143,227,194,0.14); }
.st-icon--gplay   { background: rgba(244,185,66,0.12); }

.st-title {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.st-desc {
  font-size: 0.83rem;
  color: var(--text-soft);
  line-height: 1.6;
}

/* ── 14. SERVICES SECTION ─────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--white);
  border-radius: var(--card-radius);
  padding: 30px 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--pink), var(--purple));
  border-radius: 4px 0 0 4px;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.sv-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: rgba(139,92,246,0.10);
  line-height: 1;
  margin-bottom: 14px;
}
.sv-title {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.sv-desc {
  font-size: 0.875rem;
  color: var(--text-soft);
  line-height: 1.65;
}

/* ── 15. WHY SECTION ──────────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.why-card {
  background: var(--white);
  border-radius: var(--card-radius);
  padding: 32px 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.wc-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
  line-height: 1;
}
.wc-title {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.wc-desc {
  font-size: 0.85rem;
  color: var(--text-soft);
  line-height: 1.6;
}

/* ── 16. PROCESS SECTION ──────────────────────────────────────────────── */
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}

.ps-step {
  flex: 1;
  text-align: center;
  padding: 0 16px;
  position: relative;
}

.ps-num {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--purple);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.ps-dot {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  margin: 0 auto 16px;
  box-shadow: 0 0 0 5px rgba(255,143,179,0.18);
}

.ps-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.ps-desc {
  font-size: 0.85rem;
  color: var(--text-soft);
  line-height: 1.6;
}

.ps-connector {
  flex-shrink: 0;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,143,179,0.4), rgba(139,92,246,0.3));
  margin-top: 48px;
  align-self: flex-start;
}

/* ── 17. CTA SECTION ──────────────────────────────────────────────────── */
.cta { background: linear-gradient(135deg, var(--purple-dk) 0%, var(--pink-dk) 60%, var(--purple) 100%); }

.cta-inner {
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 64px 32px;
  border-radius: 28px;
}

/* CSS decorative shapes inside CTA */
.cta-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.cta-shape--1 { width: 300px; height: 300px; background: rgba(255,255,255,0.06); top: -80px;  left: -60px;  }
.cta-shape--2 { width: 200px; height: 200px; background: rgba(255,255,255,0.05); bottom: -50px; right: -40px; }
.cta-shape--3 { width: 150px; height: 150px; background: rgba(255,255,255,0.04); top: 50%; left: 50%;  transform: translate(-50%, -50%); }

.cta .section-tag { background: rgba(255,255,255,0.18); color: #fff; }

.cta-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  position: relative; z-index: 1;
}
.cta-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.80);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.7;
  position: relative; z-index: 1;
}
.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative; z-index: 1;
}

/* ── 18. CONTACT SECTION ──────────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ci-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.ci-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(139,92,246,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ci-icon svg {
  width: 18px; height: 18px;
  color: var(--purple);
}
.ci-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-hint);
  margin-bottom: 3px;
}
.ci-value {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}
a.ci-value:hover { color: var(--purple); }

/* Contact form */
.contact-form {
  background: var(--white);
  border-radius: var(--card-radius);
  padding: 36px 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-mid);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-hint); }
.form-group select { cursor: pointer; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(139,92,246,0.12);
}

/* ── 19. FOOTER ───────────────────────────────────────────────────────── */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.70);
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.footer-logo-accent { color: var(--pink); }
.footer-desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.50);
  max-width: 280px;
}

.footer-heading {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.40);
  margin-bottom: 16px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.60);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--pink); }

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.30);
}

/* ── 20. BACK TO TOP ──────────────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-pink);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 800;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top svg { width: 18px; height: 18px; }
.back-to-top:hover { transform: translateY(-3px); }

/* ── 21. RESPONSIVE ───────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid       { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-grid > .footer-brand { grid-column: 1 / -1; }
  .hero-inner     { gap: 40px; }
  .hero-visual    { height: 420px; }
}

@media (max-width: 900px) {
  .products-grid  { grid-template-columns: repeat(2, 1fr); }
  .stores-grid    { grid-template-columns: repeat(2, 1fr); }
  .services-grid  { grid-template-columns: repeat(2, 1fr); }
  .process-steps  { flex-wrap: wrap; }
  .ps-connector   { display: none; }
  .ps-step        { min-width: 45%; }
}

@media (max-width: 768px) {
  :root { --section-py: 64px; }

  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
    padding-top: 20px;
  }
  .hero-sub, .hero-trust { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .hero-visual { order: -1; height: 320px; }

  .cv-main  { width: 180px; }
  .cv-mini  { display: none; }
  .cv-store-badge { font-size: 0.65rem; }

  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid    { grid-template-columns: 1fr; }
  .cta-inner      { padding: 48px 24px; }
}

@media (max-width: 540px) {
  :root { --section-py: 48px; }

  .products-grid  { grid-template-columns: 1fr; }
  .stores-grid    { grid-template-columns: 1fr; }
  .services-grid  { grid-template-columns: 1fr; }
  .why-grid       { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .ps-step        { min-width: 100%; }
  .form-row       { grid-template-columns: 1fr; }
  .contact-form   { padding: 24px 18px; }
  .hero-btns      { flex-direction: column; align-items: center; }
  .btn            { width: 100%; max-width: 280px; }
  .cta-btns       { flex-direction: column; align-items: center; }
}
