/* ═══════════════════════════════════════════
   NOURZA — style.css
   Font: Inter Display
   Theme: Black · White · Purple-Blue Gradient
═══════════════════════════════════════════ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --p: #8B5CF6;
  --b: #4F9EF8;
  --grad: linear-gradient(135deg, #8B5CF6 0%, #4F9EF8 100%);
  --bg:   #06060a;
  --bg2:  #0c0c12;
  --card: #0f0f18;
  --cb:   rgba(139,92,246,0.13);
  --bdr:  rgba(255,255,255,0.07);
  --txt:  #e0e0ee;
  --m:    #6a6a85;
  --m2:   #9898b0;
  --r:    14px;
  --tr:   0.3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--txt);
  font-family: 'Inter', sans-serif;
  font-optical-sizing: auto;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { background: none; border: none; cursor: pointer; font-family: inherit; }
i { font-style: normal; }
address { font-style: normal; }

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--p); border-radius: 2px; }

/* Gradient text */
.g {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 26px; border-radius: 50px;
  background: var(--grad); color: #fff;
  font-size: 14px; font-weight: 600; letter-spacing: -0.01em;
  transition: var(--tr); white-space: nowrap;
  position: relative; overflow: hidden; border: none;
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.1); opacity: 0; transition: opacity .2s;
}
.btn-primary:hover::after { opacity: 1; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(139,92,246,.45); }
.btn-primary.btn-lg { padding: 14px 34px; font-size: 15px; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 26px; border-radius: 50px;
  background: transparent; color: var(--txt);
  font-size: 14px; font-weight: 600;
  border: 1px solid var(--bdr); transition: var(--tr); white-space: nowrap;
}
.btn-outline:hover {
  border-color: rgba(139,92,246,.5); color: #fff;
  transform: translateY(-2px); background: rgba(139,92,246,.07);
}
.btn-outline.btn-lg { padding: 14px 34px; font-size: 15px; }

.btn-wa {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 18px; border-radius: 50px;
  background: rgba(37,211,102,.1); color: #25D366;
  font-size: 13px; font-weight: 600;
  border: 1px solid rgba(37,211,102,.22);
  transition: var(--tr); white-space: nowrap;
}
.btn-wa svg { width: 15px; height: 15px; flex-shrink: 0; min-width: 15px; }
.btn-wa:hover { background: rgba(37,211,102,.2); transform: translateY(-1px); }

/* ── SECTION COMMON ── */
section { padding: 110px 48px; }

.sec-head {
  text-align: center; max-width: 700px; margin: 0 auto 72px;
}
.stag {
  display: inline-block; font-size: 11px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--p); padding: 5px 16px;
  border: 1px solid rgba(139,92,246,.3); border-radius: 50px;
  background: rgba(139,92,246,.07); margin-bottom: 18px;
}
.sec-head h2 {
  font-size: clamp(28px, 4vw, 46px); font-weight: 800;
  line-height: 1.15; color: #fff; margin-bottom: 18px;
  letter-spacing: -0.03em;
}
.ssub { font-size: 16px; color: var(--m2); line-height: 1.72; font-weight: 400; }

/* Reveal animation */
[data-reveal] {
  opacity: 0; transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

/* ════════════════════════════════
   HEADER
════════════════════════════════ */
#header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; padding: 0 40px;
  background: rgba(6,6,10,.75);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--bdr);
  transition: background var(--tr);
}
#header.scrolled .header-inner { background: rgba(6,6,10,.97); }

.nav-logo img { height: 36px; width: auto; object-fit: contain; display: block; }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 13px; font-weight: 400; color: var(--m2);
  letter-spacing: -.01em; transition: color .2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--grad); transition: width .3s;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }

.header-ctas { display: flex; align-items: center; gap: 10px; }

.burger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.burger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--txt); transition: var(--tr); transform-origin: center;
}
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px,4.5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px,-4.5px); }

