/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   UI/UX DESIGN â€” SERVICE PAGE
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #02060d;
  --bg-soft: #081225;
  --text: #e5edf8;
  --muted: #8a9bb5;
  --primary: #2a7df1;
  --primary-2: #16a8ff;
  --green: #22c55e;
  --accent: #f472b6;
  --accent-2: #ec4899;
  --card: rgba(6, 14, 30, 0.75);
  --border: rgba(255, 255, 255, 0.06);
  --radius: 16px;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Manrope", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

.container {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

/* â”€â”€ HERO â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero {
  position: relative;
  width: 100%;
  max-width: none;
  padding: 160px 0 80px;
  overflow: hidden;
  text-align: left;
  background:
    linear-gradient(180deg, rgba(2, 6, 13, 0.88) 0%, rgba(2, 6, 13, 0.7) 50%, rgba(2, 6, 13, 0.95) 100%),
    url('https://images.unsplash.com/photo-1558655146-9f40138edfeb?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}

.hero-glow {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 114, 182, 0.14), transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  bottom: -60px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.08), transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.hero-content {
  max-width: 760px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s, transform 0.6s;
}

.hero-content.visible {
  opacity: 1;
  transform: translateY(0);
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
}

.breadcrumb a { color: var(--muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb i { font-size: 10px; opacity: 0.5; }
.breadcrumb span { color: var(--accent); font-weight: 600; }

.hero h1 {
  font-family: "Sora", sans-serif;
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--accent), var(--primary-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 36px;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-radius: 10px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(236, 72, 153, 0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 0.2s, background 0.2s;
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat strong {
  font-family: "Sora", sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
}

.hero-stat span {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

/* â”€â”€ GENERIC SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sec {
  padding: 80px 0;
  position: relative;
}

.sec-dark {
  background:
    radial-gradient(600px 300px at 50% 0%, rgba(244, 114, 182, 0.04), transparent),
    var(--bg-soft);
}

.sec-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s, transform 0.5s;
}

.sec-head.visible {
  opacity: 1;
  transform: translateY(0);
}

.kicker {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}

.sec-head h2 {
  font-family: "Sora", sans-serif;
  font-size: clamp(26px, 3.6vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 14px;
}

.sec-head h2 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--accent), var(--primary-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sec-head p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

/* â”€â”€ FEATURES GRID â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  opacity: 0;
  transform: translateY(20px);
}

.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(244, 114, 182, 0.25);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(244, 114, 182, 0.1);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  transition: background 0.3s;
}

.feature-icon i {
  font-size: 24px;
  color: var(--accent);
  transition: color 0.3s;
}

.feature-card:hover .feature-icon {
  background: rgba(34, 197, 94, 0.12);
}

.feature-card:hover .feature-icon i {
  color: var(--green);
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* â”€â”€ TECH GRID â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.tech-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.tech-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}

.tech-item:hover {
  border-color: rgba(244, 114, 182, 0.3);
  background: rgba(244, 114, 182, 0.06);
  transform: translateY(-2px);
}

.tech-item img {
  width: 26px;
  height: 26px;
}

.tech-item span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

/* â”€â”€ PROCESS GRID â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.process-step {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s, transform 0.5s, border-color 0.3s;
}

.process-step.visible {
  opacity: 1;
  transform: translateY(0);
}

.process-step:hover {
  border-color: rgba(244, 114, 182, 0.2);
}

.step-num {
  font-family: "Sora", sans-serif;
  font-size: 42px;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(244, 114, 182, 0.25), rgba(34, 197, 94, 0.2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
  line-height: 1;
}

.process-step h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* â”€â”€ WHY GRID â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.why-card {
  display: flex;
  gap: 16px;
  padding: 28px 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.3s, transform 0.3s;
  opacity: 0;
  transform: translateY(16px);
}

.why-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.why-card:hover {
  border-color: rgba(244, 114, 182, 0.2);
  transform: translateY(-3px);
}

.why-card > i {
  font-size: 22px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.why-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.why-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* â”€â”€ PORTFOLIO GRID â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.portfolio-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  opacity: 0;
  transform: translateY(20px);
}

.portfolio-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-card:hover {
  transform: translateY(-6px);
  border-color: rgba(244, 114, 182, 0.25);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.portfolio-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.portfolio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.portfolio-card:hover .portfolio-img img {
  transform: scale(1.05);
}

.portfolio-info {
  padding: 24px;
}

.portfolio-info h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}

.portfolio-info p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.portfolio-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 10px;
}

/* â”€â”€ INDUSTRY TAGS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.industry-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.ind-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}

.ind-tag i {
  color: var(--accent);
  font-size: 16px;
}

.ind-tag:hover {
  border-color: rgba(244, 114, 182, 0.3);
  background: rgba(244, 114, 182, 0.06);
  transform: translateY(-2px);
}

/* â”€â”€ CTA BANNER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.cta-banner {
  padding: 80px 0;
  background:
    radial-gradient(600px 300px at 50% 50%, rgba(244, 114, 182, 0.08), transparent),
    var(--bg);
}

.cta-banner-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-banner h2 {
  font-family: "Sora", sans-serif;
  font-size: clamp(26px, 3.6vw, 38px);
  font-weight: 800;
  margin-bottom: 14px;
}

.cta-banner p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 32px;
}

.cta-banner-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* â”€â”€ FOOTER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.footer {
  padding: 64px 0 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-logo {
  height: 100px;
  margin-bottom: 16px;
}

.footer-col p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  color: var(--text);
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--accent); }

.footer-col a i { margin-right: 6px; }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-size: 16px;
  color: var(--muted);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  margin-bottom: 0;
}

.footer-social a:hover {
  background: rgba(244, 114, 182, 0.1);
  color: var(--accent);
  border-color: rgba(244, 114, 182, 0.3);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--muted);
}

/* â”€â”€ SCROLL REVEAL STAGGER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.feature-card:nth-child(1) { transition-delay: 0s; }
.feature-card:nth-child(2) { transition-delay: 0.08s; }
.feature-card:nth-child(3) { transition-delay: 0.16s; }
.feature-card:nth-child(4) { transition-delay: 0.24s; }
.feature-card:nth-child(5) { transition-delay: 0.32s; }
.feature-card:nth-child(6) { transition-delay: 0.4s; }

.process-step:nth-child(1) { transition-delay: 0s; }
.process-step:nth-child(2) { transition-delay: 0.08s; }
.process-step:nth-child(3) { transition-delay: 0.16s; }
.process-step:nth-child(4) { transition-delay: 0.24s; }
.process-step:nth-child(5) { transition-delay: 0.32s; }
.process-step:nth-child(6) { transition-delay: 0.4s; }

.why-card:nth-child(1) { transition-delay: 0s; }
.why-card:nth-child(2) { transition-delay: 0.06s; }
.why-card:nth-child(3) { transition-delay: 0.12s; }
.why-card:nth-child(4) { transition-delay: 0.18s; }
.why-card:nth-child(5) { transition-delay: 0.24s; }
.why-card:nth-child(6) { transition-delay: 0.3s; }

.portfolio-card:nth-child(1) { transition-delay: 0s; }
.portfolio-card:nth-child(2) { transition-delay: 0.08s; }
.portfolio-card:nth-child(3) { transition-delay: 0.16s; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero { padding: 130px 0 60px; }
  .hero h1 { font-size: clamp(30px, 7vw, 44px); }

  .sec { padding: 56px 0; }

  .features-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .hero-stats { gap: 24px; }
  .hero-stat strong { font-size: 24px; }

  .cta-banner { padding: 56px 0; }
}

@media (max-width: 480px) {
  .container { width: calc(100% - 32px); }
  .hero { padding: 120px 0 48px; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .hero-stats { 
    flex-direction: row; 
    gap: 20px; 
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .hero-stat {
    flex: 1;
    min-width: 100px;
    text-align: center;
  }
  .hero-stat strong {
    font-size: 24px;
  }
  .hero-stat span {
    font-size: 12px;
  }
  .cta-banner-actions { flex-direction: column; align-items: center; }
  .cta-banner-actions .btn-primary,
  .cta-banner-actions .btn-secondary { width: 100%; justify-content: center; }
}
