/* =============================================================
   NGIT Portfolio — Complete Redesign v2
   Dark 3D Glassmorphism Design System
   ============================================================= */

/* --- Design Tokens ------------------------------------------ */
:root {
  --bg:         #070d1f;
  --bg-section: #080e22;
  --bg-alt:     #0b1228;
  --bg-card:    rgba(255,255,255,0.04);
  --border:     rgba(255,255,255,0.08);
  --border-hi:  rgba(79,142,247,0.5);
  --primary:    #4f8ef7;
  --accent:     #06b6d4;
  --green:      #10b981;
  --gradient:   linear-gradient(135deg,#4f8ef7 0%,#06b6d4 100%);
  --text:       #f0f4ff;
  --muted:      rgba(240,244,255,0.50);
  --shadow:     0 8px 32px rgba(0,0,0,0.5);
  --glow:       0 0 40px rgba(79,142,247,0.22);
  --r:          16px;
  --rl:         24px;
  --ease:       all 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* --- Base ---------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Poppins', sans-serif;
  background: var(--bg); color: var(--text);
  overflow-x: hidden; line-height: 1.6; margin: 0;
}
a { color: inherit; text-decoration: none; transition: var(--ease); }
img { max-width: 100%; display: block; }
section { padding: 80px 0; }
ul { list-style: none; margin: 0; padding: 0; }

/* --- Preloader ---------------------------------------------- */
#preloader {
  position: fixed; inset: 0;
  background: var(--bg); z-index: 9999;
  display: flex; align-items: center; justify-content: center;
}
#preloader:before {
  content: ''; width: 48px; height: 48px;
  border: 3px solid var(--border); border-top-color: var(--primary);
  border-radius: 50%; animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* --- Scroll Top --------------------------------------------- */
.scroll-top {
  position: fixed; right: 20px; bottom: 20px;
  width: 44px; height: 44px;
  background: var(--gradient); border-radius: 50%;
  color: #fff !important; font-size: 22px;
  z-index: 999; opacity: 0; pointer-events: none;
  transition: var(--ease); box-shadow: 0 4px 16px rgba(79,142,247,0.4);
  display: flex; align-items: center; justify-content: center;
}
.scroll-top.active { opacity: 1; pointer-events: all; }
.scroll-top:hover { transform: translateY(-3px); }

/* --- Section Title ------------------------------------------ */
.section-title { text-align: center; padding-bottom: 48px; }
.section-title h2 {
  font-size: clamp(28px,4vw,38px); font-weight: 800; color: #fff;
  margin-bottom: 0; position: relative; display: inline-block;
  letter-spacing: -0.5px;
}
.section-title h2::after {
  content: ''; position: absolute; bottom: -10px; left: 50%;
  transform: translateX(-50%); width: 48px; height: 3px;
  background: var(--gradient); border-radius: 99px;
}
.section-title p { color: var(--muted); font-size: 15px; max-width: 540px; margin: 22px auto 0; }