.mobile-nav {
  position: fixed; top: 64px; left: 0; right: 0;
  background: rgba(6,6,10,.98); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--bdr);
  display: flex; flex-direction: column; padding: 20px 28px 28px; gap: 4px;
  z-index: 999; transform: translateY(-110%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.mobile-nav.open { transform: translateY(0); }
.mob-link {
  font-size: 16px; color: var(--m2); padding: 12px 0;
  border-bottom: 1px solid var(--bdr); transition: color .2s;
}
.mob-link:hover { color: #fff; }
.mob-ctas { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.mob-ctas .btn-primary, .mob-ctas .btn-wa { justify-content: center; }

/* ════════════════════════════════
   HERO
════════════════════════════════ */
#hero {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 0; overflow: hidden; position: relative;
}

.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(90px); animation: orbf 9s ease-in-out infinite;
}
.orb1 {
  width: 680px; height: 680px;
  background: radial-gradient(circle, rgba(139,92,246,.22) 0%, transparent 70%);
  top: -200px; left: -150px;
}
.orb2 {
  width: 580px; height: 580px;
  background: radial-gradient(circle, rgba(79,158,248,.18) 0%, transparent 70%);
  bottom: -150px; right: -100px;
  animation-delay: -4.5s; animation-direction: reverse;
}
@keyframes orbf {
  0%,100% { transform: scale(1) translate(0,0); }
  50% { transform: scale(1.07) translate(20px,-20px); }
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(139,92,246,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139,92,246,.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 78% 75% at 50% 50%, black 5%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 78% 75% at 50% 50%, black 5%, transparent 100%);
}

/* Hero ticker */
.hero-ticker {
  position: absolute; top: 64px; left: 0; right: 0; z-index: 2;
  overflow: hidden;
  border-bottom: 1px solid var(--bdr);
  border-top: 1px solid var(--bdr);
  background: rgba(139,92,246,.04); padding: 9px 0;
}
.ticker-inner {
  display: flex; align-items: center; gap: 44px;
  width: max-content; animation: tkL 28s linear infinite;
}
.ticker-inner span {
  font-size: 11px; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: var(--m); white-space: nowrap;
}
.ticker-inner i { color: var(--p); font-size: 7px; }

@keyframes tkL { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes tkR { from { transform: translateX(-50%); } to { transform: translateX(0); } }

/* Hero content */
.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 24px;
  max-width: 860px; margin: 0 auto;
}
.hero-badge {
  display: inline-block; font-size: 12px; font-weight: 500;
  letter-spacing: .05em; color: var(--m2); margin-bottom: 28px;
  padding: 7px 20px; border: 1px solid var(--bdr); border-radius: 50px;
  background: rgba(255,255,255,.03);
  animation: fu .7s ease both;
}
#hero h1 {
  font-size: clamp(32px, 4.5vw, 64px); font-weight: 800; line-height: 1.1;
  color: #fff; margin-bottom: 26px; letter-spacing: -0.04em;
  animation: fu .7s ease .1s both;
  margin-top: 90px;
}
.hero-sub {
  font-size: clamp(15px, 1.7vw, 17px); color: var(--m2); line-height: 1.72;
  max-width: 580px; margin: 0 auto 40px; font-weight: 300;
  animation: fu .7s ease .2s both;
}
.hero-btns {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; flex-wrap: wrap; margin-bottom: 56px;
  animation: fu .7s ease .3s both;
}

/* Stats row */
.hero-stats {
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--bdr); border-radius: var(--r);
  background: rgba(255,255,255,.02); backdrop-filter: blur(10px);
  padding: 26px 0; animation: fu .7s ease .4s both; flex-wrap: wrap;
}
.stat {
  display: flex; flex-direction: column; align-items: center;
  padding: 0 36px; min-width: 110px;
}
.stat-top { display: flex; align-items: baseline; gap: 2px; margin-bottom: 6px; }
.stat-n {
  font-size: clamp(26px, 3vw, 38px); font-weight: 800;
  color: #fff; letter-spacing: -0.04em; line-height: 1;
}
.stat-sym { font-size: clamp(18px, 2vw, 26px); font-weight: 700; line-height: 1; }
.stat-l { font-size: 11px; color: var(--m); text-transform: uppercase; letter-spacing: .08em; font-weight: 500; }
.stat-sep { width: 1px; height: 40px; background: var(--bdr); flex-shrink: 0; }

@keyframes fu {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll cue */
.scroll-cue {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  z-index: 2; animation: fu 1s ease 1.2s both;
}
.scl {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--p), transparent);
  animation: sp 2s ease-in-out infinite;
}
@keyframes sp { 0%,100% { opacity: .3; } 50% { opacity: 1; } }
.scroll-cue span { font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--m); }

/* ════════════════════════════════
   LOGO SLIDER
════════════════════════════════ */
#logos {
  padding: 56px 0;
  border-top: 1px solid var(--bdr); border-bottom: 1px solid var(--bdr);
  background: var(--bg2); overflow: hidden;
}
.logos-lbl {
  text-align: center; font-size: 11px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase; color: var(--m); margin-bottom: 32px;
}
.logos-outer { overflow: hidden; position: relative; }
.logos-outer::before, .logos-outer::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2; pointer-events: none;
}
.logos-outer::before { left: 0; background: linear-gradient(to right, var(--bg2), transparent); }
.logos-outer::after { right: 0; background: linear-gradient(to left, var(--bg2), transparent); }
.logos-track {
  display: flex; align-items: center; gap: 60px;
  width: max-content; animation: tkL 32s linear infinite;
}
.logo-s {
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  opacity: .4; filter: grayscale(1) brightness(1.6); transition: opacity .3s, filter .3s;
}
.logo-s:hover { opacity: .9; filter: grayscale(0) brightness(1); }
.logo-s img {
  height: 32px;
  width: 120px;
  object-fit: contain;
  display: block;
}

/* ════════════════════════════════
   ABOUT
════════════════════════════════ */
#about { background: var(--bg); border-top: 1px solid var(--bdr); }
.about-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; max-width: 1160px; margin: 0 auto; align-items: start;
}
.about-hstack { margin-bottom: 28px; }
.aw {
  font-size: clamp(38px, 5.5vw, 72px); font-weight: 800; line-height: 1.08;
  color: #fff; letter-spacing: -0.04em;
  opacity: 0; transform: translateX(-36px);
  transition: opacity .55s ease, transform .55s ease;
}
.aw.revealed { opacity: 1; transform: translateX(0); }
.aw:nth-child(2) { transition-delay: .14s; }
.aw:nth-child(3) { transition-delay: .28s; }
.about-p { font-size: 15px; color: var(--m2); line-height: 1.82; margin-bottom: 32px; font-weight: 300; }
.about-steps { margin-top: 40px; display: flex; flex-direction: column; gap: 26px; }
.astep { display: flex; gap: 18px; align-items: flex-start; }
.anum { font-size: 13px; font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.astep strong { display: block; font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 5px; letter-spacing: -0.01em; }
.astep p { font-size: 13px; color: var(--m2); line-height: 1.7; }

.about-right { position: relative; }
.about-mosaic { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 200px 160px; gap: 10px; }
.mo { border-radius: var(--r); overflow: hidden; }
.mo-a { grid-column: 1; grid-row: 1; }
.mo-b { grid-column: 2; grid-row: 1; }
.mo-c { grid-column: 1 / 3; grid-row: 2; }
.mo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 14px;
  border: 1px solid rgba(139,92,246,0.13);
}