/* ================================================================
   HEADER
================================================================ */
.header {
  background: rgba(7,13,31,0.88);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0; height: 64px; position: sticky; top: 0; z-index: 997;
  display: flex; align-items: center;
}
.header .container-fluid { display: flex; align-items: center; justify-content: space-between; }
.header .logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.header .logo img { max-height: 38px; }
.header .logo .logo-icon { flex-shrink: 0; transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), filter 0.35s ease; }
.header .logo:hover .logo-icon { transform: translateY(-2px) scale(1.05); filter: drop-shadow(0 4px 12px rgba(34,211,238,0.45)); }
.header .logo .sitename {
  font-size: 17px; font-weight: 900; margin: 0; white-space: nowrap;
  letter-spacing: -0.5px;
  background: var(--gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navmenu ul { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; }
.navmenu a {
  font-size: 13px; font-weight: 500;
  color: rgba(240,244,255,0.65);
  padding: 6px 12px; border-radius: 8px;
  transition: var(--ease); white-space: nowrap; display: block;
}
.navmenu a:hover, .navmenu .active { color: #fff; background: rgba(79,142,247,0.12); }

.mobile-nav-toggle {
  display: none; color: #fff; font-size: 24px;
  cursor: pointer; background: none; border: none; padding: 4px;
}

@media (max-width:1199px) {
  .mobile-nav-toggle { display: block; }
  .navmenu {
    display: none; position: fixed;
    top: 64px; left: 0; right: 0; bottom: 0;
    background: var(--bg); padding: 20px; z-index: 998;
    overflow-y: auto; border-top: 1px solid var(--border);
  }
  .navmenu.mobile-nav-active { display: block; }
  .navmenu ul { flex-direction: column; gap: 4px; }
  .navmenu a { font-size: 15px; padding: 12px 16px; }
}

/* ================================================================
   HERO
================================================================ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: var(--bg); padding: 100px 0 80px;
}
#hero-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; opacity: 0.7;
}
.hero .container { position: relative; z-index: 1; }

.hero-content {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 60px;
}

.hero-text { order: 1; }

.hero-greeting {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--accent); margin-bottom: 14px;
}
.hero-greeting::before {
  content: ''; width: 28px; height: 2px;
  background: var(--accent); border-radius: 99px;
}
.hero-text h1 {
  font-size: clamp(40px,6vw,72px); font-weight: 900;
  line-height: 1.05; color: #fff; margin-bottom: 10px; letter-spacing: -1.5px;
}
.hero-text h2 {
  font-size: clamp(18px,2.5vw,26px); font-weight: 500;
  color: var(--primary); margin-bottom: 22px; min-height: 36px;
}
.typed-cursor { color: var(--accent); }
.hero-desc {
  font-size: 16px; color: var(--muted);
  line-height: 1.75; margin-bottom: 36px; max-width: 460px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }

.btn-hire {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px; background: var(--gradient); color: #fff !important;
  font-weight: 700; font-size: 15px; border-radius: 50px; border: none;
  box-shadow: 0 4px 24px rgba(79,142,247,0.4); transition: var(--ease);
}
.btn-hire:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(79,142,247,0.6); color: #fff !important; }

.btn-work {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px; border: 1.5px solid var(--border-hi);
  color: #fff !important; font-weight: 600; font-size: 15px;
  border-radius: 50px; transition: var(--ease); background: transparent;
}
.btn-work:hover { background: rgba(79,142,247,0.1); border-color: var(--primary); transform: translateY(-2px); color: #fff !important; }

.hero-socials { display: flex; gap: 10px; }
.hero-socials a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--muted); transition: var(--ease);
}
.hero-socials a:hover { transform: translateY(-2px); }
.hero-socials a[title="WhatsApp"]           { color: #25d366; border-color: rgba(37,211,102,0.35); }
.hero-socials a[title="WhatsApp"]:hover     { background: rgba(37,211,102,0.12); border-color: #25d366; }
.hero-socials a[title="Facebook"]           { color: #1877f2; border-color: rgba(24,119,242,0.35); }
.hero-socials a[title="Facebook"]:hover     { background: rgba(24,119,242,0.12); border-color: #1877f2; }
.hero-socials a[title="Instagram"]          { color: #e4405f; border-color: rgba(228,64,95,0.35); }
.hero-socials a[title="Instagram"]:hover    { background: rgba(228,64,95,0.12); border-color: #e4405f; }
.hero-socials a[title="LinkedIn"]           { color: #0a66c2; border-color: rgba(10,102,194,0.35); }
.hero-socials a[title="LinkedIn"]:hover     { background: rgba(10,102,194,0.12); border-color: #0a66c2; }
.hero-socials a[title="Fiverr"]             { color: #1dbf73; border-color: rgba(29,191,115,0.35); }
.hero-socials a[title="Fiverr"]:hover       { background: rgba(29,191,115,0.12); border-color: #1dbf73; }


.hero-visual {
  order: 2; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.hero-img-ring {
  width: 320px; height: 320px; border-radius: 50%; overflow: hidden;
  flex-shrink: 0; border: 2px solid rgba(79,142,247,0.45);
  box-shadow: 0 0 0 10px rgba(79,142,247,0.08), 0 0 0 20px rgba(79,142,247,0.04), 0 0 70px rgba(79,142,247,0.3);
  animation: pulse-ring 4s ease-in-out infinite;
}
.hero-img-ring img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 20%; }

@keyframes pulse-ring {
  0%,100% { box-shadow: 0 0 0 10px rgba(79,142,247,0.08), 0 0 0 20px rgba(79,142,247,0.04), 0 0 70px rgba(79,142,247,0.3); }
  50%      { box-shadow: 0 0 0 14px rgba(79,142,247,0.12), 0 0 0 28px rgba(79,142,247,0.06), 0 0 90px rgba(79,142,247,0.45); }
}

.hero-badge {
  position: absolute; background: rgba(255,255,255,0.07);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.14); border-radius: 50px;
  padding: 9px 16px; font-size: 13px; font-weight: 600; color: #fff;
  white-space: nowrap; box-shadow: 0 4px 20px rgba(0,0,0,0.35);
  display: flex; align-items: center; gap: 7px;
}
.hero-badge:nth-child(2) { top: 8%;    right: -20px; animation: float-a 3.5s ease-in-out infinite; }
.hero-badge:nth-child(3) { bottom: 22%; right: -30px; animation: float-b 3.5s ease-in-out infinite 1.2s; }
.hero-badge:nth-child(4) { bottom: 4%;  left:  -10px; animation: float-a 3.5s ease-in-out infinite 2.3s; }
@keyframes float-a { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-9px)} }
@keyframes float-b { 0%,100%{transform:translateY(0)} 50%{transform:translateY( 9px)} }

@media (max-width:991px) {
  .hero-content { grid-template-columns:1fr; text-align:center; gap:44px; }
  .hero-text { order:2; } .hero-visual { order:1; }
  .hero-img-ring { width:220px; height:220px; }
  .hero-btns { justify-content:center; } .hero-socials { justify-content:center; }
  .hero-desc { margin-left:auto; margin-right:auto; }
  .hero-badge:nth-child(2){ top:4%;    right:4%; }
  .hero-badge:nth-child(3){ bottom:4%; right:0%; }
  .hero-badge:nth-child(4){ bottom:0%; left:4%; }
}
@media (max-width:575px) {
  .hero { padding:80px 0 60px; } .hero-badge { display:none; }
}

/* ================================================================
   ABOUT
================================================================ */
.about { background: var(--bg-section); }

.about-inner { display: grid; grid-template-columns: 260px 1fr; gap: 60px; align-items: center; }

.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.stat-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 22px 16px; text-align: center; transition: var(--ease);
}
.stat-card:hover { border-color: var(--primary); box-shadow: 0 0 24px rgba(79,142,247,0.15); transform: translateY(-4px); }
.stat-card .num {
  font-size: 36px; font-weight: 900; line-height: 1; margin-bottom: 6px;
  background: var(--gradient); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-card .lbl { font-size: 11px; font-weight: 600; color: var(--muted); letter-spacing: 0.5px; text-transform: uppercase; }

.about-bio h3 { font-size: clamp(24px,3vw,32px); font-weight: 800; color: #fff; margin-bottom: 16px; line-height: 1.2; }
.about-bio h3 span { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.about-bio p { color: var(--muted); font-size: 15px; line-height: 1.8; margin-bottom: 14px; }

.skill-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.skill-tag {
  padding: 6px 14px; background: rgba(79,142,247,0.08);
  border: 1px solid rgba(79,142,247,0.25); border-radius: 50px;
  font-size: 12px; font-weight: 600; color: var(--primary);
  transition: var(--ease); cursor: default;
}
.skill-tag:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

@media (max-width:767px) {
  .about-inner { grid-template-columns:1fr; gap:36px; }
  .about-stats  { grid-template-columns:repeat(4,1fr); }
}
@media (max-width:500px) { .about-stats { grid-template-columns:1fr 1fr; } }

/* ================================================================
   SERVICES
================================================================ */
.services { background: var(--bg); }

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

.service-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--rl); padding: 34px 26px;
  transition: var(--ease); position: relative; overflow: hidden;
  transform-style: preserve-3d; cursor: default;
}
.service-card::after {
  content: ''; position: absolute; inset: 0; border-radius: var(--rl);
  background: var(--gradient); opacity: 0; transition: var(--ease); z-index: 0;
}
.service-card:hover {
  border-color: rgba(79,142,247,0.5);
  box-shadow: 0 8px 40px rgba(79,142,247,0.18), inset 0 1px 0 rgba(255,255,255,0.08);
  transform: translateY(-6px);
}
.service-card:hover::after { opacity: 0.04; }
.service-card > * { position: relative; z-index: 1; }

.service-icon {
  width: 58px; height: 58px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 20px; transition: var(--ease);
}
.service-card:hover .service-icon { transform: scale(1.1) rotate(-6deg); }
.service-card h3 { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.service-card p  { font-size: 14px; color: var(--muted); line-height: 1.7; margin: 0; }

.svc-wa  .service-icon { background:rgba(37,211,102,0.12); color:#25d366; }
.svc-msg .service-icon { background:rgba(0,132,255,0.12);  color:#0084ff; }
.svc-ai  .service-icon { background:rgba(139,92,246,0.12); color:#8b5cf6; }
.svc-eco .service-icon { background:rgba(245,158,11,0.12); color:#f59e0b; }
.svc-rsv .service-icon { background:rgba(6,182,212,0.12);  color:#06b6d4; }
.svc-hyb .service-icon { background:rgba(236,72,153,0.12); color:#ec4899; }

@media (max-width:991px) { .services-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:575px) { .services-grid{ grid-template-columns:1fr; } }

/* ================================================================
   CLIENTS (Marquee)
================================================================ */
.clients { padding: 60px 0; background: var(--bg-section); }
.clients .section-title h2 { color: #fff; }
.clients .section-title p  { color: var(--muted); }

.marquee-track { overflow: hidden; position: relative; margin-bottom: 0; }
.marquee-track::before, .marquee-track::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 140px; z-index: 2; pointer-events: none;
}
.marquee-track::before { left:0;  background: linear-gradient(to right, var(--bg-section), transparent); }
.marquee-track::after  { right:0; background: linear-gradient(to left,  var(--bg-section), transparent); }
.marquee-inner { display:flex; gap:20px; width:max-content; will-change:transform; align-items:stretch; }
.marquee-left  { animation: mq-left 42s linear infinite; }
.marquee-inner:hover { animation-play-state: paused; }
@keyframes mq-left { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ── Client card: vertical glass card, bigger than old pill ── */
.mq-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(79,142,247,0.12);
  border-radius: 20px;
  padding: 24px 22px 18px;
  min-width: 152px;
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition: var(--ease);
  backdrop-filter: blur(6px);
}
/* Gradient glow line at top */
.mq-card::before {
  content: '';
  position: absolute;
  top: 0; left: 15%; right: 15%;
  height: 2px;
  background: var(--gradient);
  border-radius: 0 0 4px 4px;
  opacity: 0.7;
  transition: var(--ease);
}
.mq-card:hover {
  border-color: rgba(79,142,247,0.35);
  background: rgba(79,142,247,0.07);
  box-shadow: 0 8px 32px rgba(79,142,247,0.18), 0 0 0 1px rgba(79,142,247,0.08);
  transform: translateY(-5px);
  color: inherit;
}
.mq-card:hover::before { left: 0; right: 0; opacity: 1; }

/* Logo circle — bigger, gradient ring */
.mq-logo {
  width: 62px; height: 62px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; flex-shrink: 0;
  border: 2px solid rgba(79,142,247,0.22);
  box-shadow: 0 0 14px rgba(79,142,247,0.10);
  transition: var(--ease);
}
.mq-card:hover .mq-logo { border-color: rgba(79,142,247,0.55); box-shadow: 0 0 20px rgba(79,142,247,0.25); }
.mq-logo.mq-logo-dark { background: #111a2e; }
.mq-logo img { width: 40px; height: 40px; object-fit: contain; }

/* Text info — centred below logo */
.mq-info  { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.mq-name  { font-weight: 700; font-size: 13px; color: #f0f4ff; line-height: 1.2; text-align: center; white-space: nowrap; }
.mq-badge {
  font-size: 10px; font-weight: 600;
  color: var(--accent);
  background: rgba(6,182,212,0.08);
  border: 1px solid rgba(6,182,212,0.22);
  padding: 3px 10px; border-radius: 20px;
  letter-spacing: 0.3px; white-space: nowrap;
}

/* ================================================================
   PRICING
================================================================ */
.pricing { background: var(--bg-alt); }

.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items: start; }

.pricing-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--rl); padding: 36px 28px;
  position: relative; transition: var(--ease);
}
.pricing-card:hover { border-color: rgba(79,142,247,0.4); box-shadow: var(--glow); transform: translateY(-4px); }

.pricing-card.featured {
  background: linear-gradient(135deg,rgba(79,142,247,0.1),rgba(6,182,212,0.05));
  border-color: rgba(79,142,247,0.5);
  box-shadow: 0 0 40px rgba(79,142,247,0.15);
  transform: scale(1.03);
}
.pricing-card.featured:hover { transform: scale(1.03) translateY(-4px); }

.pricing-pop {
  display: inline-block; background: var(--gradient); color: #fff;
  font-size: 10px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 50px; margin-bottom: 20px;
}
.pricing-card h3 { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.pricing-card .price {
  display: flex; align-items: baseline; gap: 4px;
  font-size: 52px; font-weight: 900; color: #fff; line-height: 1; margin-bottom: 4px;
}
.pricing-card .price .currency { font-size: 24px; font-weight: 700; align-self: flex-start; margin-top: 10px; }
.pricing-card .price-note { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.pricing-divider { height: 1px; background: var(--border); margin: 20px 0; }

.pricing-features { display: flex; flex-direction: column; gap: 11px; margin-bottom: 30px; }
.pricing-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(240,244,255,0.75); }
.pricing-features li .chk {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(16,185,129,0.15); color: #10b981;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; flex-shrink: 0;
}

.btn-price {
  display: block; text-align: center; padding: 13px; border-radius: 12px;
  font-weight: 700; font-size: 15px; transition: var(--ease);
  border: 1.5px solid var(--border); color: #fff;
}
.btn-price:hover { border-color: var(--primary); background: rgba(79,142,247,0.1); color: #fff; }
.pricing-card.featured .btn-price { background: var(--gradient); border-color: transparent; box-shadow: 0 4px 20px rgba(79,142,247,0.4); }
.pricing-card.featured .btn-price:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(79,142,247,0.6); color: #fff; }

@media (max-width:991px) {
  .pricing-grid { grid-template-columns:1fr; max-width:460px; margin:0 auto; }
  .pricing-card.featured { transform:none; }
  .pricing-card.featured:hover { transform:translateY(-4px); }
}

/* Monthly Retainer Banner */
.pricing-retainer {
  margin-top: 32px;
  background: linear-gradient(135deg, rgba(79,142,247,0.08) 0%, rgba(6,182,212,0.05) 100%);
  border: 1px solid rgba(79,142,247,0.3);
  border-radius: var(--rl);
  padding: 36px 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  position: relative; overflow: hidden;
}
.pricing-retainer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient);
}
.retainer-badge {
  display: inline-block; background: rgba(79,142,247,0.15);
  border: 1px solid rgba(79,142,247,0.35); border-radius: 50px;
  padding: 5px 16px; font-size: 12px; font-weight: 700;
  color: var(--primary); letter-spacing: 0.5px; margin-bottom: 14px;
}
.retainer-left h3 { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.retainer-left p  { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 18px; max-width: 560px; }
.retainer-perks { display: flex; flex-wrap: wrap; gap: 10px 28px; }
.retainer-perks li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(240,244,255,0.75); }
.retainer-perks li i { color: var(--green); font-size: 14px; }
.retainer-right { text-align: center; flex-shrink: 0; }
.retainer-price-label { font-size: 13px; color: var(--muted); margin-bottom: 16px; white-space: nowrap; }
@media (max-width:767px) {
  .pricing-retainer { flex-direction: column; padding: 28px 24px; gap: 24px; }
  .retainer-right { width: 100%; }
  .retainer-right .btn-hire { width: 100%; justify-content: center; }
}

/* ================================================================
   TEAM
================================================================ */
.team { background: var(--bg-alt); }

.team-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 28px; max-width: 860px; margin: 0 auto;
}

.team-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--rl); padding: 36px 28px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 20px; transition: var(--ease);
}
.team-card:hover { border-color: rgba(79,142,247,0.4); box-shadow: var(--glow); transform: translateY(-4px); }

.team-img-wrap {
  width: 110px; height: 110px; min-width: 110px; min-height: 110px;
  border-radius: 50%; overflow: hidden; flex-shrink: 0;
  border: 2px solid rgba(79,142,247,0.4);
  box-shadow: 0 0 20px rgba(79,142,247,0.2);
}
.team-img-wrap img { width: 110px; height: 110px; object-fit: cover; object-position: 50% 20%; display: block; }
.team-img-placeholder {
  background: rgba(79,142,247,0.08);
  display: flex; align-items: center; justify-content: center;
}
.team-img-placeholder i { font-size: 50px; color: rgba(79,142,247,0.4); }

.team-info { width: 100%; }
.team-info h3 { font-size: 18px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.team-role {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 0.5px;
  color: var(--accent); background: rgba(6,182,212,0.08);
  border: 1px solid rgba(6,182,212,0.22); border-radius: 50px;
  padding: 3px 12px; margin-bottom: 12px;
}
.team-info p { font-size: 13px; color: var(--muted); line-height: 1.7; margin: 0; }

@media (max-width:767px) {
  .team-grid { grid-template-columns: 1fr; max-width: 420px; }
}

/* ================================================================
   TESTIMONIALS
================================================================ */
.testimonials { background: var(--bg); padding: 80px 0; position: relative; }
.testimonials-bg { display: none; }
.testimonials .swiper { padding-bottom: 50px !important; }

.testimonial-item {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--rl); padding: 36px;
  text-align: center; transition: var(--ease); margin: 8px 4px;
}
.testimonial-item:hover { border-color: rgba(79,142,247,0.4); box-shadow: var(--glow); }
.testimonial-img {
  width: 72px !important; height: 72px !important;
  border-radius: 50%; object-fit: cover;
  margin: 0 auto 16px; display: block;
  border: 2px solid rgba(79,142,247,0.4);
}
.testimonial-item h3 { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.testimonial-item h4 { font-size: 13px; color: var(--primary); font-weight: 500; margin-bottom: 14px; }
.testimonial-item .stars { color: #f59e0b; font-size: 14px; display: flex; justify-content: center; gap: 3px; margin-bottom: 18px; }
.testimonial-item p { font-size: 14px; color: var(--muted); line-height: 1.75; font-style: italic; margin: 0; }
.testimonial-item p .quote-icon-left,
.testimonial-item p .quote-icon-right { color: var(--primary); font-size: 24px; vertical-align: -5px; }
.swiper-pagination-bullet        { background: var(--border); opacity: 1; }
.swiper-pagination-bullet-active { background: var(--primary); }

/* ================================================================
   BOOK A DEMO
================================================================ */
.book-demo { background: var(--bg-section); padding: 80px 0; }
.book-demo .section-title h2 { color: #fff; }
.book-demo .section-title p  { color: var(--muted); }
.book-demo #my-cal-inline-chatbot-development { border-radius: 16px; overflow: hidden; min-height: 700px; }

/* ================================================================
   CONTACT
================================================================ */
.contact { background: var(--bg-alt); }

.info-wrap {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--rl); padding: 32px; margin-bottom: 32px;
}
.info-item { display: flex; align-items: center; gap: 16px; }
.info-item i {
  width: 50px; height: 50px;
  background: rgba(79,142,247,0.1); border: 1px solid rgba(79,142,247,0.25);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--primary); flex-shrink: 0;
}
.info-item h3 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 3px; }
.info-item p  { font-size: 14px; color: var(--muted); margin: 0; }

.php-email-form {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--rl); padding: 36px;
}
.php-email-form .form-control {
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: 12px; color: #fff; padding: 13px 17px; font-size: 14px; transition: var(--ease);
}
.php-email-form .form-control::placeholder { color: var(--muted); }
.php-email-form .form-control:focus {
  background: rgba(79,142,247,0.05); border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(79,142,247,0.12); color: #fff; outline: none;
}
.php-email-form button[type="submit"] {
  background: var(--gradient); border: none; border-radius: 12px;
  padding: 13px 40px; font-weight: 700; font-size: 15px; color: #fff;
  cursor: pointer; transition: var(--ease); box-shadow: 0 4px 20px rgba(79,142,247,0.35);
}
.php-email-form button[type="submit"]:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(79,142,247,0.55); }
.php-email-form .loading       { display:none; color:var(--muted); margin-bottom:10px; }
.php-email-form .error-message { display:none; color:#ef4444; margin-bottom:10px; }
.php-email-form .sent-message  { display:none; color:var(--green); margin-bottom:10px; }

/* ================================================================
   FOOTER
================================================================ */
.footer {
  background: #040810; border-top: 1px solid var(--border);
  padding: 40px 0; text-align: center; color: var(--text);
}
.footer .copyright { font-size: 14px; color: var(--muted); margin-bottom: 16px; }
.footer .copyright strong { color: #fff; }
.footer .social-links { display: flex; justify-content: center; gap: 12px; margin-bottom: 14px; }
.footer .social-links a {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 16px; transition: var(--ease);
}
.footer .social-links a:hover { transform: translateY(-2px); }
.footer .social-links a[title="WhatsApp"]        { color: #25d366; border-color: rgba(37,211,102,0.35); }
.footer .social-links a[title="WhatsApp"]:hover  { background: rgba(37,211,102,0.12); border-color: #25d366; color: #25d366; }
.footer .social-links a[title="Facebook"]        { color: #1877f2; border-color: rgba(24,119,242,0.35); }
.footer .social-links a[title="Facebook"]:hover  { background: rgba(24,119,242,0.12); border-color: #1877f2; color: #1877f2; }
.footer .social-links a[title="Instagram"]       { color: #e4405f; border-color: rgba(228,64,95,0.35); }
.footer .social-links a[title="Instagram"]:hover { background: rgba(228,64,95,0.12); border-color: #e4405f; color: #e4405f; }
.footer .social-links a[title="LinkedIn"]        { color: #0a66c2; border-color: rgba(10,102,194,0.35); }
.footer .social-links a[title="LinkedIn"]:hover  { background: rgba(10,102,194,0.12); border-color: #0a66c2; color: #0a66c2; }
.footer .social-links a[title="Fiverr"]          { color: #1dbf73; border-color: rgba(29,191,115,0.35); }
.footer .social-links a[title="Fiverr"]:hover    { background: rgba(29,191,115,0.12); border-color: #1dbf73; color: #1dbf73; }
.footer .credits { font-size: 12px; color: rgba(240,244,255,0.25); }
.footer .credits a { color: rgba(240,244,255,0.35); }

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width:767px) { section { padding: 60px 0; } .section-title { padding-bottom: 36px; } }

/* ================================================================
   BOOK A DEMO — Click-to-open Cal.com
================================================================ */
.cal-cta-wrap {
  display: flex; flex-direction: column; align-items: center;
  gap: 28px; padding: 60px 20px; text-align: center;
}
.cal-cta-perks {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 16px;
}
.cal-perk {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  border-radius: 50px; padding: 9px 18px;
  font-size: 14px; font-weight: 500; color: rgba(240,244,255,0.8);
}
.cal-perk i { color: var(--primary); font-size: 15px; }
.cal-open-btn {
  font-size: 17px; padding: 16px 40px;
  display: inline-flex; align-items: center; gap: 10px;
  box-shadow: 0 6px 30px rgba(79,142,247,0.45);
}
.cal-open-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 40px rgba(79,142,247,0.6); }
.cal-cta-note { font-size: 13px; color: var(--muted); margin: 0; }

/* Cal.com Modal */
.cal-modal-content {
  background: #0b1228;
  border: 1px solid rgba(79,142,247,0.25);
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.7);
}
.cal-modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 28px;
  background: linear-gradient(135deg,rgba(79,142,247,0.12),rgba(6,182,212,0.06));
  border-bottom: 1px solid rgba(79,142,247,0.18);
}
.cal-modal-title { font-size: 18px; font-weight: 800; color: #fff; margin: 0 0 4px; }
.cal-modal-sub { font-size: 13px; color: var(--muted); margin: 0; }
.cal-modal-body { position: relative; min-height: 640px; padding: 0; background: #fff; }
.cal-loading {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; background: #0b1228; font-size: 14px; color: var(--muted);
}
.cal-spinner {
  width: 40px; height: 40px; border-radius: 50%;
  border: 3px solid var(--border); border-top-color: var(--primary);
  animation: spin 0.8s linear infinite;
}

/* ================================================================
   REQUIREMENT FORM MODAL
================================================================ */

/* Modal chrome */
.req-modal-content {
  background: #0b1228;
  border: 1px solid rgba(79,142,247,0.25);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(79,142,247,0.1);
}

/* Header */
.req-modal-header {
  background: linear-gradient(135deg,rgba(79,142,247,0.12),rgba(6,182,212,0.06));
  border-bottom: 1px solid rgba(79,142,247,0.18);
  padding: 24px 28px 20px;
  align-items: flex-start;
  gap: 16px;
}
.req-modal-title-wrap { flex: 1; }
.req-modal-badge {
  display: inline-block;
  background: var(--gradient);
  color: #fff; font-size: 11px; font-weight: 800;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 14px; border-radius: 50px; margin-bottom: 10px;
}
.req-modal-title { font-size: 20px; font-weight: 800; color: #fff; margin: 0 0 6px; }
.req-modal-subtitle { font-size: 13px; color: var(--muted); margin: 0; }

/* Progress stepper */
.req-progress-wrap {
  padding: 18px 28px;
  background: rgba(0,0,0,0.2);
  border-bottom: 1px solid var(--border);
}
.req-steps-nav {
  display: flex; align-items: center; justify-content: center; gap: 0;
}
.req-step-dot {
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  cursor: default; min-width: 60px;
}
.req-step-dot span {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.06); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: var(--muted);
  transition: var(--ease);
}
.req-step-dot label {
  font-size: 10px; font-weight: 600; color: var(--muted);
  letter-spacing: 0.3px; white-space: nowrap;
  transition: var(--ease); cursor: default;
}
.req-step-dot.active span { background: var(--gradient); border-color: transparent; color: #fff; box-shadow: 0 0 16px rgba(79,142,247,0.5); }
.req-step-dot.active label { color: var(--primary); }
.req-step-dot.done span { background: rgba(16,185,129,0.2); border-color: #10b981; color: #10b981; }
.req-step-dot.done label { color: var(--green); }
.req-step-line { flex: 1; height: 2px; background: var(--border); margin: 0 6px; margin-bottom: 18px; min-width: 24px; }

/* Body */
.req-modal-body {
  padding: 24px 28px;
  background: #0b1228;
}

/* Step heading */
.req-step-heading {
  font-size: 15px; font-weight: 700; color: var(--primary);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 8px;
}
.req-step-heading i { font-size: 17px; }

/* Labels */
.req-label {
  display: block; font-size: 13px; font-weight: 600;
  color: rgba(240,244,255,0.85); margin-bottom: 7px;
}
.req-req { color: #ef4444; }
.req-hint { font-size: 12px; color: var(--muted); margin: 0 0 10px; }
.req-hint-inline { font-size: 11px; color: var(--muted); font-weight: 400; }

/* Inputs */
.req-input {
  width: 100%; background: rgba(255,255,255,0.04);
  border: 1px solid var(--border); border-radius: 10px;
  color: #fff; padding: 11px 15px; font-size: 14px;
  transition: var(--ease); font-family: inherit;
  -webkit-appearance: none; appearance: none;
}
.req-input::placeholder { color: var(--muted); }
.req-input:focus {
  outline: none;
  background: rgba(79,142,247,0.06);
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(79,142,247,0.14);
  color: #fff;
}
.req-textarea { resize: vertical; min-height: 90px; }
.req-select { cursor: pointer; }
.req-select option { background: #111a2e; color: #fff; }

/* Radio group */
.req-radio-group {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.req-radio {
  display: inline-flex; align-items: center; gap: 7px;
  cursor: pointer; padding: 7px 14px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: 50px; font-size: 13px; font-weight: 500; color: rgba(240,244,255,0.7);
  transition: var(--ease); user-select: none;
}
.req-radio input[type="radio"] { display: none; }
.req-radio:has(input:checked),
.req-radio input:checked + span { color: var(--primary); }
.req-radio:has(input:checked) {
  background: rgba(79,142,247,0.12); border-color: var(--primary);
  color: var(--primary);
}
.req-radio:hover { border-color: rgba(79,142,247,0.4); }

/* Checkbox grid */
.req-check-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 8px;
}
.req-check-grid.compact { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
.req-check {
  display: flex; align-items: center; gap: 9px;
  cursor: pointer; padding: 8px 13px;
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: 10px; font-size: 13px; font-weight: 500; color: rgba(240,244,255,0.7);
  transition: var(--ease); user-select: none;
}
.req-check input[type="checkbox"] { display: none; }
.req-check:has(input:checked) {
  background: rgba(79,142,247,0.12); border-color: var(--primary); color: var(--primary);
}
.req-check:hover { border-color: rgba(79,142,247,0.4); }
.req-check:has(input:checked)::before {
  content: '✓';
  font-size: 11px; font-weight: 800;
  color: var(--primary);
  flex-shrink: 0;
}

/* Drop zone */
.req-dropzone {
  border: 2px dashed var(--border); border-radius: 14px;
  padding: 32px 20px; text-align: center;
  cursor: pointer; transition: var(--ease);
  background: rgba(255,255,255,0.02);
}
.req-dropzone:hover, .req-dropzone.dragover {
  border-color: var(--primary);
  background: rgba(79,142,247,0.06);
}
.req-drop-icon { font-size: 36px; color: var(--primary); display: block; margin-bottom: 10px; opacity: 0.7; }
.req-dropzone p { font-size: 14px; color: var(--muted); margin: 0 0 4px; }
.req-drop-link { color: var(--primary); text-decoration: underline; cursor: pointer; }
.req-drop-types { font-size: 11px; color: rgba(240,244,255,0.3); }

/* File list */
.req-file-list { display: flex; flex-direction: column; gap: 8px; margin-top: 10px; }
.req-file-item {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: 10px; padding: 10px 14px; font-size: 13px;
}
.req-file-icon { color: var(--primary); font-size: 18px; flex-shrink: 0; }
.req-file-name { flex: 1; color: #fff; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.req-file-size { color: var(--muted); font-size: 11px; flex-shrink: 0; }
.req-file-status { flex-shrink: 0; font-size: 15px; }
.req-file-remove {
  background: none; border: none; padding: 2px 6px;
  color: var(--muted); cursor: pointer; border-radius: 6px;
  transition: var(--ease); flex-shrink: 0; font-size: 16px;
  display: flex; align-items: center;
}
.req-file-remove:hover { color: #ef4444; background: rgba(239,68,68,0.1); }

/* Upload progress */
.req-upload-progress {
  display: flex; align-items: center; gap: 12px; margin-top: 10px;
  font-size: 12px; color: var(--muted);
}
.req-progress-bar {
  flex: 1; height: 4px; background: var(--border);
  border-radius: 99px; overflow: hidden;
}
.req-progress-fill {
  height: 100%; background: var(--gradient);
  border-radius: 99px; transition: width 0.3s ease;
  width: 0%;
}

/* Workspace invite callout */
.req-invite-callout {
  display: flex; align-items: flex-start; gap: 14px;
  background: rgba(79,142,247,0.06); border: 1px solid rgba(79,142,247,0.25);
  border-radius: 14px; padding: 18px 20px;
}
.req-invite-icon { font-size: 22px; color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.req-invite-callout strong { font-size: 14px; font-weight: 700; color: #fff; display: block; margin-bottom: 5px; }
.req-invite-callout p { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.6; }

/* Success state */
.req-success {
  text-align: center; padding: 40px 20px;
}
.req-success-icon {
  font-size: 64px; color: #10b981; margin-bottom: 18px;
  animation: successPop 0.5s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes successPop { 0%{transform:scale(0);opacity:0} 100%{transform:scale(1);opacity:1} }
.req-success h4 { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.req-success p { color: var(--muted); font-size: 15px; margin-bottom: 24px; }
.req-success-btn { display: inline-flex; align-items: center; gap: 8px; }

/* Modal footer */
.req-modal-footer {
  background: rgba(0,0,0,0.25);
  border-top: 1px solid var(--border);
  padding: 16px 28px;
  display: flex; align-items: center; justify-content: space-between;
}
.req-footer-info { font-size: 12px; color: var(--muted); font-weight: 600; }

.req-btn-next {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 24px; background: var(--gradient);
  border: none; border-radius: 10px; color: #fff;
  font-size: 14px; font-weight: 700; cursor: pointer; transition: var(--ease);
  box-shadow: 0 4px 16px rgba(79,142,247,0.35);
}
.req-btn-next:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(79,142,247,0.5); }
.req-btn-next:disabled { opacity: 0.6; cursor: not-allowed; }

.req-btn-back {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 18px; background: transparent;
  border: 1px solid var(--border); border-radius: 10px; color: rgba(240,244,255,0.6);
  font-size: 14px; font-weight: 600; cursor: pointer; transition: var(--ease);
}
.req-btn-back:hover { border-color: var(--primary); color: var(--primary); }

/* Loading spinner in button */
.req-spinner {
  display: inline-block; width: 14px; height: 14px;
  border: 2px solid rgba(255,255,255,0.3); border-top-color: #fff;
  border-radius: 50%; animation: spin 0.7s linear infinite;
}

/* Toast notification */
.req-toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: #1a2540; border: 1px solid rgba(79,142,247,0.3);
  border-radius: 12px; padding: 13px 20px;
  font-size: 14px; color: #fff; z-index: 9999;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  opacity: 0; transition: all 0.35s ease; pointer-events: none;
  max-width: 90vw; white-space: nowrap;
}
.req-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.req-toast-error { border-color: rgba(239,68,68,0.4); background: #1c1020; }
.req-toast-error i { color: #ef4444; }
.req-toast i { font-size: 16px; color: var(--primary); }

/* Responsive modal */
@media (max-width:575px) {
  .req-modal-header { padding: 18px 18px 16px; }
  .req-progress-wrap { padding: 14px 18px; }
  .req-modal-body { padding: 18px 18px; }
  .req-modal-footer { padding: 14px 18px; }
  .req-step-dot label { display: none; }
  .req-check-grid { grid-template-columns: 1fr 1fr; }
  .req-check-grid.compact { grid-template-columns: 1fr 1fr; }
}

/*--------------------------------------------------------------
# Apps Section
--------------------------------------------------------------*/
.apps { background: var(--bg-alt); padding: 80px 0; }

.app-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--ease);
  box-shadow: 0 4px 32px rgba(0,0,0,0.3);
}
.app-card:hover {
  border-color: var(--border-hi);
  box-shadow: 0 8px 48px rgba(79,142,247,0.15);
  transform: translateY(-4px);
}

.app-banner-wrap { overflow: hidden; max-height: 170px; }
.app-banner { width: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.app-card:hover .app-banner { transform: scale(1.03); }

.app-card-body { padding: 20px 22px 22px; }

.app-identity {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.app-icon {
  width: 50px; height: 50px;
  border-radius: 13px;
  object-fit: cover;
  box-shadow: 0 4px 16px rgba(79,142,247,0.3);
  flex-shrink: 0;
}
.app-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: #f1f5f9;
  margin: 0 0 2px;
}
.app-tagline {
  font-size: 0.8rem;
  color: #64748b;
  margin: 0;
}
.app-coming-soon {
  margin-left: auto;
  background: linear-gradient(135deg,rgba(79,142,247,0.15),rgba(6,182,212,0.15));
  border: 1px solid rgba(79,142,247,0.3);
  color: var(--primary);
  border-radius: 20px;
  padding: 4px 11px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.app-meta {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.app-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 3px 10px;
  font-size: 0.75rem;
  color: #94a3b8;
}
.app-tag i { color: var(--accent); font-size: 0.8rem; }

.app-desc {
  color: #94a3b8;
  font-size: 0.85rem;
  line-height: 1.65;
  margin-bottom: 16px;
}

.app-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.app-link-privacy {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border: 1px solid var(--border);
  border-radius: 9px;
  color: #94a3b8;
  font-size: 0.8rem;
  font-weight: 500;
  transition: var(--ease);
}
.app-link-privacy:hover {
  border-color: var(--primary);
  color: var(--primary);
}

@media (max-width: 576px) {
  .app-card-body { padding: 20px 18px 24px; }
  .app-coming-soon { margin-left: 0; }
  .app-identity { gap: 12px; }
  .app-icon { width: 52px; height: 52px; }
  .app-name { font-size: 1.2rem; }
}

.app-link-view {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px;
  background: var(--gradient);
  border-radius: 9px;
  color: #fff;
  font-size: 0.8rem; font-weight: 600;
  text-decoration: none; transition: var(--ease);
  box-shadow: 0 4px 16px rgba(79,142,247,0.3);
}
.app-link-view:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(79,142,247,0.45); color: #fff; }

.app-beta-cta {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 10px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.03);
  border: 1px dashed rgba(255,255,255,0.12);
  border-radius: 9px;
  font-size: 0.76rem;
  color: #64748b;
  text-decoration: none;
  transition: var(--ease);
}
.app-beta-cta i { color: var(--accent); font-size: 0.82rem; flex-shrink: 0; }
.app-beta-cta strong { color: #94a3b8; font-weight: 600; }
.app-beta-cta:hover {
  border-color: rgba(6,182,212,0.35);
  background: rgba(6,182,212,0.05);
  color: #94a3b8;
}