/* ── BENTO GRID ── */
.bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.bento-card {
  background: #0e0e18;
  border: 1px solid rgba(139,92,246,.15);
  border-radius: 18px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, transform .3s;
}
.bento-card:hover {
  border-color: rgba(139,92,246,.4);
  transform: translateY(-3px);
}
.bento-large {
  grid-column: 1 / 3;
  min-height: 240px;
}
.bento-small {
  min-height: 200px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bento-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #a3e635;
  background: rgba(163,230,53,.1);
  border: 1px solid rgba(163,230,53,.25);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.bento-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.bento-card p {
  font-size: 12px;
  color: #9898b0;
  line-height: 1.65;
  max-width: 260px;
}

/* UI Mockup */
.bento-ui-mock {
  position: absolute;
  right: -10px;
  top: 20px;
  width: 200px;
  height: 150px;
  background: #161624;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  overflow: hidden;
}
.mock-topbar {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 10px;
  background: #1a1a2e;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.mock-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.mock-dot.red    { background: #ff5f57; }
.mock-dot.yellow { background: #febc2e; }
.mock-dot.green  { background: #28c840; }
.mock-body {
  display: flex;
  height: calc(100% - 28px);
}
.mock-sidebar {
  width: 56px;
  background: #13131f;
  border-right: 1px solid rgba(255,255,255,.05);
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.mock-content {
  flex: 1;
  padding: 10px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.mock-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8B5CF6, #4F9EF8);
  flex-shrink: 0;
}
.mock-lines {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 4px;
}
.mock-line {
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,.08);
  animation: shimmer 2.5s ease-in-out infinite;
}
.mock-line.w100 { width: 100%; }
.mock-line.w80  { width: 80%;  animation-delay: .2s; }
.mock-line.w90  { width: 90%;  animation-delay: .4s; }
.mock-line.w60  { width: 60%;  animation-delay: .6s; }
.mock-line.w70  { width: 70%;  animation-delay: .3s; }
.mock-line.w50  { width: 50%;  animation-delay: .5s; }
.mock-line.w40  { width: 40%;  animation-delay: .7s; }

@keyframes shimmer {
  0%,100% { opacity: .5; }
  50%      { opacity: 1; background: rgba(139,92,246,.3); }
}

/* Orbit card */
.orbit-wrap {
  position: relative;
  width: 110px;
  height: 110px;
  margin: 0 auto 14px;
}
.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(139,92,246,.3);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.orbit-ring-1 {
  width: 80px;
  height: 80px;
  animation: bentospin 6s linear infinite;
}
.orbit-ring-2 {
  width: 110px;
  height: 110px;
  animation: bentospin 10s linear infinite reverse;
  border-color: rgba(79,158,248,.25);
}
.orbit-dot {
  position: absolute;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8B5CF6, #4F9EF8);
  top: -3.5px; left: 50%;
  transform: translateX(-50%);
}
.orbit-core {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 42px; height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(139,92,246,.25), rgba(79,158,248,.2));
  border: 1px solid rgba(139,92,246,.4);
  display: flex; align-items: center; justify-content: center;
  color: #a78bfa;
}
@keyframes bentospin {
  from { transform: translate(-50%,-50%) rotate(0deg); }
  to   { transform: translate(-50%,-50%) rotate(360deg); }
}

/* Support card */
.bento-support {
  justify-content: flex-end;
}
.support-bg-text {
  position: absolute;
  top: -10px; right: -8px;
  font-size: 80px;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: rgba(255,255,255,.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.support-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #a3e635;
  color: #0a0a10;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 50px;
  width: fit-content;
  margin-bottom: 16px;
  animation: pillPulse 2.5s ease-in-out infinite;
}
@keyframes pillPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(163,230,53,.4); }
  50%      { box-shadow: 0 0 0 10px rgba(163,230,53,0); }
}

/* Responsive */
@media (max-width: 640px) {
  .bento-large { grid-column: 1 / 3; }
  .bento-grid  { grid-template-columns: 1fr; }
  .bento-large { grid-column: 1; }
}

/* ════════════════════════════════
   SERVICES
════════════════════════════════ */
#services { background: var(--bg2); border-top: 1px solid var(--bdr); }
.svc-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 14px; max-width: 1200px; margin: 0 auto;
}
.svc-card {
  background: var(--card); border: 1px solid var(--cb);
  border-radius: var(--r); padding: 26px 22px;
  transition: var(--tr); position: relative; overflow: hidden;
}
.svc-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(139,92,246,.06), transparent);
  opacity: 0; transition: opacity .3s;
}
.svc-card:hover {
  border-color: rgba(139,92,246,.4); transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(139,92,246,.12);
}
.svc-card:hover::before { opacity: 1; }
.svc-ico {
  width: 42px; height: 42px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; color: var(--p);
  border: 1px solid rgba(139,92,246,.22); border-radius: 10px;
  background: rgba(139,92,246,.08);
}
.svc-ico svg { width: 19px; height: 19px; }
.svc-card h3 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 9px; letter-spacing: -0.02em; }
.svc-card p { font-size: 13px; color: var(--m2); line-height: 1.65; }
.svc-cta { text-align: center; margin-top: 52px; }

/* ════════════════════════════════
   PORTFOLIO — Limitless 3-row with tilt
════════════════════════════════ */
#portfolio {
  background: var(--bg); border-top: 1px solid var(--bdr);
  padding-left: 0; padding-right: 0;
}
#portfolio .sec-head { padding: 0 48px; }

.port-rows { display: flex; flex-direction: column; gap: 18px; margin-bottom: 56px; }

.port-row { overflow: hidden; position: relative; padding: 20px 0; }
.port-row::before, .port-row::after {
  content: ''; position: absolute; top: 0; bottom: 0;
  width: 120px; z-index: 2; pointer-events: none;
}
.port-row::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.port-row::after { right: 0; background: linear-gradient(to left, var(--bg), transparent); }

.port-track { display: flex; gap: 20px; width: max-content; }
.pleft { animation: tkL 38s linear infinite; }
.pright { animation: tkR 38s linear infinite; }

/* Portfolio card with tilt effect */
.pc { flex-shrink: 0; perspective: 1000px; }
.pt {
  width: 340px; height: 210px; border-radius: var(--r);
  border: 1px solid var(--cb); position: relative; overflow: hidden;
  transition: transform .15s ease, box-shadow .3s ease, border-color .3s ease;
  transform-style: preserve-3d;
  will-change: transform;
  cursor: default;
}
.pt-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block;
  border-radius: var(--r);
}
/* Gradient overlay when no image loaded */
.pt::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(139,92,246,.12) 0%, rgba(79,158,248,.08) 100%);
  pointer-events: none;
}
/* Shine effect */
.pt::after {
  content: ''; position: absolute; inset: 0; z-index: 2;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.06) 0%, transparent 60%);
  pointer-events: none; opacity: 0; transition: opacity .3s;
}
.pt:hover { border-color: rgba(139,92,246,.5); box-shadow: 0 20px 60px rgba(139,92,246,.2); }
.pt:hover::after { opacity: 1; }

/* Tilt corner glow */
.pt-glow {
  position: absolute; top: -40px; right: -40px; z-index: 1;
  width: 100px; height: 100px; border-radius: 50%;
  background: radial-gradient(circle, rgba(139,92,246,.3), transparent);
  filter: blur(20px); pointer-events: none;
}

.port-cta { text-align: center; padding: 0 48px; }

/* ════════════════════════════════
   WHY CHOOSE US
════════════════════════════════ */
#why { background: var(--bg2); border-top: 1px solid var(--bdr); }
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px; max-width: 1200px; margin: 0 auto 56px;
}
.wc {
  background: var(--card); border: 1px solid var(--cb);
  border-radius: var(--r); padding: 30px 26px; transition: var(--tr);
  position: relative; overflow: hidden;
}
.wc::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: var(--grad); opacity: 0; transition: opacity .3s;
}
.wc:hover { border-color: rgba(139,92,246,.38); transform: translateY(-3px); }
.wc:hover::before { opacity: 1; }
.wc-wide { grid-column: span 2; }
.wico {
  width: 46px; height: 46px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; color: var(--p);
  border: 1px solid rgba(139,92,246,.22); border-radius: 12px;
  background: rgba(139,92,246,.08);
}
.wico svg { width: 21px; height: 21px; stroke-linecap: round; stroke-linejoin: round; }
.wbig { font-size: 54px; font-weight: 800; line-height: 1; margin-bottom: 12px; letter-spacing: -0.04em; }
.wc h3 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 10px; letter-spacing: -0.02em; }
.wc p { font-size: 13px; color: var(--m2); line-height: 1.72; }
.wpills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.wpills span {
  font-size: 11px; font-weight: 500; padding: 4px 12px; border-radius: 50px;
  border: 1px solid rgba(139,92,246,.28); color: var(--p); background: rgba(139,92,246,.06);
}

.why-ticker-outer {
  overflow: hidden; padding: 18px 0;
  border-top: 1px solid var(--bdr); border-bottom: 1px solid var(--bdr); position: relative;
}
.why-ticker-outer::before, .why-ticker-outer::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.why-ticker-outer::before { left: 0; background: linear-gradient(to right, var(--bg2), transparent); }
.why-ticker-outer::after { right: 0; background: linear-gradient(to left, var(--bg2), transparent); }
.why-ticker {
  display: flex; align-items: center; gap: 40px;
  width: max-content; animation: tkL 22s linear infinite;
}
.why-ticker span { font-size: 11px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: var(--m); white-space: nowrap; }
.why-ticker i { color: var(--p); font-size: 7px; }

/* ════════════════════════════════
   TESTIMONIALS
════════════════════════════════ */
#testimonials { background: var(--bg); border-top: 1px solid var(--bdr); }
.testi-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 14px; max-width: 1100px; margin: 0 auto;
}
.tc {
  background: var(--card); border: 1px solid var(--cb);
  border-radius: var(--r); padding: 34px 30px;
  position: relative; overflow: hidden; transition: var(--tr);
}
.tc::after {
  content: '"'; position: absolute; top: 16px; right: 24px;
  font-size: 80px; line-height: 1; font-family: Georgia, serif;
  color: rgba(139,92,246,.09); pointer-events: none;
}
.tc:hover { border-color: rgba(139,92,246,.35); transform: translateY(-3px); }
.tc-feat {
  border-color: rgba(139,92,246,.28);
  background: linear-gradient(135deg, rgba(139,92,246,.06), var(--card));
}
.tstars { color: #f59e0b; font-size: 13px; letter-spacing: 2px; margin-bottom: 18px; }
.tc > p {
  font-size: 15px; color: var(--txt); line-height: 1.78;
  margin-bottom: 26px; font-weight: 300; font-style: italic;
}
.ta { display: flex; align-items: center; gap: 13px; }
.tav {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--grad); display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: #fff; flex-shrink: 0;
}
.ta strong { display: block; font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 2px; }
.ta span { font-size: 12px; color: var(--m); }

/* ════════════════════════════════
   FAQ
════════════════════════════════ */
#faq { background: var(--bg2); border-top: 1px solid var(--bdr); }
.faq-wrap {
  display: grid; grid-template-columns: 360px 1fr;
  gap: 80px; max-width: 1160px; margin: 0 auto; align-items: start;
}
.faq-left h2 {
  font-size: clamp(26px, 3.5vw, 42px); font-weight: 800; color: #fff;
  line-height: 1.18; margin: 14px 0 16px; letter-spacing: -0.03em;
}
.faq-left p { font-size: 14px; color: var(--m2); line-height: 1.72; margin-bottom: 28px; }
.faq-list { display: flex; flex-direction: column; }
.fi { border-bottom: 1px solid var(--bdr); }
.fq {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; text-align: left; font-size: 14px; font-weight: 500;
  color: var(--txt); gap: 16px; transition: color .2s; letter-spacing: -0.01em;
}
.fq:hover { color: #fff; }
.fico {
  font-size: 20px; font-weight: 300; color: var(--p);
  flex-shrink: 0; transition: transform .3s; width: 22px; text-align: center; line-height: 1;
}
.fi.open .fico { transform: rotate(45deg); }
.fa { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.4,0,.2,1); }
.fa p { font-size: 13px; color: var(--m2); line-height: 1.75; padding-bottom: 20px; }
.fi.open .fa { max-height: 400px; }

/* ════════════════════════════════
   CTA BANNER
════════════════════════════════ */
#cta-section { background: var(--bg); border-top: 1px solid var(--bdr); padding: 110px 48px; }
.cta-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.cta-inner h2 {
  font-size: clamp(30px, 4.5vw, 56px); font-weight: 800; color: #fff;
  line-height: 1.13; margin: 14px 0 18px; letter-spacing: -0.04em;
}
.cta-inner > p { font-size: 16px; color: var(--m2); line-height: 1.72; margin-bottom: 36px; }
.cta-btns { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
#footer { background: var(--bg2); border-top: 1px solid var(--bdr); padding: 76px 48px 36px; }
.foot-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px; max-width: 1160px; margin: 0 auto 56px;
}
.foot-logo { height: 34px; margin-bottom: 16px; }
.foot-brand > p { font-size: 13px; color: var(--m); line-height: 1.72; max-width: 240px; margin-bottom: 12px; }
.foot-address {
  display: flex; align-items: flex-start; gap: 7px;
  font-size: 12px; color: var(--m); line-height: 1.5; margin-bottom: 12px; max-width: 240px;
}
.foot-address svg { flex-shrink: 0; margin-top: 2px; color: var(--p); }
.foot-phone { font-size: 13px; color: var(--p); display: block; margin-bottom: 18px; }
.foot-phone:hover { text-decoration: underline; }
.foot-socials { display: flex; gap: 10px; }
.foot-socials a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--bdr); display: flex; align-items: center; justify-content: center;
  color: var(--m2); transition: var(--tr);
}
.foot-socials a:hover { border-color: var(--p); color: var(--p); background: rgba(139,92,246,.08); }
.foot-col { display: flex; flex-direction: column; gap: 11px; }
.foot-col h4 {
  font-size: 11px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: #fff; margin-bottom: 4px;
}
.foot-col a { font-size: 13px; color: var(--m); transition: color .2s; }
.foot-col a:hover { color: #fff; }
.floc, .fserv { font-size: 12px; color: var(--m); }
.foot-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 28px; border-top: 1px solid var(--bdr);
  max-width: 1160px; margin: 0 auto; flex-wrap: wrap; gap: 10px;
}
.foot-bottom p { font-size: 12px; color: var(--m); }

/* ════════════════════════════════
   FLOATING WHATSAPP
════════════════════════════════ */
.float-wa {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,.4); transition: var(--tr);
  animation: wap 3s ease-in-out infinite;
}
.float-wa svg { width: 28px; height: 28px; fill: #fff; }
.float-wa:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,.65); }
@keyframes wap {
  0%,100% { box-shadow: 0 4px 24px rgba(37,211,102,.4); }
  50% { box-shadow: 0 4px 36px rgba(37,211,102,.7), 0 0 0 8px rgba(37,211,102,.07); }
}

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
@media (max-width: 1100px) {
  .svc-grid { grid-template-columns: repeat(3, 1fr); }
  .foot-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 960px) {
  section { padding: 80px 28px; }
  #portfolio { padding-left: 0; padding-right: 0; }
  #portfolio .sec-head { padding: 0 28px; }
  .port-cta { padding: 0 28px; }
  #cta-section { padding: 80px 28px; }
  #footer { padding: 64px 28px 32px; }
  .nav-links, .header-ctas { display: none; }
  .burger { display: flex; }
  .header-inner { padding: 0 24px; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .about-wrap { grid-template-columns: 1fr; gap: 48px; }
  .about-right { display: none; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .wc-wide { grid-column: 1 / -1; }
  .testi-grid { grid-template-columns: 1fr; }
  .faq-wrap { grid-template-columns: 1fr; gap: 40px; }
  .foot-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  section { padding: 64px 20px; }
  #portfolio .sec-head { padding: 0 20px; }
  .port-cta { padding: 0 20px; }
  #cta-section { padding: 80px 20px; }
  #footer { padding: 56px 20px 28px; }
  .header-inner { padding: 0 20px; }
  .svc-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr; gap: 32px; }
  .foot-bottom { flex-direction: column; text-align: center; }
  .hero-stats { flex-direction: column; gap: 20px; padding: 24px; }
  .stat-sep { width: 56px; height: 1px; }
  .cta-btns { flex-direction: column; align-items: stretch; }
  .cta-btns a { justify-content: center; }
  .pt { width: 270px; height: 170px; }
}
